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.
+ *
+ * + * 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:
+ * + *+ * wherearm_matrix_instance_f32 S = {nRows, nColumns, pData};
+ *arm_matrix_instance_q31 S = {nRows, nColumns, pData};
+ *arm_matrix_instance_q15 S = {nRows, nColumns, pData};
+ *
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_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/Middlewares/ST/ARM/DSP/Lib/libarm_cortexM4lf_math.a b/Middlewares/ST/ARM/DSP/Lib/libarm_cortexM4lf_math.a new file mode 100644 index 0000000..66efc87 Binary files /dev/null and b/Middlewares/ST/ARM/DSP/Lib/libarm_cortexM4lf_math.a differ diff --git a/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h b/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h new file mode 100644 index 0000000..242352c --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h @@ -0,0 +1,179 @@ +/** + ****************************************************************************** + * @file usbd_cdc.h + * @author MCD Application Team + * @brief header file for the usbd_cdc.c file. + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __USB_CDC_H +#define __USB_CDC_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_ioreq.h" + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + +/** @defgroup usbd_cdc + * @brief This file is the Header file for usbd_cdc.c + * @{ + */ + + +/** @defgroup usbd_cdc_Exported_Defines + * @{ + */ +#ifndef CDC_IN_EP +#define CDC_IN_EP 0x81U /* EP1 for data IN */ +#endif /* CDC_IN_EP */ +#ifndef CDC_OUT_EP +#define CDC_OUT_EP 0x01U /* EP1 for data OUT */ +#endif /* CDC_OUT_EP */ +#ifndef CDC_CMD_EP +#define CDC_CMD_EP 0x82U /* EP2 for CDC commands */ +#endif /* CDC_CMD_EP */ + +#ifndef CDC_HS_BINTERVAL +#define CDC_HS_BINTERVAL 0x10U +#endif /* CDC_HS_BINTERVAL */ + +#ifndef CDC_FS_BINTERVAL +#define CDC_FS_BINTERVAL 0x10U +#endif /* CDC_FS_BINTERVAL */ + +/* CDC Endpoints parameters: you can fine tune these values depending on the needed baudrates and performance. */ +#define CDC_DATA_HS_MAX_PACKET_SIZE 512U /* Endpoint IN & OUT Packet size */ +#define CDC_DATA_FS_MAX_PACKET_SIZE 64U /* Endpoint IN & OUT Packet size */ +#define CDC_CMD_PACKET_SIZE 8U /* Control Endpoint Packet size */ + +#define USB_CDC_CONFIG_DESC_SIZ 67U +#define CDC_DATA_HS_IN_PACKET_SIZE CDC_DATA_HS_MAX_PACKET_SIZE +#define CDC_DATA_HS_OUT_PACKET_SIZE CDC_DATA_HS_MAX_PACKET_SIZE + +#define CDC_DATA_FS_IN_PACKET_SIZE CDC_DATA_FS_MAX_PACKET_SIZE +#define CDC_DATA_FS_OUT_PACKET_SIZE CDC_DATA_FS_MAX_PACKET_SIZE + +#define CDC_REQ_MAX_DATA_SIZE 0x7U +/*---------------------------------------------------------------------*/ +/* CDC definitions */ +/*---------------------------------------------------------------------*/ +#define CDC_SEND_ENCAPSULATED_COMMAND 0x00U +#define CDC_GET_ENCAPSULATED_RESPONSE 0x01U +#define CDC_SET_COMM_FEATURE 0x02U +#define CDC_GET_COMM_FEATURE 0x03U +#define CDC_CLEAR_COMM_FEATURE 0x04U +#define CDC_SET_LINE_CODING 0x20U +#define CDC_GET_LINE_CODING 0x21U +#define CDC_SET_CONTROL_LINE_STATE 0x22U +#define CDC_SEND_BREAK 0x23U + +/** + * @} + */ + + +/** @defgroup USBD_CORE_Exported_TypesDefinitions + * @{ + */ + +/** + * @} + */ +typedef struct +{ + uint32_t bitrate; + uint8_t format; + uint8_t paritytype; + uint8_t datatype; +} USBD_CDC_LineCodingTypeDef; + +typedef struct _USBD_CDC_Itf +{ + int8_t (* Init)(void); + int8_t (* DeInit)(void); + int8_t (* Control)(uint8_t cmd, uint8_t *pbuf, uint16_t length); + int8_t (* Receive)(uint8_t *Buf, uint32_t *Len); + int8_t (* TransmitCplt)(uint8_t *Buf, uint32_t *Len, uint8_t epnum); +} USBD_CDC_ItfTypeDef; + + +typedef struct +{ + uint32_t data[CDC_DATA_HS_MAX_PACKET_SIZE / 4U]; /* Force 32-bit alignment */ + uint8_t CmdOpCode; + uint8_t CmdLength; + uint8_t *RxBuffer; + uint8_t *TxBuffer; + uint32_t RxLength; + uint32_t TxLength; + + __IO uint32_t TxState; + __IO uint32_t RxState; +} USBD_CDC_HandleTypeDef; + + + +/** @defgroup USBD_CORE_Exported_Macros + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_CORE_Exported_Variables + * @{ + */ + +extern USBD_ClassTypeDef USBD_CDC; +#define USBD_CDC_CLASS &USBD_CDC +/** + * @} + */ + +/** @defgroup USB_CORE_Exported_Functions + * @{ + */ +uint8_t USBD_CDC_RegisterInterface(USBD_HandleTypeDef *pdev, + USBD_CDC_ItfTypeDef *fops); + +uint8_t USBD_CDC_SetTxBuffer(USBD_HandleTypeDef *pdev, uint8_t *pbuff, + uint32_t length); + +uint8_t USBD_CDC_SetRxBuffer(USBD_HandleTypeDef *pdev, uint8_t *pbuff); +uint8_t USBD_CDC_ReceivePacket(USBD_HandleTypeDef *pdev); +uint8_t USBD_CDC_TransmitPacket(USBD_HandleTypeDef *pdev); +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __USB_CDC_H */ +/** + * @} + */ + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c b/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c new file mode 100644 index 0000000..e25cdfa --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c @@ -0,0 +1,875 @@ +/** + ****************************************************************************** + * @file usbd_cdc.c + * @author MCD Application Team + * @brief This file provides the high layer firmware functions to manage the + * following functionalities of the USB CDC Class: + * - Initialization and Configuration of high and low layer + * - Enumeration as CDC Device (and enumeration for each implemented memory interface) + * - OUT/IN data transfer + * - Command IN transfer (class requests management) + * - Error management + * + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + * @verbatim + * + * =================================================================== + * CDC Class Driver Description + * =================================================================== + * This driver manages the "Universal Serial Bus Class Definitions for Communications Devices + * Revision 1.2 November 16, 2007" and the sub-protocol specification of "Universal Serial Bus + * Communications Class Subclass Specification for PSTN Devices Revision 1.2 February 9, 2007" + * This driver implements the following aspects of the specification: + * - Device descriptor management + * - Configuration descriptor management + * - Enumeration as CDC device with 2 data endpoints (IN and OUT) and 1 command endpoint (IN) + * - Requests management (as described in section 6.2 in specification) + * - Abstract Control Model compliant + * - Union Functional collection (using 1 IN endpoint for control) + * - Data interface class + * + * These aspects may be enriched or modified for a specific user application. + * + * This driver doesn't implement the following aspects of the specification + * (but it is possible to manage these features with some modifications on this driver): + * - Any class-specific aspect relative to communication classes should be managed by user application. + * - All communication classes other than PSTN are not managed + * + * @endverbatim + * + ****************************************************************************** + */ + +/* BSPDependencies +- "stm32xxxxx_{eval}{discovery}{nucleo_144}.c" +- "stm32xxxxx_{eval}{discovery}_io.c" +EndBSPDependencies */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_cdc.h" +#include "usbd_ctlreq.h" + + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + + +/** @defgroup USBD_CDC + * @brief usbd core module + * @{ + */ + +/** @defgroup USBD_CDC_Private_TypesDefinitions + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_CDC_Private_Defines + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_CDC_Private_Macros + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_CDC_Private_FunctionPrototypes + * @{ + */ + +static uint8_t USBD_CDC_Init(USBD_HandleTypeDef *pdev, uint8_t cfgidx); +static uint8_t USBD_CDC_DeInit(USBD_HandleTypeDef *pdev, uint8_t cfgidx); +static uint8_t USBD_CDC_Setup(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static uint8_t USBD_CDC_DataIn(USBD_HandleTypeDef *pdev, uint8_t epnum); +static uint8_t USBD_CDC_DataOut(USBD_HandleTypeDef *pdev, uint8_t epnum); +static uint8_t USBD_CDC_EP0_RxReady(USBD_HandleTypeDef *pdev); +#ifndef USE_USBD_COMPOSITE +static uint8_t *USBD_CDC_GetFSCfgDesc(uint16_t *length); +static uint8_t *USBD_CDC_GetHSCfgDesc(uint16_t *length); +static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc(uint16_t *length); +static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc(uint16_t *length); +uint8_t *USBD_CDC_GetDeviceQualifierDescriptor(uint16_t *length); +#endif /* USE_USBD_COMPOSITE */ + +#ifndef USE_USBD_COMPOSITE +/* USB Standard Device Descriptor */ +__ALIGN_BEGIN static uint8_t USBD_CDC_DeviceQualifierDesc[USB_LEN_DEV_QUALIFIER_DESC] __ALIGN_END = +{ + USB_LEN_DEV_QUALIFIER_DESC, + USB_DESC_TYPE_DEVICE_QUALIFIER, + 0x00, + 0x02, + 0x00, + 0x00, + 0x00, + 0x40, + 0x01, + 0x00, +}; +#endif /* USE_USBD_COMPOSITE */ +/** + * @} + */ + +/** @defgroup USBD_CDC_Private_Variables + * @{ + */ + + +/* CDC interface class callbacks structure */ +USBD_ClassTypeDef USBD_CDC = +{ + USBD_CDC_Init, + USBD_CDC_DeInit, + USBD_CDC_Setup, + NULL, /* EP0_TxSent */ + USBD_CDC_EP0_RxReady, + USBD_CDC_DataIn, + USBD_CDC_DataOut, + NULL, + NULL, + NULL, +#ifdef USE_USBD_COMPOSITE + NULL, + NULL, + NULL, + NULL, +#else + USBD_CDC_GetHSCfgDesc, + USBD_CDC_GetFSCfgDesc, + USBD_CDC_GetOtherSpeedCfgDesc, + USBD_CDC_GetDeviceQualifierDescriptor, +#endif /* USE_USBD_COMPOSITE */ +}; + +#ifndef USE_USBD_COMPOSITE +/* USB CDC device Configuration Descriptor */ +__ALIGN_BEGIN static uint8_t USBD_CDC_CfgDesc[USB_CDC_CONFIG_DESC_SIZ] __ALIGN_END = +{ + /* Configuration Descriptor */ + 0x09, /* bLength: Configuration Descriptor size */ + USB_DESC_TYPE_CONFIGURATION, /* bDescriptorType: Configuration */ + USB_CDC_CONFIG_DESC_SIZ, /* wTotalLength */ + 0x00, + 0x02, /* bNumInterfaces: 2 interfaces */ + 0x01, /* bConfigurationValue: Configuration value */ + 0x00, /* iConfiguration: Index of string descriptor + describing the configuration */ +#if (USBD_SELF_POWERED == 1U) + 0xC0, /* bmAttributes: Bus Powered according to user configuration */ +#else + 0x80, /* bmAttributes: Bus Powered according to user configuration */ +#endif /* USBD_SELF_POWERED */ + USBD_MAX_POWER, /* MaxPower (mA) */ + + /*---------------------------------------------------------------------------*/ + + /* Interface Descriptor */ + 0x09, /* bLength: Interface Descriptor size */ + USB_DESC_TYPE_INTERFACE, /* bDescriptorType: Interface */ + /* Interface descriptor type */ + 0x00, /* bInterfaceNumber: Number of Interface */ + 0x00, /* bAlternateSetting: Alternate setting */ + 0x01, /* bNumEndpoints: One endpoint used */ + 0x02, /* bInterfaceClass: Communication Interface Class */ + 0x02, /* bInterfaceSubClass: Abstract Control Model */ + 0x01, /* bInterfaceProtocol: Common AT commands */ + 0x00, /* iInterface */ + + /* Header Functional Descriptor */ + 0x05, /* bLength: Endpoint Descriptor size */ + 0x24, /* bDescriptorType: CS_INTERFACE */ + 0x00, /* bDescriptorSubtype: Header Func Desc */ + 0x10, /* bcdCDC: spec release number */ + 0x01, + + /* Call Management Functional Descriptor */ + 0x05, /* bFunctionLength */ + 0x24, /* bDescriptorType: CS_INTERFACE */ + 0x01, /* bDescriptorSubtype: Call Management Func Desc */ + 0x00, /* bmCapabilities: D0+D1 */ + 0x01, /* bDataInterface */ + + /* ACM Functional Descriptor */ + 0x04, /* bFunctionLength */ + 0x24, /* bDescriptorType: CS_INTERFACE */ + 0x02, /* bDescriptorSubtype: Abstract Control Management desc */ + 0x02, /* bmCapabilities */ + + /* Union Functional Descriptor */ + 0x05, /* bFunctionLength */ + 0x24, /* bDescriptorType: CS_INTERFACE */ + 0x06, /* bDescriptorSubtype: Union func desc */ + 0x00, /* bMasterInterface: Communication class interface */ + 0x01, /* bSlaveInterface0: Data Class Interface */ + + /* Endpoint 2 Descriptor */ + 0x07, /* bLength: Endpoint Descriptor size */ + USB_DESC_TYPE_ENDPOINT, /* bDescriptorType: Endpoint */ + CDC_CMD_EP, /* bEndpointAddress */ + 0x03, /* bmAttributes: Interrupt */ + LOBYTE(CDC_CMD_PACKET_SIZE), /* wMaxPacketSize */ + HIBYTE(CDC_CMD_PACKET_SIZE), + CDC_FS_BINTERVAL, /* bInterval */ + /*---------------------------------------------------------------------------*/ + + /* Data class interface descriptor */ + 0x09, /* bLength: Endpoint Descriptor size */ + USB_DESC_TYPE_INTERFACE, /* bDescriptorType: */ + 0x01, /* bInterfaceNumber: Number of Interface */ + 0x00, /* bAlternateSetting: Alternate setting */ + 0x02, /* bNumEndpoints: Two endpoints used */ + 0x0A, /* bInterfaceClass: CDC */ + 0x00, /* bInterfaceSubClass */ + 0x00, /* bInterfaceProtocol */ + 0x00, /* iInterface */ + + /* Endpoint OUT Descriptor */ + 0x07, /* bLength: Endpoint Descriptor size */ + USB_DESC_TYPE_ENDPOINT, /* bDescriptorType: Endpoint */ + CDC_OUT_EP, /* bEndpointAddress */ + 0x02, /* bmAttributes: Bulk */ + LOBYTE(CDC_DATA_FS_MAX_PACKET_SIZE), /* wMaxPacketSize */ + HIBYTE(CDC_DATA_FS_MAX_PACKET_SIZE), + 0x00, /* bInterval */ + + /* Endpoint IN Descriptor */ + 0x07, /* bLength: Endpoint Descriptor size */ + USB_DESC_TYPE_ENDPOINT, /* bDescriptorType: Endpoint */ + CDC_IN_EP, /* bEndpointAddress */ + 0x02, /* bmAttributes: Bulk */ + LOBYTE(CDC_DATA_FS_MAX_PACKET_SIZE), /* wMaxPacketSize */ + HIBYTE(CDC_DATA_FS_MAX_PACKET_SIZE), + 0x00 /* bInterval */ +}; +#endif /* USE_USBD_COMPOSITE */ + +static uint8_t CDCInEpAdd = CDC_IN_EP; +static uint8_t CDCOutEpAdd = CDC_OUT_EP; +static uint8_t CDCCmdEpAdd = CDC_CMD_EP; + +/** + * @} + */ + +/** @defgroup USBD_CDC_Private_Functions + * @{ + */ + +/** + * @brief USBD_CDC_Init + * Initialize the CDC interface + * @param pdev: device instance + * @param cfgidx: Configuration index + * @retval status + */ +static uint8_t USBD_CDC_Init(USBD_HandleTypeDef *pdev, uint8_t cfgidx) +{ + UNUSED(cfgidx); + USBD_CDC_HandleTypeDef *hcdc; + + hcdc = (USBD_CDC_HandleTypeDef *)USBD_malloc(sizeof(USBD_CDC_HandleTypeDef)); + + if (hcdc == NULL) + { + pdev->pClassDataCmsit[pdev->classId] = NULL; + return (uint8_t)USBD_EMEM; + } + + (void)USBD_memset(hcdc, 0, sizeof(USBD_CDC_HandleTypeDef)); + + pdev->pClassDataCmsit[pdev->classId] = (void *)hcdc; + pdev->pClassData = pdev->pClassDataCmsit[pdev->classId]; + +#ifdef USE_USBD_COMPOSITE + /* Get the Endpoints addresses allocated for this class instance */ + CDCInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_BULK); + CDCOutEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_OUT, USBD_EP_TYPE_BULK); + CDCCmdEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR); +#endif /* USE_USBD_COMPOSITE */ + + if (pdev->dev_speed == USBD_SPEED_HIGH) + { + /* Open EP IN */ + (void)USBD_LL_OpenEP(pdev, CDCInEpAdd, USBD_EP_TYPE_BULK, + CDC_DATA_HS_IN_PACKET_SIZE); + + pdev->ep_in[CDCInEpAdd & 0xFU].is_used = 1U; + + /* Open EP OUT */ + (void)USBD_LL_OpenEP(pdev, CDCOutEpAdd, USBD_EP_TYPE_BULK, + CDC_DATA_HS_OUT_PACKET_SIZE); + + pdev->ep_out[CDCOutEpAdd & 0xFU].is_used = 1U; + + /* Set bInterval for CDC CMD Endpoint */ + pdev->ep_in[CDCCmdEpAdd & 0xFU].bInterval = CDC_HS_BINTERVAL; + } + else + { + /* Open EP IN */ + (void)USBD_LL_OpenEP(pdev, CDCInEpAdd, USBD_EP_TYPE_BULK, + CDC_DATA_FS_IN_PACKET_SIZE); + + pdev->ep_in[CDCInEpAdd & 0xFU].is_used = 1U; + + /* Open EP OUT */ + (void)USBD_LL_OpenEP(pdev, CDCOutEpAdd, USBD_EP_TYPE_BULK, + CDC_DATA_FS_OUT_PACKET_SIZE); + + pdev->ep_out[CDCOutEpAdd & 0xFU].is_used = 1U; + + /* Set bInterval for CMD Endpoint */ + pdev->ep_in[CDCCmdEpAdd & 0xFU].bInterval = CDC_FS_BINTERVAL; + } + + /* Open Command IN EP */ + (void)USBD_LL_OpenEP(pdev, CDCCmdEpAdd, USBD_EP_TYPE_INTR, CDC_CMD_PACKET_SIZE); + pdev->ep_in[CDCCmdEpAdd & 0xFU].is_used = 1U; + + hcdc->RxBuffer = NULL; + + /* Init physical Interface components */ + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->Init(); + + /* Init Xfer states */ + hcdc->TxState = 0U; + hcdc->RxState = 0U; + + if (hcdc->RxBuffer == NULL) + { + return (uint8_t)USBD_EMEM; + } + + if (pdev->dev_speed == USBD_SPEED_HIGH) + { + /* Prepare Out endpoint to receive next packet */ + (void)USBD_LL_PrepareReceive(pdev, CDCOutEpAdd, hcdc->RxBuffer, + CDC_DATA_HS_OUT_PACKET_SIZE); + } + else + { + /* Prepare Out endpoint to receive next packet */ + (void)USBD_LL_PrepareReceive(pdev, CDCOutEpAdd, hcdc->RxBuffer, + CDC_DATA_FS_OUT_PACKET_SIZE); + } + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_Init + * DeInitialize the CDC layer + * @param pdev: device instance + * @param cfgidx: Configuration index + * @retval status + */ +static uint8_t USBD_CDC_DeInit(USBD_HandleTypeDef *pdev, uint8_t cfgidx) +{ + UNUSED(cfgidx); + + +#ifdef USE_USBD_COMPOSITE + /* Get the Endpoints addresses allocated for this CDC class instance */ + CDCInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_BULK); + CDCOutEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_OUT, USBD_EP_TYPE_BULK); + CDCCmdEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_INTR); +#endif /* USE_USBD_COMPOSITE */ + + /* Close EP IN */ + (void)USBD_LL_CloseEP(pdev, CDCInEpAdd); + pdev->ep_in[CDCInEpAdd & 0xFU].is_used = 0U; + + /* Close EP OUT */ + (void)USBD_LL_CloseEP(pdev, CDCOutEpAdd); + pdev->ep_out[CDCOutEpAdd & 0xFU].is_used = 0U; + + /* Close Command IN EP */ + (void)USBD_LL_CloseEP(pdev, CDCCmdEpAdd); + pdev->ep_in[CDCCmdEpAdd & 0xFU].is_used = 0U; + pdev->ep_in[CDCCmdEpAdd & 0xFU].bInterval = 0U; + + /* DeInit physical Interface components */ + if (pdev->pClassDataCmsit[pdev->classId] != NULL) + { + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->DeInit(); + (void)USBD_free(pdev->pClassDataCmsit[pdev->classId]); + pdev->pClassDataCmsit[pdev->classId] = NULL; + pdev->pClassData = NULL; + } + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_Setup + * Handle the CDC specific requests + * @param pdev: instance + * @param req: usb requests + * @retval status + */ +static uint8_t USBD_CDC_Setup(USBD_HandleTypeDef *pdev, + USBD_SetupReqTypedef *req) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + uint16_t len; + uint8_t ifalt = 0U; + uint16_t status_info = 0U; + USBD_StatusTypeDef ret = USBD_OK; + + if (hcdc == NULL) + { + return (uint8_t)USBD_FAIL; + } + + switch (req->bmRequest & USB_REQ_TYPE_MASK) + { + case USB_REQ_TYPE_CLASS: + if (req->wLength != 0U) + { + if ((req->bmRequest & 0x80U) != 0U) + { + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->Control(req->bRequest, + (uint8_t *)hcdc->data, + req->wLength); + + len = MIN(CDC_REQ_MAX_DATA_SIZE, req->wLength); + (void)USBD_CtlSendData(pdev, (uint8_t *)hcdc->data, len); + } + else + { + hcdc->CmdOpCode = req->bRequest; + hcdc->CmdLength = (uint8_t)MIN(req->wLength, USB_MAX_EP0_SIZE); + + (void)USBD_CtlPrepareRx(pdev, (uint8_t *)hcdc->data, hcdc->CmdLength); + } + } + else + { + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->Control(req->bRequest, + (uint8_t *)req, 0U); + } + break; + + case USB_REQ_TYPE_STANDARD: + switch (req->bRequest) + { + case USB_REQ_GET_STATUS: + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + (void)USBD_CtlSendData(pdev, (uint8_t *)&status_info, 2U); + } + else + { + USBD_CtlError(pdev, req); + ret = USBD_FAIL; + } + break; + + case USB_REQ_GET_INTERFACE: + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + (void)USBD_CtlSendData(pdev, &ifalt, 1U); + } + else + { + USBD_CtlError(pdev, req); + ret = USBD_FAIL; + } + break; + + case USB_REQ_SET_INTERFACE: + if (pdev->dev_state != USBD_STATE_CONFIGURED) + { + USBD_CtlError(pdev, req); + ret = USBD_FAIL; + } + break; + + case USB_REQ_CLEAR_FEATURE: + break; + + default: + USBD_CtlError(pdev, req); + ret = USBD_FAIL; + break; + } + break; + + default: + USBD_CtlError(pdev, req); + ret = USBD_FAIL; + break; + } + + return (uint8_t)ret; +} + +/** + * @brief USBD_CDC_DataIn + * Data sent on non-control IN endpoint + * @param pdev: device instance + * @param epnum: endpoint number + * @retval status + */ +static uint8_t USBD_CDC_DataIn(USBD_HandleTypeDef *pdev, uint8_t epnum) +{ + USBD_CDC_HandleTypeDef *hcdc; + PCD_HandleTypeDef *hpcd = (PCD_HandleTypeDef *)pdev->pData; + + if (pdev->pClassDataCmsit[pdev->classId] == NULL) + { + return (uint8_t)USBD_FAIL; + } + + hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + + if ((pdev->ep_in[epnum & 0xFU].total_length > 0U) && + ((pdev->ep_in[epnum & 0xFU].total_length % hpcd->IN_ep[epnum & 0xFU].maxpacket) == 0U)) + { + /* Update the packet total length */ + pdev->ep_in[epnum & 0xFU].total_length = 0U; + + /* Send ZLP */ + (void)USBD_LL_Transmit(pdev, epnum, NULL, 0U); + } + else + { + hcdc->TxState = 0U; + + if (((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->TransmitCplt != NULL) + { + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->TransmitCplt(hcdc->TxBuffer, &hcdc->TxLength, epnum); + } + } + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_DataOut + * Data received on non-control Out endpoint + * @param pdev: device instance + * @param epnum: endpoint number + * @retval status + */ +static uint8_t USBD_CDC_DataOut(USBD_HandleTypeDef *pdev, uint8_t epnum) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + + if (pdev->pClassDataCmsit[pdev->classId] == NULL) + { + return (uint8_t)USBD_FAIL; + } + + /* Get the received data length */ + hcdc->RxLength = USBD_LL_GetRxDataSize(pdev, epnum); + + /* USB data will be immediately processed, this allow next USB traffic being + NAKed till the end of the application Xfer */ + + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->Receive(hcdc->RxBuffer, &hcdc->RxLength); + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_EP0_RxReady + * Handle EP0 Rx Ready event + * @param pdev: device instance + * @retval status + */ +static uint8_t USBD_CDC_EP0_RxReady(USBD_HandleTypeDef *pdev) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + + if (hcdc == NULL) + { + return (uint8_t)USBD_FAIL; + } + + if ((pdev->pUserData[pdev->classId] != NULL) && (hcdc->CmdOpCode != 0xFFU)) + { + ((USBD_CDC_ItfTypeDef *)pdev->pUserData[pdev->classId])->Control(hcdc->CmdOpCode, + (uint8_t *)hcdc->data, + (uint16_t)hcdc->CmdLength); + hcdc->CmdOpCode = 0xFFU; + } + + return (uint8_t)USBD_OK; +} +#ifndef USE_USBD_COMPOSITE +/** + * @brief USBD_CDC_GetFSCfgDesc + * Return configuration descriptor + * @param length : pointer data length + * @retval pointer to descriptor buffer + */ +static uint8_t *USBD_CDC_GetFSCfgDesc(uint16_t *length) +{ + USBD_EpDescTypeDef *pEpCmdDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_CMD_EP); + USBD_EpDescTypeDef *pEpOutDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_OUT_EP); + USBD_EpDescTypeDef *pEpInDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_IN_EP); + + if (pEpCmdDesc != NULL) + { + pEpCmdDesc->bInterval = CDC_FS_BINTERVAL; + } + + if (pEpOutDesc != NULL) + { + pEpOutDesc->wMaxPacketSize = CDC_DATA_FS_MAX_PACKET_SIZE; + } + + if (pEpInDesc != NULL) + { + pEpInDesc->wMaxPacketSize = CDC_DATA_FS_MAX_PACKET_SIZE; + } + + *length = (uint16_t)sizeof(USBD_CDC_CfgDesc); + return USBD_CDC_CfgDesc; +} + +/** + * @brief USBD_CDC_GetHSCfgDesc + * Return configuration descriptor + * @param length : pointer data length + * @retval pointer to descriptor buffer + */ +static uint8_t *USBD_CDC_GetHSCfgDesc(uint16_t *length) +{ + USBD_EpDescTypeDef *pEpCmdDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_CMD_EP); + USBD_EpDescTypeDef *pEpOutDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_OUT_EP); + USBD_EpDescTypeDef *pEpInDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_IN_EP); + + if (pEpCmdDesc != NULL) + { + pEpCmdDesc->bInterval = CDC_HS_BINTERVAL; + } + + if (pEpOutDesc != NULL) + { + pEpOutDesc->wMaxPacketSize = CDC_DATA_HS_MAX_PACKET_SIZE; + } + + if (pEpInDesc != NULL) + { + pEpInDesc->wMaxPacketSize = CDC_DATA_HS_MAX_PACKET_SIZE; + } + + *length = (uint16_t)sizeof(USBD_CDC_CfgDesc); + return USBD_CDC_CfgDesc; +} + +/** + * @brief USBD_CDC_GetOtherSpeedCfgDesc + * Return configuration descriptor + * @param length : pointer data length + * @retval pointer to descriptor buffer + */ +static uint8_t *USBD_CDC_GetOtherSpeedCfgDesc(uint16_t *length) +{ + USBD_EpDescTypeDef *pEpCmdDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_CMD_EP); + USBD_EpDescTypeDef *pEpOutDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_OUT_EP); + USBD_EpDescTypeDef *pEpInDesc = USBD_GetEpDesc(USBD_CDC_CfgDesc, CDC_IN_EP); + + if (pEpCmdDesc != NULL) + { + pEpCmdDesc->bInterval = CDC_FS_BINTERVAL; + } + + if (pEpOutDesc != NULL) + { + pEpOutDesc->wMaxPacketSize = CDC_DATA_FS_MAX_PACKET_SIZE; + } + + if (pEpInDesc != NULL) + { + pEpInDesc->wMaxPacketSize = CDC_DATA_FS_MAX_PACKET_SIZE; + } + + *length = (uint16_t)sizeof(USBD_CDC_CfgDesc); + return USBD_CDC_CfgDesc; +} + +/** + * @brief USBD_CDC_GetDeviceQualifierDescriptor + * return Device Qualifier descriptor + * @param length : pointer data length + * @retval pointer to descriptor buffer + */ +uint8_t *USBD_CDC_GetDeviceQualifierDescriptor(uint16_t *length) +{ + *length = (uint16_t)sizeof(USBD_CDC_DeviceQualifierDesc); + + return USBD_CDC_DeviceQualifierDesc; +} +#endif /* USE_USBD_COMPOSITE */ +/** + * @brief USBD_CDC_RegisterInterface + * @param pdev: device instance + * @param fops: CD Interface callback + * @retval status + */ +uint8_t USBD_CDC_RegisterInterface(USBD_HandleTypeDef *pdev, + USBD_CDC_ItfTypeDef *fops) +{ + if (fops == NULL) + { + return (uint8_t)USBD_FAIL; + } + + pdev->pUserData[pdev->classId] = fops; + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_SetTxBuffer + * @param pdev: device instance + * @param pbuff: Tx Buffer + * @param length: Tx Buffer length + * @retval status + */ +uint8_t USBD_CDC_SetTxBuffer(USBD_HandleTypeDef *pdev, + uint8_t *pbuff, uint32_t length) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + + if (hcdc == NULL) + { + return (uint8_t)USBD_FAIL; + } + + hcdc->TxBuffer = pbuff; + hcdc->TxLength = length; + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_SetRxBuffer + * @param pdev: device instance + * @param pbuff: Rx Buffer + * @retval status + */ +uint8_t USBD_CDC_SetRxBuffer(USBD_HandleTypeDef *pdev, uint8_t *pbuff) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + + if (hcdc == NULL) + { + return (uint8_t)USBD_FAIL; + } + + hcdc->RxBuffer = pbuff; + + return (uint8_t)USBD_OK; +} + +/** + * @brief USBD_CDC_TransmitPacket + * Transmit packet on IN endpoint + * @param pdev: device instance + * @retval status + */ +uint8_t USBD_CDC_TransmitPacket(USBD_HandleTypeDef *pdev) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + USBD_StatusTypeDef ret = USBD_BUSY; + +#ifdef USE_USBD_COMPOSITE + /* Get the Endpoints addresses allocated for this class instance */ + CDCInEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_IN, USBD_EP_TYPE_BULK); +#endif /* USE_USBD_COMPOSITE */ + if (pdev->pClassDataCmsit[pdev->classId] == NULL) + { + return (uint8_t)USBD_FAIL; + } + + if (hcdc->TxState == 0U) + { + /* Tx Transfer in progress */ + hcdc->TxState = 1U; + + /* Update the packet total length */ + pdev->ep_in[CDCInEpAdd & 0xFU].total_length = hcdc->TxLength; + + /* Transmit next packet */ + (void)USBD_LL_Transmit(pdev, CDCInEpAdd, hcdc->TxBuffer, hcdc->TxLength); + + ret = USBD_OK; + } + + return (uint8_t)ret; +} + +/** + * @brief USBD_CDC_ReceivePacket + * prepare OUT Endpoint for reception + * @param pdev: device instance + * @retval status + */ +uint8_t USBD_CDC_ReceivePacket(USBD_HandleTypeDef *pdev) +{ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef *)pdev->pClassDataCmsit[pdev->classId]; + +#ifdef USE_USBD_COMPOSITE + /* Get the Endpoints addresses allocated for this class instance */ + CDCOutEpAdd = USBD_CoreGetEPAdd(pdev, USBD_EP_OUT, USBD_EP_TYPE_BULK); +#endif /* USE_USBD_COMPOSITE */ + + if (pdev->pClassDataCmsit[pdev->classId] == NULL) + { + return (uint8_t)USBD_FAIL; + } + + if (pdev->dev_speed == USBD_SPEED_HIGH) + { + /* Prepare Out endpoint to receive next packet */ + (void)USBD_LL_PrepareReceive(pdev, CDCOutEpAdd, hcdc->RxBuffer, + CDC_DATA_HS_OUT_PACKET_SIZE); + } + else + { + /* Prepare Out endpoint to receive next packet */ + (void)USBD_LL_PrepareReceive(pdev, CDCOutEpAdd, hcdc->RxBuffer, + CDC_DATA_FS_OUT_PACKET_SIZE); + } + + return (uint8_t)USBD_OK; +} +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h new file mode 100644 index 0000000..7b7dff5 --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h @@ -0,0 +1,172 @@ +/** + ****************************************************************************** + * @file usbd_core.h + * @author MCD Application Team + * @brief Header file for usbd_core.c file + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __USBD_CORE_H +#define __USBD_CORE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_conf.h" +#include "usbd_def.h" +#include "usbd_ioreq.h" +#include "usbd_ctlreq.h" + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + +/** @defgroup USBD_CORE + * @brief This file is the Header file for usbd_core.c file + * @{ + */ + + +/** @defgroup USBD_CORE_Exported_Defines + * @{ + */ +#ifndef USBD_DEBUG_LEVEL +#define USBD_DEBUG_LEVEL 0U +#endif /* USBD_DEBUG_LEVEL */ +/** + * @} + */ + + +/** @defgroup USBD_CORE_Exported_TypesDefinitions + * @{ + */ + + +/** + * @} + */ + + + +/** @defgroup USBD_CORE_Exported_Macros + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_CORE_Exported_Variables + * @{ + */ +#define USBD_SOF USBD_LL_SOF +/** + * @} + */ + +/** @defgroup USBD_CORE_Exported_FunctionsPrototype + * @{ + */ +USBD_StatusTypeDef USBD_Init(USBD_HandleTypeDef *pdev, USBD_DescriptorsTypeDef *pdesc, uint8_t id); +USBD_StatusTypeDef USBD_DeInit(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_Start(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_Stop(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_RegisterClass(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass); + +#ifdef USE_USBD_COMPOSITE +USBD_StatusTypeDef USBD_RegisterClassComposite(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass, + USBD_CompositeClassTypeDef classtype, uint8_t *EpAddr); + +USBD_StatusTypeDef USBD_UnRegisterClassComposite(USBD_HandleTypeDef *pdev); +uint8_t USBD_CoreGetEPAdd(USBD_HandleTypeDef *pdev, uint8_t ep_dir, uint8_t ep_type); +#endif /* USE_USBD_COMPOSITE */ + +uint8_t USBD_CoreFindIF(USBD_HandleTypeDef *pdev, uint8_t index); +uint8_t USBD_CoreFindEP(USBD_HandleTypeDef *pdev, uint8_t index); + +USBD_StatusTypeDef USBD_RunTestMode(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_SetClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx); +USBD_StatusTypeDef USBD_ClrClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx); + +USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup); +USBD_StatusTypeDef USBD_LL_DataOutStage(USBD_HandleTypeDef *pdev, uint8_t epnum, uint8_t *pdata); +USBD_StatusTypeDef USBD_LL_DataInStage(USBD_HandleTypeDef *pdev, uint8_t epnum, uint8_t *pdata); + +USBD_StatusTypeDef USBD_LL_Reset(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_SetSpeed(USBD_HandleTypeDef *pdev, USBD_SpeedTypeDef speed); +USBD_StatusTypeDef USBD_LL_Suspend(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_Resume(USBD_HandleTypeDef *pdev); + +USBD_StatusTypeDef USBD_LL_SOF(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_IsoINIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum); +USBD_StatusTypeDef USBD_LL_IsoOUTIncomplete(USBD_HandleTypeDef *pdev, uint8_t epnum); + +USBD_StatusTypeDef USBD_LL_DevConnected(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_DevDisconnected(USBD_HandleTypeDef *pdev); + +/* USBD Low Level Driver */ +USBD_StatusTypeDef USBD_LL_Init(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_DeInit(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_Start(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_LL_Stop(USBD_HandleTypeDef *pdev); + +USBD_StatusTypeDef USBD_LL_OpenEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr, + uint8_t ep_type, uint16_t ep_mps); + +USBD_StatusTypeDef USBD_LL_CloseEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr); +USBD_StatusTypeDef USBD_LL_FlushEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr); +USBD_StatusTypeDef USBD_LL_StallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr); +USBD_StatusTypeDef USBD_LL_ClearStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr); +USBD_StatusTypeDef USBD_LL_SetUSBAddress(USBD_HandleTypeDef *pdev, uint8_t dev_addr); + +USBD_StatusTypeDef USBD_LL_Transmit(USBD_HandleTypeDef *pdev, uint8_t ep_addr, + uint8_t *pbuf, uint32_t size); + +USBD_StatusTypeDef USBD_LL_PrepareReceive(USBD_HandleTypeDef *pdev, uint8_t ep_addr, + uint8_t *pbuf, uint32_t size); + +#ifdef USBD_HS_TESTMODE_ENABLE +USBD_StatusTypeDef USBD_LL_SetTestMode(USBD_HandleTypeDef *pdev, uint8_t testmode); +#endif /* USBD_HS_TESTMODE_ENABLE */ + +uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr); +uint32_t USBD_LL_GetRxDataSize(USBD_HandleTypeDef *pdev, uint8_t ep_addr); + +void USBD_LL_Delay(uint32_t Delay); + +void *USBD_GetEpDesc(uint8_t *pConfDesc, uint8_t EpAddr); +USBD_DescHeaderTypeDef *USBD_GetNextDesc(uint8_t *pbuf, uint16_t *ptr); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __USBD_CORE_H */ + +/** + * @} + */ + +/** + * @} + */ + + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h new file mode 100644 index 0000000..6c45d6c --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h @@ -0,0 +1,101 @@ +/** + ****************************************************************************** + * @file usbd_req.h + * @author MCD Application Team + * @brief Header file for the usbd_req.c file + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __USB_REQUEST_H +#define __USB_REQUEST_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_def.h" + + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + +/** @defgroup USBD_REQ + * @brief header file for the usbd_req.c file + * @{ + */ + +/** @defgroup USBD_REQ_Exported_Defines + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_REQ_Exported_Types + * @{ + */ +/** + * @} + */ + + + +/** @defgroup USBD_REQ_Exported_Macros + * @{ + */ +/** + * @} + */ + +/** @defgroup USBD_REQ_Exported_Variables + * @{ + */ +/** + * @} + */ + +/** @defgroup USBD_REQ_Exported_FunctionsPrototype + * @{ + */ + +USBD_StatusTypeDef USBD_StdDevReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +USBD_StatusTypeDef USBD_StdItfReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +USBD_StatusTypeDef USBD_StdEPReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); + +void USBD_CtlError(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +void USBD_ParseSetupRequest(USBD_SetupReqTypedef *req, uint8_t *pdata); +void USBD_GetString(uint8_t *desc, uint8_t *unicode, uint16_t *len); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __USB_REQUEST_H */ + +/** + * @} + */ + +/** + * @} + */ + + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h new file mode 100644 index 0000000..3c1902f --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h @@ -0,0 +1,514 @@ +/** + ****************************************************************************** + * @file usbd_def.h + * @author MCD Application Team + * @brief General defines for the usb device library + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __USBD_DEF_H +#define __USBD_DEF_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_conf.h" + +/** @addtogroup STM32_USBD_DEVICE_LIBRARY + * @{ + */ + +/** @defgroup USB_DEF + * @brief general defines for the usb device library file + * @{ + */ + +/** @defgroup USB_DEF_Exported_Defines + * @{ + */ + +#ifndef NULL +#define NULL 0U +#endif /* NULL */ + +#ifndef USBD_MAX_NUM_INTERFACES +#define USBD_MAX_NUM_INTERFACES 1U +#endif /* USBD_MAX_NUM_CONFIGURATION */ + +#ifndef USBD_MAX_NUM_CONFIGURATION +#define USBD_MAX_NUM_CONFIGURATION 1U +#endif /* USBD_MAX_NUM_CONFIGURATION */ + +#ifdef USE_USBD_COMPOSITE +#ifndef USBD_MAX_SUPPORTED_CLASS +#define USBD_MAX_SUPPORTED_CLASS 4U +#endif /* USBD_MAX_SUPPORTED_CLASS */ +#else +#ifndef USBD_MAX_SUPPORTED_CLASS +#define USBD_MAX_SUPPORTED_CLASS 1U +#endif /* USBD_MAX_SUPPORTED_CLASS */ +#endif /* USE_USBD_COMPOSITE */ + +#ifndef USBD_MAX_CLASS_ENDPOINTS +#define USBD_MAX_CLASS_ENDPOINTS 5U +#endif /* USBD_MAX_CLASS_ENDPOINTS */ + +#ifndef USBD_MAX_CLASS_INTERFACES +#define USBD_MAX_CLASS_INTERFACES 5U +#endif /* USBD_MAX_CLASS_INTERFACES */ + +#ifndef USBD_LPM_ENABLED +#define USBD_LPM_ENABLED 0U +#endif /* USBD_LPM_ENABLED */ + +#ifndef USBD_SELF_POWERED +#define USBD_SELF_POWERED 1U +#endif /*USBD_SELF_POWERED */ + +#ifndef USBD_MAX_POWER +#define USBD_MAX_POWER 0x32U /* 100 mA */ +#endif /* USBD_MAX_POWER */ + +#ifndef USBD_SUPPORT_USER_STRING_DESC +#define USBD_SUPPORT_USER_STRING_DESC 0U +#endif /* USBD_SUPPORT_USER_STRING_DESC */ + +#ifndef USBD_CLASS_USER_STRING_DESC +#define USBD_CLASS_USER_STRING_DESC 0U +#endif /* USBD_CLASS_USER_STRING_DESC */ + +#define USB_LEN_DEV_QUALIFIER_DESC 0x0AU +#define USB_LEN_DEV_DESC 0x12U +#define USB_LEN_CFG_DESC 0x09U +#define USB_LEN_IF_DESC 0x09U +#define USB_LEN_EP_DESC 0x07U +#define USB_LEN_OTG_DESC 0x03U +#define USB_LEN_LANGID_STR_DESC 0x04U +#define USB_LEN_OTHER_SPEED_DESC_SIZ 0x09U + +#define USBD_IDX_LANGID_STR 0x00U +#define USBD_IDX_MFC_STR 0x01U +#define USBD_IDX_PRODUCT_STR 0x02U +#define USBD_IDX_SERIAL_STR 0x03U +#define USBD_IDX_CONFIG_STR 0x04U +#define USBD_IDX_INTERFACE_STR 0x05U + +#define USB_REQ_TYPE_STANDARD 0x00U +#define USB_REQ_TYPE_CLASS 0x20U +#define USB_REQ_TYPE_VENDOR 0x40U +#define USB_REQ_TYPE_MASK 0x60U + +#define USB_REQ_RECIPIENT_DEVICE 0x00U +#define USB_REQ_RECIPIENT_INTERFACE 0x01U +#define USB_REQ_RECIPIENT_ENDPOINT 0x02U +#define USB_REQ_RECIPIENT_MASK 0x03U + +#define USB_REQ_GET_STATUS 0x00U +#define USB_REQ_CLEAR_FEATURE 0x01U +#define USB_REQ_SET_FEATURE 0x03U +#define USB_REQ_SET_ADDRESS 0x05U +#define USB_REQ_GET_DESCRIPTOR 0x06U +#define USB_REQ_SET_DESCRIPTOR 0x07U +#define USB_REQ_GET_CONFIGURATION 0x08U +#define USB_REQ_SET_CONFIGURATION 0x09U +#define USB_REQ_GET_INTERFACE 0x0AU +#define USB_REQ_SET_INTERFACE 0x0BU +#define USB_REQ_SYNCH_FRAME 0x0CU + +#define USB_DESC_TYPE_DEVICE 0x01U +#define USB_DESC_TYPE_CONFIGURATION 0x02U +#define USB_DESC_TYPE_STRING 0x03U +#define USB_DESC_TYPE_INTERFACE 0x04U +#define USB_DESC_TYPE_ENDPOINT 0x05U +#define USB_DESC_TYPE_DEVICE_QUALIFIER 0x06U +#define USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION 0x07U +#define USB_DESC_TYPE_IAD 0x0BU +#define USB_DESC_TYPE_BOS 0x0FU + +#define USB_CONFIG_REMOTE_WAKEUP 0x02U +#define USB_CONFIG_SELF_POWERED 0x01U + +#define USB_FEATURE_EP_HALT 0x00U +#define USB_FEATURE_REMOTE_WAKEUP 0x01U +#define USB_FEATURE_TEST_MODE 0x02U + +#define USB_DEVICE_CAPABITY_TYPE 0x10U + +#define USB_CONF_DESC_SIZE 0x09U +#define USB_IF_DESC_SIZE 0x09U +#define USB_EP_DESC_SIZE 0x07U +#define USB_IAD_DESC_SIZE 0x08U + +#define USB_HS_MAX_PACKET_SIZE 512U +#define USB_FS_MAX_PACKET_SIZE 64U +#define USB_MAX_EP0_SIZE 64U + +/* Device Status */ +#define USBD_STATE_DEFAULT 0x01U +#define USBD_STATE_ADDRESSED 0x02U +#define USBD_STATE_CONFIGURED 0x03U +#define USBD_STATE_SUSPENDED 0x04U + + +/* EP0 State */ +#define USBD_EP0_IDLE 0x00U +#define USBD_EP0_SETUP 0x01U +#define USBD_EP0_DATA_IN 0x02U +#define USBD_EP0_DATA_OUT 0x03U +#define USBD_EP0_STATUS_IN 0x04U +#define USBD_EP0_STATUS_OUT 0x05U +#define USBD_EP0_STALL 0x06U + +#define USBD_EP_TYPE_CTRL 0x00U +#define USBD_EP_TYPE_ISOC 0x01U +#define USBD_EP_TYPE_BULK 0x02U +#define USBD_EP_TYPE_INTR 0x03U + +#ifdef USE_USBD_COMPOSITE +#define USBD_EP_IN 0x80U +#define USBD_EP_OUT 0x00U +#define USBD_FUNC_DESCRIPTOR_TYPE 0x24U +#define USBD_DESC_SUBTYPE_ACM 0x0FU +#define USBD_DESC_ECM_BCD_LOW 0x00U +#define USBD_DESC_ECM_BCD_HIGH 0x10U +#endif /* USE_USBD_COMPOSITE */ +/** + * @} + */ + + +/** @defgroup USBD_DEF_Exported_TypesDefinitions + * @{ + */ + +typedef struct usb_setup_req +{ + uint8_t bmRequest; + uint8_t bRequest; + uint16_t wValue; + uint16_t wIndex; + uint16_t wLength; +} USBD_SetupReqTypedef; + +typedef struct +{ + uint8_t bLength; + uint8_t bDescriptorType; + uint16_t wTotalLength; + uint8_t bNumInterfaces; + uint8_t bConfigurationValue; + uint8_t iConfiguration; + uint8_t bmAttributes; + uint8_t bMaxPower; +} __PACKED USBD_ConfigDescTypeDef; + +typedef struct +{ + uint8_t bLength; + uint8_t bDescriptorType; + uint16_t wTotalLength; + uint8_t bNumDeviceCaps; +} USBD_BosDescTypeDef; + +typedef struct +{ + uint8_t bLength; + uint8_t bDescriptorType; + uint8_t bEndpointAddress; + uint8_t bmAttributes; + uint16_t wMaxPacketSize; + uint8_t bInterval; +} __PACKED USBD_EpDescTypeDef; + +typedef struct +{ + uint8_t bLength; + uint8_t bDescriptorType; + uint8_t bDescriptorSubType; +} USBD_DescHeaderTypeDef; + +struct _USBD_HandleTypeDef; + +typedef struct _Device_cb +{ + uint8_t (*Init)(struct _USBD_HandleTypeDef *pdev, uint8_t cfgidx); + uint8_t (*DeInit)(struct _USBD_HandleTypeDef *pdev, uint8_t cfgidx); + /* Control Endpoints*/ + uint8_t (*Setup)(struct _USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); + uint8_t (*EP0_TxSent)(struct _USBD_HandleTypeDef *pdev); + uint8_t (*EP0_RxReady)(struct _USBD_HandleTypeDef *pdev); + /* Class Specific Endpoints*/ + uint8_t (*DataIn)(struct _USBD_HandleTypeDef *pdev, uint8_t epnum); + uint8_t (*DataOut)(struct _USBD_HandleTypeDef *pdev, uint8_t epnum); + uint8_t (*SOF)(struct _USBD_HandleTypeDef *pdev); + uint8_t (*IsoINIncomplete)(struct _USBD_HandleTypeDef *pdev, uint8_t epnum); + uint8_t (*IsoOUTIncomplete)(struct _USBD_HandleTypeDef *pdev, uint8_t epnum); + + uint8_t *(*GetHSConfigDescriptor)(uint16_t *length); + uint8_t *(*GetFSConfigDescriptor)(uint16_t *length); + uint8_t *(*GetOtherSpeedConfigDescriptor)(uint16_t *length); + uint8_t *(*GetDeviceQualifierDescriptor)(uint16_t *length); +#if (USBD_SUPPORT_USER_STRING_DESC == 1U) + uint8_t *(*GetUsrStrDescriptor)(struct _USBD_HandleTypeDef *pdev, uint8_t index, uint16_t *length); +#endif /* USBD_SUPPORT_USER_STRING_DESC */ + +} USBD_ClassTypeDef; + +/* Following USB Device Speed */ +typedef enum +{ + USBD_SPEED_HIGH = 0U, + USBD_SPEED_FULL = 1U, + USBD_SPEED_LOW = 2U, +} USBD_SpeedTypeDef; + +/* Following USB Device status */ +typedef enum +{ + USBD_OK = 0U, + USBD_BUSY, + USBD_EMEM, + USBD_FAIL, +} USBD_StatusTypeDef; + +/* USB Device descriptors structure */ +typedef struct +{ + uint8_t *(*GetDeviceDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetLangIDStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetManufacturerStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetProductStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetSerialStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetConfigurationStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); + uint8_t *(*GetInterfaceStrDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); +#if (USBD_CLASS_USER_STRING_DESC == 1) + uint8_t *(*GetUserStrDescriptor)(USBD_SpeedTypeDef speed, uint8_t idx, uint16_t *length); +#endif /* USBD_CLASS_USER_STRING_DESC */ +#if ((USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1)) + uint8_t *(*GetBOSDescriptor)(USBD_SpeedTypeDef speed, uint16_t *length); +#endif /* (USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1) */ +} USBD_DescriptorsTypeDef; + +/* USB Device handle structure */ +typedef struct +{ + uint32_t status; + uint32_t total_length; + uint32_t rem_length; + uint32_t maxpacket; + uint16_t is_used; + uint16_t bInterval; +} USBD_EndpointTypeDef; + +#ifdef USE_USBD_COMPOSITE +typedef enum +{ + CLASS_TYPE_NONE = 0, + CLASS_TYPE_HID = 1, + CLASS_TYPE_CDC = 2, + CLASS_TYPE_MSC = 3, + CLASS_TYPE_DFU = 4, + CLASS_TYPE_CHID = 5, + CLASS_TYPE_AUDIO = 6, + CLASS_TYPE_ECM = 7, + CLASS_TYPE_RNDIS = 8, + CLASS_TYPE_MTP = 9, + CLASS_TYPE_VIDEO = 10, + CLASS_TYPE_PRINTER = 11, + CLASS_TYPE_CCID = 12, +} USBD_CompositeClassTypeDef; + + +/* USB Device handle structure */ +typedef struct +{ + uint8_t add; + uint8_t type; + uint8_t size; + uint8_t is_used; +} USBD_EPTypeDef; + +/* USB Device handle structure */ +typedef struct +{ + USBD_CompositeClassTypeDef ClassType; + uint32_t ClassId; + uint32_t Active; + uint32_t NumEps; + USBD_EPTypeDef Eps[USBD_MAX_CLASS_ENDPOINTS]; + uint8_t *EpAdd; + uint32_t NumIf; + uint8_t Ifs[USBD_MAX_CLASS_INTERFACES]; + uint32_t CurrPcktSze; +} USBD_CompositeElementTypeDef; +#endif /* USE_USBD_COMPOSITE */ + +/* USB Device handle structure */ +typedef struct _USBD_HandleTypeDef +{ + uint8_t id; + uint32_t dev_config; + uint32_t dev_default_config; + uint32_t dev_config_status; + USBD_SpeedTypeDef dev_speed; + USBD_EndpointTypeDef ep_in[16]; + USBD_EndpointTypeDef ep_out[16]; + __IO uint32_t ep0_state; + uint32_t ep0_data_len; + __IO uint8_t dev_state; + __IO uint8_t dev_old_state; + uint8_t dev_address; + uint8_t dev_connection_status; + uint8_t dev_test_mode; + uint32_t dev_remote_wakeup; + uint8_t ConfIdx; + + USBD_SetupReqTypedef request; + USBD_DescriptorsTypeDef *pDesc; + USBD_ClassTypeDef *pClass[USBD_MAX_SUPPORTED_CLASS]; + void *pClassData; + void *pClassDataCmsit[USBD_MAX_SUPPORTED_CLASS]; + void *pUserData[USBD_MAX_SUPPORTED_CLASS]; + void *pData; + void *pBosDesc; + void *pConfDesc; + uint32_t classId; + uint32_t NumClasses; +#ifdef USE_USBD_COMPOSITE + USBD_CompositeElementTypeDef tclasslist[USBD_MAX_SUPPORTED_CLASS]; +#endif /* USE_USBD_COMPOSITE */ +} USBD_HandleTypeDef; + +/* USB Device endpoint direction */ +typedef enum +{ + OUT = 0x00, + IN = 0x80, +} USBD_EPDirectionTypeDef; + +typedef enum +{ + NETWORK_CONNECTION = 0x00, + RESPONSE_AVAILABLE = 0x01, + CONNECTION_SPEED_CHANGE = 0x2A +} USBD_CDC_NotifCodeTypeDef; +/** + * @} + */ + + + +/** @defgroup USBD_DEF_Exported_Macros + * @{ + */ +__STATIC_INLINE uint16_t SWAPBYTE(uint8_t *addr) +{ + uint16_t _SwapVal, _Byte1, _Byte2; + uint8_t *_pbuff = addr; + + _Byte1 = *(uint8_t *)_pbuff; + _pbuff++; + _Byte2 = *(uint8_t *)_pbuff; + + _SwapVal = (_Byte2 << 8) | _Byte1; + + return _SwapVal; +} + +#ifndef LOBYTE +#define LOBYTE(x) ((uint8_t)((x) & 0x00FFU)) +#endif /* LOBYTE */ + +#ifndef HIBYTE +#define HIBYTE(x) ((uint8_t)(((x) & 0xFF00U) >> 8U)) +#endif /* HIBYTE */ + +#ifndef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif /* MIN */ + +#ifndef MAX +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif /* MAX */ + +#if defined ( __GNUC__ ) +#ifndef __weak +#define __weak __attribute__((weak)) +#endif /* __weak */ +#ifndef __packed +#define __packed __attribute__((__packed__)) +#endif /* __packed */ +#endif /* __GNUC__ */ + + +/* In HS mode and when the DMA is used, all variables and data structures dealing + with the DMA during the transaction process should be 4-bytes aligned */ + +#if defined ( __GNUC__ ) && !defined (__CC_ARM) /* GNU Compiler */ +#ifndef __ALIGN_END +#define __ALIGN_END __attribute__ ((aligned (4U))) +#endif /* __ALIGN_END */ +#ifndef __ALIGN_BEGIN +#define __ALIGN_BEGIN +#endif /* __ALIGN_BEGIN */ +#else +#ifndef __ALIGN_END +#define __ALIGN_END +#endif /* __ALIGN_END */ +#ifndef __ALIGN_BEGIN +#if defined (__CC_ARM) /* ARM Compiler */ +#define __ALIGN_BEGIN __align(4U) +#elif defined (__ICCARM__) /* IAR Compiler */ +#define __ALIGN_BEGIN +#endif /* __CC_ARM */ +#endif /* __ALIGN_BEGIN */ +#endif /* __GNUC__ */ + + +/** + * @} + */ + +/** @defgroup USBD_DEF_Exported_Variables + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_DEF_Exported_FunctionsPrototype + * @{ + */ + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __USBD_DEF_H */ + +/** + * @} + */ + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h new file mode 100644 index 0000000..15197b9 --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h @@ -0,0 +1,113 @@ +/** + ****************************************************************************** + * @file usbd_ioreq.h + * @author MCD Application Team + * @brief Header file for the usbd_ioreq.c file + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __USBD_IOREQ_H +#define __USBD_IOREQ_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_def.h" +#include "usbd_core.h" + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + +/** @defgroup USBD_IOREQ + * @brief header file for the usbd_ioreq.c file + * @{ + */ + +/** @defgroup USBD_IOREQ_Exported_Defines + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Exported_Types + * @{ + */ + + +/** + * @} + */ + + + +/** @defgroup USBD_IOREQ_Exported_Macros + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_IOREQ_Exported_Variables + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_IOREQ_Exported_FunctionsPrototype + * @{ + */ + +USBD_StatusTypeDef USBD_CtlSendData(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len); + +USBD_StatusTypeDef USBD_CtlContinueSendData(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len); + +USBD_StatusTypeDef USBD_CtlPrepareRx(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len); + +USBD_StatusTypeDef USBD_CtlContinueRx(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len); + +USBD_StatusTypeDef USBD_CtlSendStatus(USBD_HandleTypeDef *pdev); +USBD_StatusTypeDef USBD_CtlReceiveStatus(USBD_HandleTypeDef *pdev); + +uint32_t USBD_GetRxCount(USBD_HandleTypeDef *pdev, uint8_t ep_addr); + +/** + * @} + */ + +#ifdef __cplusplus +} +#endif + +#endif /* __USBD_IOREQ_H */ + +/** + * @} + */ + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c new file mode 100644 index 0000000..544c2a9 --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c @@ -0,0 +1,1220 @@ +/** + ****************************************************************************** + * @file usbd_core.c + * @author MCD Application Team + * @brief This file provides all the USBD core functions. + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_core.h" + +#ifdef USE_USBD_COMPOSITE +#include "usbd_composite_builder.h" +#endif /* USE_USBD_COMPOSITE */ + +/** @addtogroup STM32_USBD_DEVICE_LIBRARY + * @{ + */ + + +/** @defgroup USBD_CORE + * @brief usbd core module + * @{ + */ + +/** @defgroup USBD_CORE_Private_TypesDefinitions + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_CORE_Private_Defines + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_CORE_Private_Macros + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_CORE_Private_FunctionPrototypes + * @{ + */ + +/** + * @} + */ + +/** @defgroup USBD_CORE_Private_Variables + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_CORE_Private_Functions + * @{ + */ + +/** + * @brief USBD_Init + * Initializes the device stack and load the class driver + * @param pdev: device instance + * @param pdesc: Descriptor structure address + * @param id: Low level core index + * @retval None + */ +USBD_StatusTypeDef USBD_Init(USBD_HandleTypeDef *pdev, + USBD_DescriptorsTypeDef *pdesc, uint8_t id) +{ + USBD_StatusTypeDef ret; + + /* Check whether the USB Host handle is valid */ + if (pdev == NULL) + { +#if (USBD_DEBUG_LEVEL > 1U) + USBD_ErrLog("Invalid Device handle"); +#endif /* (USBD_DEBUG_LEVEL > 1U) */ + return USBD_FAIL; + } + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Unlink previous class*/ + pdev->pClass[i] = NULL; + pdev->pUserData[i] = NULL; + + /* Set class as inactive */ + pdev->tclasslist[i].Active = 0; + pdev->NumClasses = 0; + pdev->classId = 0; + } +#else + /* Unlink previous class*/ + pdev->pClass[0] = NULL; + pdev->pUserData[0] = NULL; +#endif /* USE_USBD_COMPOSITE */ + + pdev->pConfDesc = NULL; + + /* Assign USBD Descriptors */ + if (pdesc != NULL) + { + pdev->pDesc = pdesc; + } + + /* Set Device initial State */ + pdev->dev_state = USBD_STATE_DEFAULT; + pdev->id = id; + + /* Initialize low level driver */ + ret = USBD_LL_Init(pdev); + + return ret; +} + +/** + * @brief USBD_DeInit + * Re-Initialize the device library + * @param pdev: device instance + * @retval status: status + */ +USBD_StatusTypeDef USBD_DeInit(USBD_HandleTypeDef *pdev) +{ + USBD_StatusTypeDef ret; + + /* Disconnect the USB Device */ + (void)USBD_LL_Stop(pdev); + + /* Set Default State */ + pdev->dev_state = USBD_STATE_DEFAULT; + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Free Class Resources */ + pdev->pClass[i]->DeInit(pdev, (uint8_t)pdev->dev_config); + } + } + } +#else + /* Free Class Resources */ + if (pdev->pClass[0] != NULL) + { + pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config); + } + + pdev->pUserData[0] = NULL; + +#endif /* USE_USBD_COMPOSITE */ + + /* Free Device descriptors resources */ + pdev->pDesc = NULL; + pdev->pConfDesc = NULL; + + /* DeInitialize low level driver */ + ret = USBD_LL_DeInit(pdev); + + return ret; +} + +/** + * @brief USBD_RegisterClass + * Link class driver to Device Core. + * @param pDevice : Device Handle + * @param pclass: Class handle + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_RegisterClass(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass) +{ + uint16_t len = 0U; + + if (pclass == NULL) + { +#if (USBD_DEBUG_LEVEL > 1U) + USBD_ErrLog("Invalid Class handle"); +#endif /* (USBD_DEBUG_LEVEL > 1U) */ + return USBD_FAIL; + } + + /* link the class to the USB Device handle */ + pdev->pClass[0] = pclass; + + /* Get Device Configuration Descriptor */ +#ifdef USE_USB_HS + if (pdev->pClass[pdev->classId]->GetHSConfigDescriptor != NULL) + { + pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetHSConfigDescriptor(&len); + } +#else /* Default USE_USB_FS */ + if (pdev->pClass[pdev->classId]->GetFSConfigDescriptor != NULL) + { + pdev->pConfDesc = (void *)pdev->pClass[pdev->classId]->GetFSConfigDescriptor(&len); + } +#endif /* USE_USB_FS */ + + /* Increment the NumClasses */ + pdev->NumClasses ++; + + return USBD_OK; +} + +#ifdef USE_USBD_COMPOSITE +/** + * @brief USBD_RegisterClassComposite + * Link class driver to Device Core. + * @param pdev : Device Handle + * @param pclass: Class handle + * @param classtype: Class type + * @param EpAddr: Endpoint Address handle + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_RegisterClassComposite(USBD_HandleTypeDef *pdev, USBD_ClassTypeDef *pclass, + USBD_CompositeClassTypeDef classtype, uint8_t *EpAddr) +{ + USBD_StatusTypeDef ret = USBD_OK; + uint16_t len = 0U; + + if ((pdev->classId < USBD_MAX_SUPPORTED_CLASS) && (pdev->NumClasses < USBD_MAX_SUPPORTED_CLASS)) + { + if ((uint32_t)pclass != 0U) + { + /* Link the class to the USB Device handle */ + pdev->pClass[pdev->classId] = pclass; + ret = USBD_OK; + + pdev->tclasslist[pdev->classId].EpAdd = EpAddr; + + /* Call the composite class builder */ + (void)USBD_CMPSIT_AddClass(pdev, pclass, classtype, 0); + + /* Increment the ClassId for the next occurrence */ + pdev->classId ++; + pdev->NumClasses ++; + } + else + { +#if (USBD_DEBUG_LEVEL > 1U) + USBD_ErrLog("Invalid Class handle"); +#endif /* (USBD_DEBUG_LEVEL > 1U) */ + ret = USBD_FAIL; + } + } + + if (ret == USBD_OK) + { + /* Get Device Configuration Descriptor */ +#ifdef USE_USB_HS + pdev->pConfDesc = USBD_CMPSIT.GetHSConfigDescriptor(&len); +#else /* Default USE_USB_FS */ + pdev->pConfDesc = USBD_CMPSIT.GetFSConfigDescriptor(&len); +#endif /* USE_USB_FS */ + } + + return ret; +} + +/** + * @brief USBD_UnRegisterClassComposite + * UnLink all composite class drivers from Device Core. + * @param pDevice : Device Handle + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_UnRegisterClassComposite(USBD_HandleTypeDef *pdev) +{ + USBD_StatusTypeDef ret = USBD_FAIL; + uint8_t idx1; + uint8_t idx2; + + /* Unroll all activated classes */ + for (idx1 = 0; idx1 < pdev->NumClasses; idx1++) + { + /* Check if the class correspond to the requested type and if it is active */ + if (pdev->tclasslist[idx1].Active == 1U) + { + /* Set the new class ID */ + pdev->classId = idx1; + + /* Free resources used by the selected class */ + if (pdev->pClass[pdev->classId] != NULL) + { + /* Free Class Resources */ + if (pdev->pClass[pdev->classId]->DeInit(pdev, (uint8_t)pdev->dev_config) != 0U) + { +#if (USBD_DEBUG_LEVEL > 1U) + USBD_ErrLog("Class DeInit didn't succeed!, can't unregister selected class"); +#endif /* (USBD_DEBUG_LEVEL > 1U) */ + + ret = USBD_FAIL; + } + } + + /* Free the class pointer */ + pdev->pClass[pdev->classId] = NULL; + + /* Free the class location in classes table and reset its parameters to zero */ + pdev->tclasslist[pdev->classId].ClassType = CLASS_TYPE_NONE; + pdev->tclasslist[pdev->classId].ClassId = 0U; + pdev->tclasslist[pdev->classId].Active = 0U; + pdev->tclasslist[pdev->classId].NumEps = 0U; + pdev->tclasslist[pdev->classId].NumIf = 0U; + pdev->tclasslist[pdev->classId].CurrPcktSze = 0U; + + for (idx2 = 0U; idx2 < USBD_MAX_CLASS_ENDPOINTS; idx2++) + { + pdev->tclasslist[pdev->classId].Eps[idx2].add = 0U; + pdev->tclasslist[pdev->classId].Eps[idx2].type = 0U; + pdev->tclasslist[pdev->classId].Eps[idx2].size = 0U; + pdev->tclasslist[pdev->classId].Eps[idx2].is_used = 0U; + } + + for (idx2 = 0U; idx2 < USBD_MAX_CLASS_INTERFACES; idx2++) + { + pdev->tclasslist[pdev->classId].Ifs[idx2] = 0U; + } + } + } + + /* Reset the configuration descriptor */ + (void)USBD_CMPST_ClearConfDesc(pdev); + + /* Reset the class ID and number of classes */ + pdev->classId = 0U; + pdev->NumClasses = 0U; + + return ret; +} + + +#endif /* USE_USBD_COMPOSITE */ + +/** + * @brief USBD_Start + * Start the USB Device Core. + * @param pdev: Device Handle + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_Start(USBD_HandleTypeDef *pdev) +{ +#ifdef USE_USBD_COMPOSITE + pdev->classId = 0U; +#endif /* USE_USBD_COMPOSITE */ + + /* Start the low level driver */ + return USBD_LL_Start(pdev); +} + +/** + * @brief USBD_Stop + * Stop the USB Device Core. + * @param pdev: Device Handle + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_Stop(USBD_HandleTypeDef *pdev) +{ + /* Disconnect USB Device */ + (void)USBD_LL_Stop(pdev); + + /* Free Class Resources */ +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Free Class Resources */ + (void)pdev->pClass[i]->DeInit(pdev, (uint8_t)pdev->dev_config); + } + } + } + + /* Reset the class ID */ + pdev->classId = 0U; +#else + if (pdev->pClass[0] != NULL) + { + (void)pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config); + } +#endif /* USE_USBD_COMPOSITE */ + + return USBD_OK; +} + +/** + * @brief USBD_RunTestMode + * Launch test mode process + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_RunTestMode(USBD_HandleTypeDef *pdev) +{ +#ifdef USBD_HS_TESTMODE_ENABLE + USBD_StatusTypeDef ret; + + /* Run USB HS test mode */ + ret = USBD_LL_SetTestMode(pdev, pdev->dev_test_mode); + + return ret; +#else + /* Prevent unused argument compilation warning */ + UNUSED(pdev); + + return USBD_OK; +#endif /* USBD_HS_TESTMODE_ENABLE */ +} + +/** + * @brief USBD_SetClassConfig + * Configure device and start the interface + * @param pdev: device instance + * @param cfgidx: configuration index + * @retval status + */ + +USBD_StatusTypeDef USBD_SetClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) +{ + USBD_StatusTypeDef ret = USBD_OK; + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Set configuration and Start the Class*/ + if (pdev->pClass[i]->Init(pdev, cfgidx) != 0U) + { + ret = USBD_FAIL; + } + } + } + } +#else + if (pdev->pClass[0] != NULL) + { + /* Set configuration and Start the Class */ + ret = (USBD_StatusTypeDef)pdev->pClass[0]->Init(pdev, cfgidx); + } +#endif /* USE_USBD_COMPOSITE */ + + return ret; +} + +/** + * @brief USBD_ClrClassConfig + * Clear current configuration + * @param pdev: device instance + * @param cfgidx: configuration index + * @retval status: USBD_StatusTypeDef + */ +USBD_StatusTypeDef USBD_ClrClassConfig(USBD_HandleTypeDef *pdev, uint8_t cfgidx) +{ + USBD_StatusTypeDef ret = USBD_OK; + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Clear configuration and De-initialize the Class process */ + if (pdev->pClass[i]->DeInit(pdev, cfgidx) != 0U) + { + ret = USBD_FAIL; + } + } + } + } +#else + /* Clear configuration and De-initialize the Class process */ + if (pdev->pClass[0]->DeInit(pdev, cfgidx) != 0U) + { + ret = USBD_FAIL; + } +#endif /* USE_USBD_COMPOSITE */ + + return ret; +} + + +/** + * @brief USBD_LL_SetupStage + * Handle the setup stage + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup) +{ + USBD_StatusTypeDef ret; + + USBD_ParseSetupRequest(&pdev->request, psetup); + + pdev->ep0_state = USBD_EP0_SETUP; + + pdev->ep0_data_len = pdev->request.wLength; + + switch (pdev->request.bmRequest & 0x1FU) + { + case USB_REQ_RECIPIENT_DEVICE: + ret = USBD_StdDevReq(pdev, &pdev->request); + break; + + case USB_REQ_RECIPIENT_INTERFACE: + ret = USBD_StdItfReq(pdev, &pdev->request); + break; + + case USB_REQ_RECIPIENT_ENDPOINT: + ret = USBD_StdEPReq(pdev, &pdev->request); + break; + + default: + ret = USBD_LL_StallEP(pdev, (pdev->request.bmRequest & 0x80U)); + break; + } + + return ret; +} + +/** + * @brief USBD_LL_DataOutStage + * Handle data OUT stage + * @param pdev: device instance + * @param epnum: endpoint index + * @param pdata: data pointer + * @retval status + */ +USBD_StatusTypeDef USBD_LL_DataOutStage(USBD_HandleTypeDef *pdev, + uint8_t epnum, uint8_t *pdata) +{ + USBD_EndpointTypeDef *pep; + USBD_StatusTypeDef ret = USBD_OK; + uint8_t idx; + + if (epnum == 0U) + { + pep = &pdev->ep_out[0]; + + if (pdev->ep0_state == USBD_EP0_DATA_OUT) + { + if (pep->rem_length > pep->maxpacket) + { + pep->rem_length -= pep->maxpacket; + + (void)USBD_CtlContinueRx(pdev, pdata, MIN(pep->rem_length, pep->maxpacket)); + } + else + { + /* Find the class ID relative to the current request */ + switch (pdev->request.bmRequest & 0x1FU) + { + case USB_REQ_RECIPIENT_DEVICE: + /* Device requests must be managed by the first instantiated class + (or duplicated by all classes for simplicity) */ + idx = 0U; + break; + + case USB_REQ_RECIPIENT_INTERFACE: + idx = USBD_CoreFindIF(pdev, LOBYTE(pdev->request.wIndex)); + break; + + case USB_REQ_RECIPIENT_ENDPOINT: + idx = USBD_CoreFindEP(pdev, LOBYTE(pdev->request.wIndex)); + break; + + default: + /* Back to the first class in case of doubt */ + idx = 0U; + break; + } + + if (idx < USBD_MAX_SUPPORTED_CLASS) + { + /* Setup the class ID and route the request to the relative class function */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[idx]->EP0_RxReady != NULL) + { + pdev->classId = idx; + pdev->pClass[idx]->EP0_RxReady(pdev); + } + } + } + + (void)USBD_CtlSendStatus(pdev); + } + } + else + { +#if 0 + if (pdev->ep0_state == USBD_EP0_STATUS_OUT) + { + /* + * STATUS PHASE completed, update ep0_state to idle + */ + pdev->ep0_state = USBD_EP0_IDLE; + (void)USBD_LL_StallEP(pdev, 0U); + } +#endif + } + } + else + { + /* Get the class index relative to this interface */ + idx = USBD_CoreFindEP(pdev, (epnum & 0x7FU)); + + if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + { + /* Call the class data out function to manage the request */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[idx]->DataOut != NULL) + { + pdev->classId = idx; + ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataOut(pdev, epnum); + } + } + if (ret != USBD_OK) + { + return ret; + } + } + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_DataInStage + * Handle data in stage + * @param pdev: device instance + * @param epnum: endpoint index + * @retval status + */ +USBD_StatusTypeDef USBD_LL_DataInStage(USBD_HandleTypeDef *pdev, + uint8_t epnum, uint8_t *pdata) +{ + USBD_EndpointTypeDef *pep; + USBD_StatusTypeDef ret; + uint8_t idx; + + if (epnum == 0U) + { + pep = &pdev->ep_in[0]; + + if (pdev->ep0_state == USBD_EP0_DATA_IN) + { + if (pep->rem_length > pep->maxpacket) + { + pep->rem_length -= pep->maxpacket; + + (void)USBD_CtlContinueSendData(pdev, pdata, pep->rem_length); + + /* Prepare endpoint for premature end of transfer */ + (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); + } + else + { + /* last packet is MPS multiple, so send ZLP packet */ + if ((pep->maxpacket == pep->rem_length) && + (pep->total_length >= pep->maxpacket) && + (pep->total_length < pdev->ep0_data_len)) + { + (void)USBD_CtlContinueSendData(pdev, NULL, 0U); + pdev->ep0_data_len = 0U; + + /* Prepare endpoint for premature end of transfer */ + (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); + } + else + { + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[0]->EP0_TxSent != NULL) + { + pdev->classId = 0U; + pdev->pClass[0]->EP0_TxSent(pdev); + } + } + (void)USBD_LL_StallEP(pdev, 0x80U); + (void)USBD_CtlReceiveStatus(pdev); + } + } + } + else + { +#if 0 + if ((pdev->ep0_state == USBD_EP0_STATUS_IN) || + (pdev->ep0_state == USBD_EP0_IDLE)) + { + (void)USBD_LL_StallEP(pdev, 0x80U); + } +#endif + } + + if (pdev->dev_test_mode != 0U) + { + (void)USBD_RunTestMode(pdev); + pdev->dev_test_mode = 0U; + } + } + else + { + /* Get the class index relative to this interface */ + idx = USBD_CoreFindEP(pdev, ((uint8_t)epnum | 0x80U)); + + if (((uint16_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + { + /* Call the class data out function to manage the request */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[idx]->DataIn != NULL) + { + pdev->classId = idx; + ret = (USBD_StatusTypeDef)pdev->pClass[idx]->DataIn(pdev, epnum); + + if (ret != USBD_OK) + { + return ret; + } + } + } + } + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_Reset + * Handle Reset event + * @param pdev: device instance + * @retval status + */ + +USBD_StatusTypeDef USBD_LL_Reset(USBD_HandleTypeDef *pdev) +{ + USBD_StatusTypeDef ret = USBD_OK; + + /* Upon Reset call user call back */ + pdev->dev_state = USBD_STATE_DEFAULT; + pdev->ep0_state = USBD_EP0_IDLE; + pdev->dev_config = 0U; + pdev->dev_remote_wakeup = 0U; + pdev->dev_test_mode = 0U; + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Clear configuration and De-initialize the Class process*/ + + if (pdev->pClass[i]->DeInit != NULL) + { + if (pdev->pClass[i]->DeInit(pdev, (uint8_t)pdev->dev_config) != USBD_OK) + { + ret = USBD_FAIL; + } + } + } + } + } +#else + + if (pdev->pClass[0] != NULL) + { + if (pdev->pClass[0]->DeInit != NULL) + { + if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != USBD_OK) + { + ret = USBD_FAIL; + } + } + } +#endif /* USE_USBD_COMPOSITE */ + + /* Open EP0 OUT */ + (void)USBD_LL_OpenEP(pdev, 0x00U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); + pdev->ep_out[0x00U & 0xFU].is_used = 1U; + + pdev->ep_out[0].maxpacket = USB_MAX_EP0_SIZE; + + /* Open EP0 IN */ + (void)USBD_LL_OpenEP(pdev, 0x80U, USBD_EP_TYPE_CTRL, USB_MAX_EP0_SIZE); + pdev->ep_in[0x80U & 0xFU].is_used = 1U; + + pdev->ep_in[0].maxpacket = USB_MAX_EP0_SIZE; + + return ret; +} + +/** + * @brief USBD_LL_SetSpeed + * Handle Reset event + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_SetSpeed(USBD_HandleTypeDef *pdev, + USBD_SpeedTypeDef speed) +{ + pdev->dev_speed = speed; + + return USBD_OK; +} + +/** + * @brief USBD_LL_Suspend + * Handle Suspend event + * @param pdev: device instance + * @retval status + */ + +USBD_StatusTypeDef USBD_LL_Suspend(USBD_HandleTypeDef *pdev) +{ + pdev->dev_old_state = pdev->dev_state; + pdev->dev_state = USBD_STATE_SUSPENDED; + + return USBD_OK; +} + +/** + * @brief USBD_LL_Resume + * Handle Resume event + * @param pdev: device instance + * @retval status + */ + +USBD_StatusTypeDef USBD_LL_Resume(USBD_HandleTypeDef *pdev) +{ + if (pdev->dev_state == USBD_STATE_SUSPENDED) + { + pdev->dev_state = pdev->dev_old_state; + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_SOF + * Handle SOF event + * @param pdev: device instance + * @retval status + */ + +USBD_StatusTypeDef USBD_LL_SOF(USBD_HandleTypeDef *pdev) +{ + /* The SOF event can be distributed for all classes that support it */ + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + if (pdev->pClass[i]->SOF != NULL) + { + pdev->classId = i; + (void)pdev->pClass[i]->SOF(pdev); + } + } + } + } +#else + if (pdev->pClass[0] != NULL) + { + if (pdev->pClass[0]->SOF != NULL) + { + (void)pdev->pClass[0]->SOF(pdev); + } + } +#endif /* USE_USBD_COMPOSITE */ + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_IsoINIncomplete + * Handle iso in incomplete event + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_IsoINIncomplete(USBD_HandleTypeDef *pdev, + uint8_t epnum) +{ + if (pdev->pClass[pdev->classId] == NULL) + { + return USBD_FAIL; + } + + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[pdev->classId]->IsoINIncomplete != NULL) + { + (void)pdev->pClass[pdev->classId]->IsoINIncomplete(pdev, epnum); + } + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_IsoOUTIncomplete + * Handle iso out incomplete event + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_IsoOUTIncomplete(USBD_HandleTypeDef *pdev, + uint8_t epnum) +{ + if (pdev->pClass[pdev->classId] == NULL) + { + return USBD_FAIL; + } + + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + if (pdev->pClass[pdev->classId]->IsoOUTIncomplete != NULL) + { + (void)pdev->pClass[pdev->classId]->IsoOUTIncomplete(pdev, epnum); + } + } + + return USBD_OK; +} + +/** + * @brief USBD_LL_DevConnected + * Handle device connection event + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_DevConnected(USBD_HandleTypeDef *pdev) +{ + /* Prevent unused argument compilation warning */ + UNUSED(pdev); + + return USBD_OK; +} + +/** + * @brief USBD_LL_DevDisconnected + * Handle device disconnection event + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_LL_DevDisconnected(USBD_HandleTypeDef *pdev) +{ + USBD_StatusTypeDef ret = USBD_OK; + + /* Free Class Resources */ + pdev->dev_state = USBD_STATE_DEFAULT; + +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + if (pdev->pClass[i] != NULL) + { + pdev->classId = i; + /* Clear configuration and De-initialize the Class process*/ + if (pdev->pClass[i]->DeInit(pdev, (uint8_t)pdev->dev_config) != 0U) + { + ret = USBD_FAIL; + } + } + } + } +#else + if (pdev->pClass[0] != NULL) + { + if (pdev->pClass[0]->DeInit(pdev, (uint8_t)pdev->dev_config) != 0U) + { + ret = USBD_FAIL; + } + } +#endif /* USE_USBD_COMPOSITE */ + + return ret; +} + +/** + * @brief USBD_CoreFindIF + * return the class index relative to the selected interface + * @param pdev: device instance + * @param index : selected interface number + * @retval index of the class using the selected interface number. OxFF if no class found. + */ +uint8_t USBD_CoreFindIF(USBD_HandleTypeDef *pdev, uint8_t index) +{ +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + /* Parse all interfaces listed in the current class */ + for (uint32_t j = 0U; j < pdev->tclasslist[i].NumIf; j++) + { + /* Check if requested Interface matches the current class interface */ + if (pdev->tclasslist[i].Ifs[j] == index) + { + if (pdev->pClass[i]->Setup != NULL) + { + return (uint8_t)i; + } + } + } + } + } + + return 0xFFU; +#else + UNUSED(pdev); + UNUSED(index); + + return 0x00U; +#endif /* USE_USBD_COMPOSITE */ +} + +/** + * @brief USBD_CoreFindEP + * return the class index relative to the selected endpoint + * @param pdev: device instance + * @param index : selected endpoint number + * @retval index of the class using the selected endpoint number. 0xFF if no class found. + */ +uint8_t USBD_CoreFindEP(USBD_HandleTypeDef *pdev, uint8_t index) +{ +#ifdef USE_USBD_COMPOSITE + /* Parse the table of classes in use */ + for (uint32_t i = 0U; i < USBD_MAX_SUPPORTED_CLASS; i++) + { + /* Check if current class is in use */ + if ((pdev->tclasslist[i].Active) == 1U) + { + /* Parse all endpoints listed in the current class */ + for (uint32_t j = 0U; j < pdev->tclasslist[i].NumEps; j++) + { + /* Check if requested endpoint matches the current class endpoint */ + if (pdev->tclasslist[i].Eps[j].add == index) + { + if (pdev->pClass[i]->Setup != NULL) + { + return (uint8_t)i; + } + } + } + } + } + + return 0xFFU; +#else + UNUSED(pdev); + UNUSED(index); + + return 0x00U; +#endif /* USE_USBD_COMPOSITE */ +} + +#ifdef USE_USBD_COMPOSITE +/** + * @brief USBD_CoreGetEPAdd + * Get the endpoint address relative to a selected class + * @param pdev: device instance + * @param ep_dir: USBD_EP_IN or USBD_EP_OUT + * @param ep_type: USBD_EP_TYPE_CTRL, USBD_EP_TYPE_ISOC, USBD_EP_TYPE_BULK or USBD_EP_TYPE_INTR + * @retval Address of the selected endpoint or 0xFFU if no endpoint found. + */ +uint8_t USBD_CoreGetEPAdd(USBD_HandleTypeDef *pdev, uint8_t ep_dir, uint8_t ep_type) +{ + uint8_t idx; + + /* Find the EP address in the selected class table */ + for (idx = 0; idx < pdev->tclasslist[pdev->classId].NumEps; idx++) + { + if (((pdev->tclasslist[pdev->classId].Eps[idx].add & USBD_EP_IN) == ep_dir) && \ + (pdev->tclasslist[pdev->classId].Eps[idx].type == ep_type) && \ + (pdev->tclasslist[pdev->classId].Eps[idx].is_used != 0U)) + { + return (pdev->tclasslist[pdev->classId].Eps[idx].add); + } + } + + /* If reaching this point, then no endpoint was found */ + return 0xFFU; +} +#endif /* USE_USBD_COMPOSITE */ + +/** + * @brief USBD_GetEpDesc + * This function return the Endpoint descriptor + * @param pdev: device instance + * @param pConfDesc: pointer to Bos descriptor + * @param EpAddr: endpoint address + * @retval pointer to video endpoint descriptor + */ +void *USBD_GetEpDesc(uint8_t *pConfDesc, uint8_t EpAddr) +{ + USBD_DescHeaderTypeDef *pdesc = (USBD_DescHeaderTypeDef *)(void *)pConfDesc; + USBD_ConfigDescTypeDef *desc = (USBD_ConfigDescTypeDef *)(void *)pConfDesc; + USBD_EpDescTypeDef *pEpDesc = NULL; + uint16_t ptr; + + if (desc->wTotalLength > desc->bLength) + { + ptr = desc->bLength; + + while (ptr < desc->wTotalLength) + { + pdesc = USBD_GetNextDesc((uint8_t *)pdesc, &ptr); + + if (pdesc->bDescriptorType == USB_DESC_TYPE_ENDPOINT) + { + pEpDesc = (USBD_EpDescTypeDef *)(void *)pdesc; + + if (pEpDesc->bEndpointAddress == EpAddr) + { + break; + } + else + { + pEpDesc = NULL; + } + } + } + } + + return (void *)pEpDesc; +} + +/** + * @brief USBD_GetNextDesc + * This function return the next descriptor header + * @param buf: Buffer where the descriptor is available + * @param ptr: data pointer inside the descriptor + * @retval next header + */ +USBD_DescHeaderTypeDef *USBD_GetNextDesc(uint8_t *pbuf, uint16_t *ptr) +{ + USBD_DescHeaderTypeDef *pnext = (USBD_DescHeaderTypeDef *)(void *)pbuf; + + *ptr += pnext->bLength; + pnext = (USBD_DescHeaderTypeDef *)(void *)(pbuf + pnext->bLength); + + return (pnext); +} + +/** + * @} + */ + + +/** + * @} + */ + + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c new file mode 100644 index 0000000..c733647 --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c @@ -0,0 +1,1051 @@ +/** + ****************************************************************************** + * @file usbd_req.c + * @author MCD Application Team + * @brief This file provides the standard USB requests following chapter 9. + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_ctlreq.h" +#include "usbd_ioreq.h" + +#ifdef USE_USBD_COMPOSITE +#include "usbd_composite_builder.h" +#endif /* USE_USBD_COMPOSITE */ + +/** @addtogroup STM32_USBD_STATE_DEVICE_LIBRARY + * @{ + */ + + +/** @defgroup USBD_REQ + * @brief USB standard requests module + * @{ + */ + +/** @defgroup USBD_REQ_Private_TypesDefinitions + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_REQ_Private_Defines + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_REQ_Private_Macros + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_REQ_Private_Variables + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_REQ_Private_FunctionPrototypes + * @{ + */ +static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static void USBD_SetAddress(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static USBD_StatusTypeDef USBD_SetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static void USBD_GetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static void USBD_GetStatus(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static void USBD_SetFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static void USBD_ClrFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req); +static uint8_t USBD_GetLen(uint8_t *buf); + +/** + * @} + */ + + +/** @defgroup USBD_REQ_Private_Functions + * @{ + */ + + +/** + * @brief USBD_StdDevReq + * Handle standard usb device requests + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +USBD_StatusTypeDef USBD_StdDevReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + USBD_StatusTypeDef ret = USBD_OK; + + switch (req->bmRequest & USB_REQ_TYPE_MASK) + { + case USB_REQ_TYPE_CLASS: + case USB_REQ_TYPE_VENDOR: + ret = (USBD_StatusTypeDef)pdev->pClass[pdev->classId]->Setup(pdev, req); + break; + + case USB_REQ_TYPE_STANDARD: + switch (req->bRequest) + { + case USB_REQ_GET_DESCRIPTOR: + USBD_GetDescriptor(pdev, req); + break; + + case USB_REQ_SET_ADDRESS: + USBD_SetAddress(pdev, req); + break; + + case USB_REQ_SET_CONFIGURATION: + ret = USBD_SetConfig(pdev, req); + break; + + case USB_REQ_GET_CONFIGURATION: + USBD_GetConfig(pdev, req); + break; + + case USB_REQ_GET_STATUS: + USBD_GetStatus(pdev, req); + break; + + case USB_REQ_SET_FEATURE: + USBD_SetFeature(pdev, req); + break; + + case USB_REQ_CLEAR_FEATURE: + USBD_ClrFeature(pdev, req); + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + + return ret; +} + +/** + * @brief USBD_StdItfReq + * Handle standard usb interface requests + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +USBD_StatusTypeDef USBD_StdItfReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + USBD_StatusTypeDef ret = USBD_OK; + uint8_t idx; + + switch (req->bmRequest & USB_REQ_TYPE_MASK) + { + case USB_REQ_TYPE_CLASS: + case USB_REQ_TYPE_VENDOR: + case USB_REQ_TYPE_STANDARD: + switch (pdev->dev_state) + { + case USBD_STATE_DEFAULT: + case USBD_STATE_ADDRESSED: + case USBD_STATE_CONFIGURED: + + if (LOBYTE(req->wIndex) <= USBD_MAX_NUM_INTERFACES) + { + /* Get the class index relative to this interface */ + idx = USBD_CoreFindIF(pdev, LOBYTE(req->wIndex)); + if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + { + /* Call the class data out function to manage the request */ + if (pdev->pClass[idx]->Setup != NULL) + { + pdev->classId = idx; + ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); + } + else + { + /* should never reach this condition */ + ret = USBD_FAIL; + } + } + else + { + /* No relative interface found */ + ret = USBD_FAIL; + } + + if ((req->wLength == 0U) && (ret == USBD_OK)) + { + (void)USBD_CtlSendStatus(pdev); + } + } + else + { + USBD_CtlError(pdev, req); + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + + return ret; +} + +/** + * @brief USBD_StdEPReq + * Handle standard usb endpoint requests + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +USBD_StatusTypeDef USBD_StdEPReq(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + USBD_EndpointTypeDef *pep; + uint8_t ep_addr; + uint8_t idx; + USBD_StatusTypeDef ret = USBD_OK; + + ep_addr = LOBYTE(req->wIndex); + + switch (req->bmRequest & USB_REQ_TYPE_MASK) + { + case USB_REQ_TYPE_CLASS: + case USB_REQ_TYPE_VENDOR: + /* Get the class index relative to this endpoint */ + idx = USBD_CoreFindEP(pdev, ep_addr); + if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + { + pdev->classId = idx; + /* Call the class data out function to manage the request */ + if (pdev->pClass[idx]->Setup != NULL) + { + ret = (USBD_StatusTypeDef)pdev->pClass[idx]->Setup(pdev, req); + } + } + break; + + case USB_REQ_TYPE_STANDARD: + switch (req->bRequest) + { + case USB_REQ_SET_FEATURE: + switch (pdev->dev_state) + { + case USBD_STATE_ADDRESSED: + if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) + { + (void)USBD_LL_StallEP(pdev, ep_addr); + (void)USBD_LL_StallEP(pdev, 0x80U); + } + else + { + USBD_CtlError(pdev, req); + } + break; + + case USBD_STATE_CONFIGURED: + if (req->wValue == USB_FEATURE_EP_HALT) + { + if ((ep_addr != 0x00U) && (ep_addr != 0x80U) && (req->wLength == 0x00U)) + { + (void)USBD_LL_StallEP(pdev, ep_addr); + } + } + (void)USBD_CtlSendStatus(pdev); + + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + case USB_REQ_CLEAR_FEATURE: + + switch (pdev->dev_state) + { + case USBD_STATE_ADDRESSED: + if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) + { + (void)USBD_LL_StallEP(pdev, ep_addr); + (void)USBD_LL_StallEP(pdev, 0x80U); + } + else + { + USBD_CtlError(pdev, req); + } + break; + + case USBD_STATE_CONFIGURED: + if (req->wValue == USB_FEATURE_EP_HALT) + { + if ((ep_addr & 0x7FU) != 0x00U) + { + (void)USBD_LL_ClearStallEP(pdev, ep_addr); + } + (void)USBD_CtlSendStatus(pdev); + + /* Get the class index relative to this interface */ + idx = USBD_CoreFindEP(pdev, ep_addr); + if (((uint8_t)idx != 0xFFU) && (idx < USBD_MAX_SUPPORTED_CLASS)) + { + pdev->classId = idx; + /* Call the class data out function to manage the request */ + if (pdev->pClass[idx]->Setup != NULL) + { + ret = (USBD_StatusTypeDef)(pdev->pClass[idx]->Setup(pdev, req)); + } + } + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + case USB_REQ_GET_STATUS: + switch (pdev->dev_state) + { + case USBD_STATE_ADDRESSED: + if ((ep_addr != 0x00U) && (ep_addr != 0x80U)) + { + USBD_CtlError(pdev, req); + break; + } + pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ + &pdev->ep_out[ep_addr & 0x7FU]; + + pep->status = 0x0000U; + + (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); + break; + + case USBD_STATE_CONFIGURED: + if ((ep_addr & 0x80U) == 0x80U) + { + if (pdev->ep_in[ep_addr & 0xFU].is_used == 0U) + { + USBD_CtlError(pdev, req); + break; + } + } + else + { + if (pdev->ep_out[ep_addr & 0xFU].is_used == 0U) + { + USBD_CtlError(pdev, req); + break; + } + } + + pep = ((ep_addr & 0x80U) == 0x80U) ? &pdev->ep_in[ep_addr & 0x7FU] : \ + &pdev->ep_out[ep_addr & 0x7FU]; + + if ((ep_addr == 0x00U) || (ep_addr == 0x80U)) + { + pep->status = 0x0000U; + } + else if (USBD_LL_IsStallEP(pdev, ep_addr) != 0U) + { + pep->status = 0x0001U; + } + else + { + pep->status = 0x0000U; + } + + (void)USBD_CtlSendData(pdev, (uint8_t *)&pep->status, 2U); + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } + + return ret; +} + + +/** + * @brief USBD_GetDescriptor + * Handle Get Descriptor requests + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + uint16_t len = 0U; + uint8_t *pbuf = NULL; + uint8_t err = 0U; + + switch (req->wValue >> 8) + { +#if ((USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U)) + case USB_DESC_TYPE_BOS: + if (pdev->pDesc->GetBOSDescriptor != NULL) + { + pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; +#endif /* (USBD_LPM_ENABLED == 1U) || (USBD_CLASS_BOS_ENABLED == 1U) */ + case USB_DESC_TYPE_DEVICE: + pbuf = pdev->pDesc->GetDeviceDescriptor(pdev->dev_speed, &len); + break; + + case USB_DESC_TYPE_CONFIGURATION: + if (pdev->dev_speed == USBD_SPEED_HIGH) + { +#ifdef USE_USBD_COMPOSITE + if ((uint8_t)(pdev->NumClasses) > 0U) + { + pbuf = (uint8_t *)USBD_CMPSIT.GetHSConfigDescriptor(&len); + } + else +#endif /* USE_USBD_COMPOSITE */ + { + pbuf = (uint8_t *)pdev->pClass[0]->GetHSConfigDescriptor(&len); + } + pbuf[1] = USB_DESC_TYPE_CONFIGURATION; + } + else + { +#ifdef USE_USBD_COMPOSITE + if ((uint8_t)(pdev->NumClasses) > 0U) + { + pbuf = (uint8_t *)USBD_CMPSIT.GetFSConfigDescriptor(&len); + } + else +#endif /* USE_USBD_COMPOSITE */ + { + pbuf = (uint8_t *)pdev->pClass[0]->GetFSConfigDescriptor(&len); + } + pbuf[1] = USB_DESC_TYPE_CONFIGURATION; + } + break; + + case USB_DESC_TYPE_STRING: + switch ((uint8_t)(req->wValue)) + { + case USBD_IDX_LANGID_STR: + if (pdev->pDesc->GetLangIDStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetLangIDStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USBD_IDX_MFC_STR: + if (pdev->pDesc->GetManufacturerStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetManufacturerStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USBD_IDX_PRODUCT_STR: + if (pdev->pDesc->GetProductStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetProductStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USBD_IDX_SERIAL_STR: + if (pdev->pDesc->GetSerialStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetSerialStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USBD_IDX_CONFIG_STR: + if (pdev->pDesc->GetConfigurationStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetConfigurationStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USBD_IDX_INTERFACE_STR: + if (pdev->pDesc->GetInterfaceStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetInterfaceStrDescriptor(pdev->dev_speed, &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + default: +#if (USBD_SUPPORT_USER_STRING_DESC == 1U) + pbuf = NULL; + + + for (uint32_t idx = 0U; (idx < pdev->NumClasses); idx++) + { + if (pdev->pClass[idx]->GetUsrStrDescriptor != NULL) + { + pdev->classId = idx; + pbuf = pdev->pClass[idx]->GetUsrStrDescriptor(pdev, LOBYTE(req->wValue), &len); + + if (pbuf == NULL) /* This means that no class recognized the string index */ + { + continue; + } + else + { + break; + } + } + } + +#endif /* USBD_SUPPORT_USER_STRING_DESC */ + +#if (USBD_CLASS_USER_STRING_DESC == 1U) + if (pdev->pDesc->GetUserStrDescriptor != NULL) + { + pbuf = pdev->pDesc->GetUserStrDescriptor(pdev->dev_speed, (req->wValue), &len); + } + else + { + USBD_CtlError(pdev, req); + err++; + } +#endif /* USBD_SUPPORT_USER_STRING_DESC */ + +#if ((USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U)) + USBD_CtlError(pdev, req); + err++; +#endif /* (USBD_CLASS_USER_STRING_DESC == 0U) && (USBD_SUPPORT_USER_STRING_DESC == 0U) */ + break; + } + break; + + case USB_DESC_TYPE_DEVICE_QUALIFIER: + if (pdev->dev_speed == USBD_SPEED_HIGH) + { +#ifdef USE_USBD_COMPOSITE + if ((uint8_t)(pdev->NumClasses) > 0U) + { + pbuf = (uint8_t *)USBD_CMPSIT.GetDeviceQualifierDescriptor(&len); + } + else +#endif /* USE_USBD_COMPOSITE */ + { + pbuf = (uint8_t *)pdev->pClass[0]->GetDeviceQualifierDescriptor(&len); + } + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + case USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION: + if (pdev->dev_speed == USBD_SPEED_HIGH) + { +#ifdef USE_USBD_COMPOSITE + if ((uint8_t)(pdev->NumClasses) > 0U) + { + pbuf = (uint8_t *)USBD_CMPSIT.GetOtherSpeedConfigDescriptor(&len); + } + else +#endif /* USE_USBD_COMPOSITE */ + { + pbuf = (uint8_t *)pdev->pClass[0]->GetOtherSpeedConfigDescriptor(&len); + } + pbuf[1] = USB_DESC_TYPE_OTHER_SPEED_CONFIGURATION; + } + else + { + USBD_CtlError(pdev, req); + err++; + } + break; + + default: + USBD_CtlError(pdev, req); + err++; + break; + } + + if (err != 0U) + { + return; + } + + if (req->wLength != 0U) + { + if (len != 0U) + { + len = MIN(len, req->wLength); + (void)USBD_CtlSendData(pdev, pbuf, len); + } + else + { + USBD_CtlError(pdev, req); + } + } + else + { + (void)USBD_CtlSendStatus(pdev); + } +} + + +/** + * @brief USBD_SetAddress + * Set device address + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_SetAddress(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + uint8_t dev_addr; + + if ((req->wIndex == 0U) && (req->wLength == 0U) && (req->wValue < 128U)) + { + dev_addr = (uint8_t)(req->wValue) & 0x7FU; + + if (pdev->dev_state == USBD_STATE_CONFIGURED) + { + USBD_CtlError(pdev, req); + } + else + { + pdev->dev_address = dev_addr; + (void)USBD_LL_SetUSBAddress(pdev, dev_addr); + (void)USBD_CtlSendStatus(pdev); + + if (dev_addr != 0U) + { + pdev->dev_state = USBD_STATE_ADDRESSED; + } + else + { + pdev->dev_state = USBD_STATE_DEFAULT; + } + } + } + else + { + USBD_CtlError(pdev, req); + } +} + +/** + * @brief USBD_SetConfig + * Handle Set device configuration request + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static USBD_StatusTypeDef USBD_SetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + USBD_StatusTypeDef ret = USBD_OK; + static uint8_t cfgidx; + + cfgidx = (uint8_t)(req->wValue); + + if (cfgidx > USBD_MAX_NUM_CONFIGURATION) + { + USBD_CtlError(pdev, req); + return USBD_FAIL; + } + + switch (pdev->dev_state) + { + case USBD_STATE_ADDRESSED: + if (cfgidx != 0U) + { + pdev->dev_config = cfgidx; + + ret = USBD_SetClassConfig(pdev, cfgidx); + + if (ret != USBD_OK) + { + USBD_CtlError(pdev, req); + pdev->dev_state = USBD_STATE_ADDRESSED; + } + else + { + (void)USBD_CtlSendStatus(pdev); + pdev->dev_state = USBD_STATE_CONFIGURED; + } + } + else + { + (void)USBD_CtlSendStatus(pdev); + } + break; + + case USBD_STATE_CONFIGURED: + if (cfgidx == 0U) + { + pdev->dev_state = USBD_STATE_ADDRESSED; + pdev->dev_config = cfgidx; + (void)USBD_ClrClassConfig(pdev, cfgidx); + (void)USBD_CtlSendStatus(pdev); + } + else if (cfgidx != pdev->dev_config) + { + /* Clear old configuration */ + (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); + + /* set new configuration */ + pdev->dev_config = cfgidx; + + ret = USBD_SetClassConfig(pdev, cfgidx); + + if (ret != USBD_OK) + { + USBD_CtlError(pdev, req); + (void)USBD_ClrClassConfig(pdev, (uint8_t)pdev->dev_config); + pdev->dev_state = USBD_STATE_ADDRESSED; + } + else + { + (void)USBD_CtlSendStatus(pdev); + } + } + else + { + (void)USBD_CtlSendStatus(pdev); + } + break; + + default: + USBD_CtlError(pdev, req); + (void)USBD_ClrClassConfig(pdev, cfgidx); + ret = USBD_FAIL; + break; + } + + return ret; +} + +/** + * @brief USBD_GetConfig + * Handle Get device configuration request + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_GetConfig(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + if (req->wLength != 1U) + { + USBD_CtlError(pdev, req); + } + else + { + switch (pdev->dev_state) + { + case USBD_STATE_DEFAULT: + case USBD_STATE_ADDRESSED: + pdev->dev_default_config = 0U; + (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_default_config, 1U); + break; + + case USBD_STATE_CONFIGURED: + (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config, 1U); + break; + + default: + USBD_CtlError(pdev, req); + break; + } + } +} + +/** + * @brief USBD_GetStatus + * Handle Get Status request + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_GetStatus(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + switch (pdev->dev_state) + { + case USBD_STATE_DEFAULT: + case USBD_STATE_ADDRESSED: + case USBD_STATE_CONFIGURED: + if (req->wLength != 0x2U) + { + USBD_CtlError(pdev, req); + break; + } + +#if (USBD_SELF_POWERED == 1U) + pdev->dev_config_status = USB_CONFIG_SELF_POWERED; +#else + pdev->dev_config_status = 0U; +#endif /* USBD_SELF_POWERED */ + + if (pdev->dev_remote_wakeup != 0U) + { + pdev->dev_config_status |= USB_CONFIG_REMOTE_WAKEUP; + } + + (void)USBD_CtlSendData(pdev, (uint8_t *)&pdev->dev_config_status, 2U); + break; + + default: + USBD_CtlError(pdev, req); + break; + } +} + + +/** + * @brief USBD_SetFeature + * Handle Set device feature request + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_SetFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) + { + pdev->dev_remote_wakeup = 1U; + (void)USBD_CtlSendStatus(pdev); + } + else if (req->wValue == USB_FEATURE_TEST_MODE) + { + pdev->dev_test_mode = req->wIndex >> 8; + (void)USBD_CtlSendStatus(pdev); + } + else + { + USBD_CtlError(pdev, req); + } +} + + +/** + * @brief USBD_ClrFeature + * Handle clear device feature request + * @param pdev: device instance + * @param req: usb request + * @retval status + */ +static void USBD_ClrFeature(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + switch (pdev->dev_state) + { + case USBD_STATE_DEFAULT: + case USBD_STATE_ADDRESSED: + case USBD_STATE_CONFIGURED: + if (req->wValue == USB_FEATURE_REMOTE_WAKEUP) + { + pdev->dev_remote_wakeup = 0U; + (void)USBD_CtlSendStatus(pdev); + } + break; + + default: + USBD_CtlError(pdev, req); + break; + } +} + + +/** + * @brief USBD_ParseSetupRequest + * Copy buffer into setup structure + * @param pdev: device instance + * @param req: usb request + * @retval None + */ +void USBD_ParseSetupRequest(USBD_SetupReqTypedef *req, uint8_t *pdata) +{ + uint8_t *pbuff = pdata; + + req->bmRequest = *(uint8_t *)(pbuff); + + pbuff++; + req->bRequest = *(uint8_t *)(pbuff); + + pbuff++; + req->wValue = SWAPBYTE(pbuff); + + pbuff++; + pbuff++; + req->wIndex = SWAPBYTE(pbuff); + + pbuff++; + pbuff++; + req->wLength = SWAPBYTE(pbuff); +} + + +/** + * @brief USBD_CtlError + * Handle USB low level Error + * @param pdev: device instance + * @param req: usb request + * @retval None + */ +void USBD_CtlError(USBD_HandleTypeDef *pdev, USBD_SetupReqTypedef *req) +{ + UNUSED(req); + + (void)USBD_LL_StallEP(pdev, 0x80U); + (void)USBD_LL_StallEP(pdev, 0U); +} + + +/** + * @brief USBD_GetString + * Convert Ascii string into unicode one + * @param desc : descriptor buffer + * @param unicode : Formatted string buffer (unicode) + * @param len : descriptor length + * @retval None + */ +void USBD_GetString(uint8_t *desc, uint8_t *unicode, uint16_t *len) +{ + uint8_t idx = 0U; + uint8_t *pdesc; + + if (desc == NULL) + { + return; + } + + pdesc = desc; + *len = ((uint16_t)USBD_GetLen(pdesc) * 2U) + 2U; + + unicode[idx] = *(uint8_t *)len; + idx++; + unicode[idx] = USB_DESC_TYPE_STRING; + idx++; + + while (*pdesc != (uint8_t)'\0') + { + unicode[idx] = *pdesc; + pdesc++; + idx++; + + unicode[idx] = 0U; + idx++; + } +} + + +/** + * @brief USBD_GetLen + * return the string length + * @param buf : pointer to the ascii string buffer + * @retval string length + */ +static uint8_t USBD_GetLen(uint8_t *buf) +{ + uint8_t len = 0U; + uint8_t *pbuff = buf; + + while (*pbuff != (uint8_t)'\0') + { + len++; + pbuff++; + } + + return len; +} +/** + * @} + */ + + +/** + * @} + */ + + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c new file mode 100644 index 0000000..7c8004a --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c @@ -0,0 +1,224 @@ +/** + ****************************************************************************** + * @file usbd_ioreq.c + * @author MCD Application Team + * @brief This file provides the IO requests APIs for control endpoints. + ****************************************************************************** + * @attention + * + * Copyright (c) 2015 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_ioreq.h" + +/** @addtogroup STM32_USB_DEVICE_LIBRARY + * @{ + */ + + +/** @defgroup USBD_IOREQ + * @brief control I/O requests module + * @{ + */ + +/** @defgroup USBD_IOREQ_Private_TypesDefinitions + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Private_Defines + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Private_Macros + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Private_Variables + * @{ + */ + +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Private_FunctionPrototypes + * @{ + */ +/** + * @} + */ + + +/** @defgroup USBD_IOREQ_Private_Functions + * @{ + */ + +/** + * @brief USBD_CtlSendData + * send data on the ctl pipe + * @param pdev: device instance + * @param buff: pointer to data buffer + * @param len: length of data to be sent + * @retval status + */ +USBD_StatusTypeDef USBD_CtlSendData(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len) +{ + /* Set EP0 State */ + pdev->ep0_state = USBD_EP0_DATA_IN; + pdev->ep_in[0].total_length = len; + +#ifdef USBD_AVOID_PACKET_SPLIT_MPS + pdev->ep_in[0].rem_length = 0U; +#else + pdev->ep_in[0].rem_length = len; +#endif /* USBD_AVOID_PACKET_SPLIT_MPS */ + + /* Start the transfer */ + (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); + + return USBD_OK; +} + +/** + * @brief USBD_CtlContinueSendData + * continue sending data on the ctl pipe + * @param pdev: device instance + * @param buff: pointer to data buffer + * @param len: length of data to be sent + * @retval status + */ +USBD_StatusTypeDef USBD_CtlContinueSendData(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len) +{ + /* Start the next transfer */ + (void)USBD_LL_Transmit(pdev, 0x00U, pbuf, len); + + return USBD_OK; +} + +/** + * @brief USBD_CtlPrepareRx + * receive data on the ctl pipe + * @param pdev: device instance + * @param buff: pointer to data buffer + * @param len: length of data to be received + * @retval status + */ +USBD_StatusTypeDef USBD_CtlPrepareRx(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len) +{ + /* Set EP0 State */ + pdev->ep0_state = USBD_EP0_DATA_OUT; + pdev->ep_out[0].total_length = len; + +#ifdef USBD_AVOID_PACKET_SPLIT_MPS + pdev->ep_out[0].rem_length = 0U; +#else + pdev->ep_out[0].rem_length = len; +#endif /* USBD_AVOID_PACKET_SPLIT_MPS */ + + /* Start the transfer */ + (void)USBD_LL_PrepareReceive(pdev, 0U, pbuf, len); + + return USBD_OK; +} + +/** + * @brief USBD_CtlContinueRx + * continue receive data on the ctl pipe + * @param pdev: device instance + * @param buff: pointer to data buffer + * @param len: length of data to be received + * @retval status + */ +USBD_StatusTypeDef USBD_CtlContinueRx(USBD_HandleTypeDef *pdev, + uint8_t *pbuf, uint32_t len) +{ + (void)USBD_LL_PrepareReceive(pdev, 0U, pbuf, len); + + return USBD_OK; +} + +/** + * @brief USBD_CtlSendStatus + * send zero lzngth packet on the ctl pipe + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_CtlSendStatus(USBD_HandleTypeDef *pdev) +{ + /* Set EP0 State */ + pdev->ep0_state = USBD_EP0_STATUS_IN; + + /* Start the transfer */ + (void)USBD_LL_Transmit(pdev, 0x00U, NULL, 0U); + + return USBD_OK; +} + +/** + * @brief USBD_CtlReceiveStatus + * receive zero lzngth packet on the ctl pipe + * @param pdev: device instance + * @retval status + */ +USBD_StatusTypeDef USBD_CtlReceiveStatus(USBD_HandleTypeDef *pdev) +{ + /* Set EP0 State */ + pdev->ep0_state = USBD_EP0_STATUS_OUT; + + /* Start the transfer */ + (void)USBD_LL_PrepareReceive(pdev, 0U, NULL, 0U); + + return USBD_OK; +} + +/** + * @brief USBD_GetRxCount + * returns the received data length + * @param pdev: device instance + * @param ep_addr: endpoint address + * @retval Rx Data blength + */ +uint32_t USBD_GetRxCount(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + return USBD_LL_GetRxDataSize(pdev, ep_addr); +} + +/** + * @} + */ + + +/** + * @} + */ + + +/** + * @} + */ + diff --git a/Middlewares/ST/STM32_USB_Device_Library/LICENSE.txt b/Middlewares/ST/STM32_USB_Device_Library/LICENSE.txt new file mode 100644 index 0000000..e66295c --- /dev/null +++ b/Middlewares/ST/STM32_USB_Device_Library/LICENSE.txt @@ -0,0 +1,86 @@ +This software component is provided to you as part of a software package and +applicable license terms are in the Package_license file. If you received this +software component outside of a package or without applicable license terms, +the terms of the SLA0044 license shall apply and are fully reproduced below: + +SLA0044 Rev5/February 2018 + +Software license agreement + +ULTIMATE LIBERTY SOFTWARE LICENSE AGREEMENT + +BY INSTALLING, COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE +OR ANY PART THEREOF (AND THE RELATED DOCUMENTATION) FROM STMICROELECTRONICS +INTERNATIONAL N.V, SWISS BRANCH AND/OR ITS AFFILIATED COMPANIES +(STMICROELECTRONICS), THE RECIPIENT, ON BEHALF OF HIMSELF OR HERSELF, OR ON +BEHALF OF ANY ENTITY BY WHICH SUCH RECIPIENT IS EMPLOYED AND/OR ENGAGED AGREES +TO BE BOUND BY THIS SOFTWARE LICENSE AGREEMENT. + +Under STMicroelectronics’ intellectual property rights, the redistribution, +reproduction and use in source and binary forms of the software or any part +thereof, with or without modification, are permitted provided that the following +conditions are met: + +1. Redistribution of source code (modified or not) must retain any copyright +notice, this list of conditions and the disclaimer set forth below as items 10 +and 11. + +2. Redistributions in binary form, except as embedded into microcontroller or +microprocessor device manufactured by or for STMicroelectronics or a software +update for such device, must reproduce any copyright notice provided with the +binary code, this list of conditions, and the disclaimer set forth below as +items 10 and 11, in documentation and/or other materials provided with the +distribution. + +3. Neither the name of STMicroelectronics nor the names of other contributors to +this software may be used to endorse or promote products derived from this +software or part thereof without specific written permission. + +4. This software or any part thereof, including modifications and/or derivative +works of this software, must be used and execute solely and exclusively on or in +combination with a microcontroller or microprocessor device manufactured by or +for STMicroelectronics. + +5. No use, reproduction or redistribution of this software partially or totally +may be done in any manner that would subject this software to any Open Source +Terms. “Open Source Terms” shall mean any open source license which requires as +part of distribution of software that the source code of such software is +distributed therewith or otherwise made available, or open source license that +substantially complies with the Open Source definition specified at +www.opensource.org and any other comparable open source license such as for +example GNU General Public License (GPL), Eclipse Public License (EPL), Apache +Software License, BSD license or MIT license. + +6. STMicroelectronics has no obligation to provide any maintenance, support or +updates for the software. + +7. The software is and will remain the exclusive property of STMicroelectronics +and its licensors. The recipient will not take any action that jeopardizes +STMicroelectronics and its licensors' proprietary rights or acquire any rights +in the software, except the limited rights specified hereunder. + +8. The recipient shall comply with all applicable laws and regulations affecting +the use of the software or any part thereof including any applicable export +control law or regulation. + +9. Redistribution and use of this software or any part thereof other than as +permitted under this license is void and will automatically terminate your +rights under this license. + +10. THIS SOFTWARE IS PROVIDED BY STMICROELECTRONICS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS, IMPLIED OR STATUTORY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT OF THIRD PARTY INTELLECTUAL PROPERTY RIGHTS, WHICH ARE +DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EVENT SHALL +STMICROELECTRONICS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER +EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY +RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c b/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c new file mode 100644 index 0000000..89c3633 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c @@ -0,0 +1,1727 @@ +/* ---------------------------------------------------------------------- + * $Date: 5. February 2013 + * $Revision: V1.02 + * + * Project: CMSIS-RTOS API + * Title: cmsis_os.c + * + * Version 0.02 + * Initial Proposal Phase + * Version 0.03 + * osKernelStart added, optional feature: main started as thread + * osSemaphores have standard behavior + * osTimerCreate does not start the timer, added osTimerStart + * osThreadPass is renamed to osThreadYield + * Version 1.01 + * Support for C++ interface + * - const attribute removed from the osXxxxDef_t typedef's + * - const attribute added to the osXxxxDef macros + * Added: osTimerDelete, osMutexDelete, osSemaphoreDelete + * Added: osKernelInitialize + * Version 1.02 + * Control functions for short timeouts in microsecond resolution: + * Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec + * Removed: osSignalGet + * + * + *---------------------------------------------------------------------------- + * + * Portions Copyright 2016 STMicroelectronics International N.V. All rights reserved. + * Portions Copyright (c) 2013 ARM LIMITED + * All rights reserved. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * - Neither the name of ARM nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + *---------------------------------------------------------------------------*/ + +#include
+ BaseType_t xCoRoutineCreate( + crCOROUTINE_CODE pxCoRoutineCode, + UBaseType_t uxPriority, + UBaseType_t uxIndex + );+ * + * Create a new co-routine and add it to the list of co-routines that are + * ready to run. + * + * @param pxCoRoutineCode Pointer to the co-routine function. Co-routine + * functions require special syntax - see the co-routine section of the WEB + * documentation for more information. + * + * @param uxPriority The priority with respect to other co-routines at which + * the co-routine will run. + * + * @param uxIndex Used to distinguish between different co-routines that + * execute the same function. See the example below and the co-routine section + * of the WEB documentation for further information. + * + * @return pdPASS if the co-routine was successfully created and added to a ready + * list, otherwise an error code defined with ProjDefs.h. + * + * Example usage: +
+ // Co-routine to be created. + void vFlashCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + // This may not be necessary for const variables. + static const char cLedToFlash[ 2 ] = { 5, 6 }; + static const TickType_t uxFlashRates[ 2 ] = { 200, 400 }; + + // Must start every co-routine with a call to crSTART(); + crSTART( xHandle ); + + for( ;; ) + { + // This co-routine just delays for a fixed period, then toggles + // an LED. Two co-routines are created using this function, so + // the uxIndex parameter is used to tell the co-routine which + // LED to flash and how int32_t to delay. This assumes xQueue has + // already been created. + vParTestToggleLED( cLedToFlash[ uxIndex ] ); + crDELAY( xHandle, uxFlashRates[ uxIndex ] ); + } + + // Must end every co-routine with a call to crEND(); + crEND(); + } + + // Function that creates two co-routines. + void vOtherFunction( void ) + { + uint8_t ucParameterToPass; + TaskHandle_t xHandle; + + // Create two co-routines at priority 0. The first is given index 0 + // so (from the code above) toggles LED 5 every 200 ticks. The second + // is given index 1 so toggles LED 6 every 400 ticks. + for( uxIndex = 0; uxIndex < 2; uxIndex++ ) + { + xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex ); + } + } ++ * \defgroup xCoRoutineCreate xCoRoutineCreate + * \ingroup Tasks + */ +BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex ); + + +/** + * croutine. h + *
+ void vCoRoutineSchedule( void );+ * + * Run a co-routine. + * + * vCoRoutineSchedule() executes the highest priority co-routine that is able + * to run. The co-routine will execute until it either blocks, yields or is + * preempted by a task. Co-routines execute cooperatively so one + * co-routine cannot be preempted by another, but can be preempted by a task. + * + * If an application comprises of both tasks and co-routines then + * vCoRoutineSchedule should be called from the idle task (in an idle task + * hook). + * + * Example usage: +
+ // This idle task hook will schedule a co-routine each time it is called. + // The rest of the idle task will execute between co-routine calls. + void vApplicationIdleHook( void ) + { + vCoRoutineSchedule(); + } + + // Alternatively, if you do not require any other part of the idle task to + // execute, the idle task hook can call vCoRoutineSchedule() within an + // infinite loop. + void vApplicationIdleHook( void ) + { + for( ;; ) + { + vCoRoutineSchedule(); + } + } ++ * \defgroup vCoRoutineSchedule vCoRoutineSchedule + * \ingroup Tasks + */ +void vCoRoutineSchedule( void ); + +/** + * croutine. h + *
+ crSTART( CoRoutineHandle_t xHandle );+ * + * This macro MUST always be called at the start of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created. + void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + static int32_t ulAVariable; + + // Must start every co-routine with a call to crSTART(); + crSTART( xHandle ); + + for( ;; ) + { + // Co-routine functionality goes here. + } + + // Must end every co-routine with a call to crEND(); + crEND(); + }+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0: + +/** + * croutine. h + *
+ crEND();+ * + * This macro MUST always be called at the end of a co-routine function. + * + * Example usage: +
+ // Co-routine to be created. + void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + static int32_t ulAVariable; + + // Must start every co-routine with a call to crSTART(); + crSTART( xHandle ); + + for( ;; ) + { + // Co-routine functionality goes here. + } + + // Must end every co-routine with a call to crEND(); + crEND(); + }+ * \defgroup crSTART crSTART + * \ingroup Tasks + */ +#define crEND() } + +/* + * These macros are intended for internal use by the co-routine implementation + * only. The macros should not be used directly by application writers. + */ +#define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2): +#define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1): + +/** + * croutine. h + *
+ crDELAY( CoRoutineHandle_t xHandle, TickType_t xTicksToDelay );+ * + * Delay a co-routine for a fixed period of time. + * + * crDELAY can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * @param xHandle The handle of the co-routine to delay. This is the xHandle + * parameter of the co-routine function. + * + * @param xTickToDelay The number of ticks that the co-routine should delay + * for. The actual amount of time this equates to is defined by + * configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant portTICK_PERIOD_MS + * can be used to convert ticks to milliseconds. + * + * Example usage: +
+ // Co-routine to be created. + void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + // This may not be necessary for const variables. + // We are to delay for 200ms. + static const xTickType xDelayTime = 200 / portTICK_PERIOD_MS; + + // Must start every co-routine with a call to crSTART(); + crSTART( xHandle ); + + for( ;; ) + { + // Delay for 200ms. + crDELAY( xHandle, xDelayTime ); + + // Do something here. + } + + // Must end every co-routine with a call to crEND(); + crEND(); + }+ * \defgroup crDELAY crDELAY + * \ingroup Tasks + */ +#define crDELAY( xHandle, xTicksToDelay ) \ + if( ( xTicksToDelay ) > 0 ) \ + { \ + vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL ); \ + } \ + crSET_STATE0( ( xHandle ) ); + +/** + *
+ crQUEUE_SEND( + CoRoutineHandle_t xHandle, + QueueHandle_t pxQueue, + void *pvItemToQueue, + TickType_t xTicksToWait, + BaseType_t *pxResult + )+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_SEND can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue on which the data will be posted. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvItemToQueue A pointer to the data being posted onto the queue. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied from pvItemToQueue into the queue + * itself. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for space to become available on the queue, should space not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see example + * below). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully posted onto the queue, otherwise it will be set to an + * error defined within ProjDefs.h. + * + * Example usage: +
+ // Co-routine function that blocks for a fixed period then posts a number onto + // a queue. + static void prvCoRoutineFlashTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + static BaseType_t xNumberToPost = 0; + static BaseType_t xResult; + + // Co-routines must begin with a call to crSTART(). + crSTART( xHandle ); + + for( ;; ) + { + // This assumes the queue has already been created. + crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult ); + + if( xResult != pdPASS ) + { + // The message was not posted! + } + + // Increment the number to be posted onto the queue. + xNumberToPost++; + + // Delay for 100 ticks. + crDELAY( xHandle, 100 ); + } + + // Co-routines must end with a call to crEND(). + crEND(); + }+ * \defgroup crQUEUE_SEND crQUEUE_SEND + * \ingroup Tasks + */ +#define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ + } \ + if( *pxResult == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *pxResult = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+ crQUEUE_RECEIVE( + CoRoutineHandle_t xHandle, + QueueHandle_t pxQueue, + void *pvBuffer, + TickType_t xTicksToWait, + BaseType_t *pxResult + )+ * + * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine + * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks. + * + * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas + * xQueueSend() and xQueueReceive() can only be used from tasks. + * + * crQUEUE_RECEIVE can only be called from the co-routine function itself - not + * from within a function called by the co-routine function. This is because + * co-routines do not maintain their own stack. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xHandle The handle of the calling co-routine. This is the xHandle + * parameter of the co-routine function. + * + * @param pxQueue The handle of the queue from which the data will be received. + * The handle is obtained as the return value when the queue is created using + * the xQueueCreate() API function. + * + * @param pvBuffer The buffer into which the received item is to be copied. + * The number of bytes of each queued item is specified when the queue is + * created. This number of bytes is copied into pvBuffer. + * + * @param xTickToDelay The number of ticks that the co-routine should block + * to wait for data to become available from the queue, should data not be + * available immediately. The actual amount of time this equates to is defined + * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant + * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see the + * crQUEUE_SEND example). + * + * @param pxResult The variable pointed to by pxResult will be set to pdPASS if + * data was successfully retrieved from the queue, otherwise it will be set to + * an error code as defined within ProjDefs.h. + * + * Example usage: +
+ // A co-routine receives the number of an LED to flash from a queue. It + // blocks on the queue until the number is received. + static void prvCoRoutineFlashWorkTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // Variables in co-routines must be declared static if they must maintain value across a blocking call. + static BaseType_t xResult; + static UBaseType_t uxLEDToFlash; + + // All co-routines must start with a call to crSTART(). + crSTART( xHandle ); + + for( ;; ) + { + // Wait for data to become available on the queue. + crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult ); + + if( xResult == pdPASS ) + { + // We received the LED to flash - flash it! + vParTestToggleLED( uxLEDToFlash ); + } + } + + crEND(); + }+ * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ +{ \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \ + if( *( pxResult ) == errQUEUE_BLOCKED ) \ + { \ + crSET_STATE0( ( xHandle ) ); \ + *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \ + } \ + if( *( pxResult ) == errQUEUE_YIELD ) \ + { \ + crSET_STATE1( ( xHandle ) ); \ + *( pxResult ) = pdPASS; \ + } \ +} + +/** + * croutine. h + *
+ crQUEUE_SEND_FROM_ISR( + QueueHandle_t pxQueue, + void *pvItemToQueue, + BaseType_t xCoRoutinePreviouslyWoken + )+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue + * that is being used from within a co-routine. + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto + * the same queue multiple times from a single interrupt. The first call + * should always pass in pdFALSE. Subsequent calls should pass in + * the value returned from the previous call. + * + * @return pdTRUE if a co-routine was woken by posting onto the queue. This is + * used by the ISR to determine if a context switch may be required following + * the ISR. + * + * Example usage: +
+ // A co-routine that blocks on a queue waiting for characters to be received. + static void vReceivingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + char cRxedChar; + BaseType_t xResult; + + // All co-routines must start with a call to crSTART(). + crSTART( xHandle ); + + for( ;; ) + { + // Wait for data to become available on the queue. This assumes the + // queue xCommsRxQueue has already been created! + crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult ); + + // Was a character received? + if( xResult == pdPASS ) + { + // Process the character here. + } + } + + // All co-routines must end with a call to crEND(). + crEND(); + } + + // An ISR that uses a queue to send characters received on a serial port to + // a co-routine. + void vUART_ISR( void ) + { + char cRxedChar; + BaseType_t xCRWokenByPost = pdFALSE; + + // We loop around reading characters until there are none left in the UART. + while( UART_RX_REG_NOT_EMPTY() ) + { + // Obtain the character from the UART. + cRxedChar = UART_RX_REG; + + // Post the character onto a queue. xCRWokenByPost will be pdFALSE + // the first time around the loop. If the post causes a co-routine + // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE. + // In this manner we can ensure that if more than one co-routine is + // blocked on the queue only one is woken by this ISR no matter how + // many characters are posted to the queue. + xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost ); + } + }+ * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) ) + + +/** + * croutine. h + *
+ crQUEUE_SEND_FROM_ISR( + QueueHandle_t pxQueue, + void *pvBuffer, + BaseType_t * pxCoRoutineWoken + )+ * + * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the + * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR() + * functions used by tasks. + * + * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to + * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and + * xQueueReceiveFromISR() can only be used to pass data between a task and and + * ISR. + * + * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data + * from a queue that is being used from within a co-routine (a co-routine + * posted to the queue). + * + * See the co-routine section of the WEB documentation for information on + * passing data between tasks and co-routines and between ISR's and + * co-routines. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvBuffer A pointer to a buffer into which the received item will be + * placed. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from the queue into + * pvBuffer. + * + * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become + * available on the queue. If crQUEUE_RECEIVE_FROM_ISR causes such a + * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise + * *pxCoRoutineWoken will remain unchanged. + * + * @return pdTRUE an item was successfully received from the queue, otherwise + * pdFALSE. + * + * Example usage: +
+ // A co-routine that posts a character to a queue then blocks for a fixed + // period. The character is incremented each time. + static void vSendingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex ) + { + // cChar holds its value while this co-routine is blocked and must therefore + // be declared static. + static char cCharToTx = 'a'; + BaseType_t xResult; + + // All co-routines must start with a call to crSTART(). + crSTART( xHandle ); + + for( ;; ) + { + // Send the next character to the queue. + crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult ); + + if( xResult == pdPASS ) + { + // The character was successfully posted to the queue. + } + else + { + // Could not post the character to the queue. + } + + // Enable the UART Tx interrupt to cause an interrupt in this + // hypothetical UART. The interrupt will obtain the character + // from the queue and send it. + ENABLE_RX_INTERRUPT(); + + // Increment to the next character then block for a fixed period. + // cCharToTx will maintain its value across the delay as it is + // declared static. + cCharToTx++; + if( cCharToTx > 'x' ) + { + cCharToTx = 'a'; + } + crDELAY( 100 ); + } + + // All co-routines must end with a call to crEND(). + crEND(); + } + + // An ISR that uses a queue to receive characters to send on a UART. + void vUART_ISR( void ) + { + char cCharToTx; + BaseType_t xCRWokenByPost = pdFALSE; + + while( UART_TX_REG_EMPTY() ) + { + // Are there any characters in the queue waiting to be sent? + // xCRWokenByPost will automatically be set to pdTRUE if a co-routine + // is woken by the post - ensuring that only a single co-routine is + // woken no matter how many times we go around this loop. + if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) ) + { + SEND_CHARACTER( cCharToTx ); + } + } + }+ * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR + * \ingroup Tasks + */ +#define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) ) + +/* + * This function is intended for internal use by the co-routine macros only. + * The macro nature of the co-routine implementation requires that the + * prototype appears here. The function should not be used by application + * writers. + * + * Removes the current co-routine from its ready list and places it in the + * appropriate delayed list. + */ +void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ); + +/* + * This function is intended for internal use by the queue implementation only. + * The function should not be used by application writers. + * + * Removes the highest priority co-routine from the event list and places it in + * the pending ready list. + */ +BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ); + +#ifdef __cplusplus +} +#endif + +#endif /* CO_ROUTINE_H */ diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h b/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h new file mode 100644 index 0000000..21657b9 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h @@ -0,0 +1,279 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef DEPRECATED_DEFINITIONS_H +#define DEPRECATED_DEFINITIONS_H + + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. The +definitions below remain in the code for backward compatibility only. New +projects should not use them. */ + +#ifdef OPEN_WATCOM_INDUSTRIAL_PC_PORT + #include "..\..\Source\portable\owatcom\16bitdos\pc\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef OPEN_WATCOM_FLASH_LITE_186_PORT + #include "..\..\Source\portable\owatcom\16bitdos\flsh186\portmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef GCC_MEGA_AVR + #include "../portable/GCC/ATMega323/portmacro.h" +#endif + +#ifdef IAR_MEGA_AVR + #include "../portable/IAR/ATMega323/portmacro.h" +#endif + +#ifdef MPLAB_PIC24_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_DSPIC_PORT + #include "../../Source/portable/MPLAB/PIC24_dsPIC/portmacro.h" +#endif + +#ifdef MPLAB_PIC18F_PORT + #include "../../Source/portable/MPLAB/PIC18F/portmacro.h" +#endif + +#ifdef MPLAB_PIC32MX_PORT + #include "../../Source/portable/MPLAB/PIC32MX/portmacro.h" +#endif + +#ifdef _FEDPICC + #include "libFreeRTOS/Include/portmacro.h" +#endif + +#ifdef SDCC_CYGNAL + #include "../../Source/portable/SDCC/Cygnal/portmacro.h" +#endif + +#ifdef GCC_ARM7 + #include "../../Source/portable/GCC/ARM7_LPC2000/portmacro.h" +#endif + +#ifdef GCC_ARM7_ECLIPSE + #include "portmacro.h" +#endif + +#ifdef ROWLEY_LPC23xx + #include "../../Source/portable/GCC/ARM7_LPC23xx/portmacro.h" +#endif + +#ifdef IAR_MSP430 + #include "..\..\Source\portable\IAR\MSP430\portmacro.h" +#endif + +#ifdef GCC_MSP430 + #include "../../Source/portable/GCC/MSP430F449/portmacro.h" +#endif + +#ifdef ROWLEY_MSP430 + #include "../../Source/portable/Rowley/MSP430F449/portmacro.h" +#endif + +#ifdef ARM7_LPC21xx_KEIL_RVDS + #include "..\..\Source\portable\RVDS\ARM7_LPC21xx\portmacro.h" +#endif + +#ifdef SAM7_GCC + #include "../../Source/portable/GCC/ARM7_AT91SAM7S/portmacro.h" +#endif + +#ifdef SAM7_IAR + #include "..\..\Source\portable\IAR\AtmelSAM7S64\portmacro.h" +#endif + +#ifdef SAM9XE_IAR + #include "..\..\Source\portable\IAR\AtmelSAM9XE\portmacro.h" +#endif + +#ifdef LPC2000_IAR + #include "..\..\Source\portable\IAR\LPC2000\portmacro.h" +#endif + +#ifdef STR71X_IAR + #include "..\..\Source\portable\IAR\STR71x\portmacro.h" +#endif + +#ifdef STR75X_IAR + #include "..\..\Source\portable\IAR\STR75x\portmacro.h" +#endif + +#ifdef STR75X_GCC + #include "..\..\Source\portable\GCC\STR75x\portmacro.h" +#endif + +#ifdef STR91X_IAR + #include "..\..\Source\portable\IAR\STR91x\portmacro.h" +#endif + +#ifdef GCC_H8S + #include "../../Source/portable/GCC/H8S2329/portmacro.h" +#endif + +#ifdef GCC_AT91FR40008 + #include "../../Source/portable/GCC/ARM7_AT91FR40008/portmacro.h" +#endif + +#ifdef RVDS_ARMCM3_LM3S102 + #include "../../Source/portable/RVDS/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3_LM3S102 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef GCC_ARMCM3 + #include "../../Source/portable/GCC/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARM_CM3 + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef IAR_ARMCM3_LM + #include "../../Source/portable/IAR/ARM_CM3/portmacro.h" +#endif + +#ifdef HCS12_CODE_WARRIOR + #include "../../Source/portable/CodeWarrior/HCS12/portmacro.h" +#endif + +#ifdef MICROBLAZE_GCC + #include "../../Source/portable/GCC/MicroBlaze/portmacro.h" +#endif + +#ifdef TERN_EE + #include "..\..\Source\portable\Paradigm\Tern_EE\small\portmacro.h" +#endif + +#ifdef GCC_HCS12 + #include "../../Source/portable/GCC/HCS12/portmacro.h" +#endif + +#ifdef GCC_MCF5235 + #include "../../Source/portable/GCC/MCF5235/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_GCC + #include "../../../Source/portable/GCC/ColdFire_V2/portmacro.h" +#endif + +#ifdef COLDFIRE_V2_CODEWARRIOR + #include "../../Source/portable/CodeWarrior/ColdFire_V2/portmacro.h" +#endif + +#ifdef GCC_PPC405 + #include "../../Source/portable/GCC/PPC405_Xilinx/portmacro.h" +#endif + +#ifdef GCC_PPC440 + #include "../../Source/portable/GCC/PPC440_Xilinx/portmacro.h" +#endif + +#ifdef _16FX_SOFTUNE + #include "..\..\Source\portable\Softune\MB96340\portmacro.h" +#endif + +#ifdef BCC_INDUSTRIAL_PC_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\PC\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef BCC_FLASH_LITE_186_PORT + /* A short file name has to be used in place of the normal + FreeRTOSConfig.h when using the Borland compiler. */ + #include "frconfig.h" + #include "..\portable\BCC\16BitDOS\flsh186\prtmacro.h" + typedef void ( __interrupt __far *pxISR )(); +#endif + +#ifdef __GNUC__ + #ifdef __AVR32_AVR32A__ + #include "portmacro.h" + #endif +#endif + +#ifdef __ICCAVR32__ + #ifdef __CORE__ + #if __CORE__ == __AVR32A__ + #include "portmacro.h" + #endif + #endif +#endif + +#ifdef __91467D + #include "portmacro.h" +#endif + +#ifdef __96340 + #include "portmacro.h" +#endif + + +#ifdef __IAR_V850ES_Fx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx3_L__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Jx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_V850ES_Hx2__ + #include "../../Source/portable/IAR/V850ES/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#ifdef __IAR_78K0R_Kx3L__ + #include "../../Source/portable/IAR/78K0R/portmacro.h" +#endif + +#endif /* DEPRECATED_DEFINITIONS_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h b/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h new file mode 100644 index 0000000..a87fdf3 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h @@ -0,0 +1,757 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef EVENT_GROUPS_H +#define EVENT_GROUPS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include event_groups.h" +#endif + +/* FreeRTOS includes. */ +#include "timers.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An event group is a collection of bits to which an application can assign a + * meaning. For example, an application may create an event group to convey + * the status of various CAN bus related events in which bit 0 might mean "A CAN + * message has been received and is ready for processing", bit 1 might mean "The + * application has queued a message that is ready for sending onto the CAN + * network", and bit 2 might mean "It is time to send a SYNC message onto the + * CAN network" etc. A task can then test the bit values to see which events + * are active, and optionally enter the Blocked state to wait for a specified + * bit or a group of specified bits to be active. To continue the CAN bus + * example, a CAN controlling task can enter the Blocked state (and therefore + * not consume any processing time) until either bit 0, bit 1 or bit 2 are + * active, at which time the bit that was actually active would inform the task + * which action it had to take (process a received message, send a message, or + * send a SYNC). + * + * The event groups implementation contains intelligence to avoid race + * conditions that would otherwise occur were an application to use a simple + * variable for the same purpose. This is particularly important with respect + * to when a bit within an event group is to be cleared, and when bits have to + * be set and then tested atomically - as is the case where event groups are + * used to create a synchronisation point between multiple tasks (a + * 'rendezvous'). + * + * \defgroup EventGroup + */ + + + +/** + * event_groups.h + * + * Type by which event groups are referenced. For example, a call to + * xEventGroupCreate() returns an EventGroupHandle_t variable that can then + * be used as a parameter to other event group functions. + * + * \defgroup EventGroupHandle_t EventGroupHandle_t + * \ingroup EventGroup + */ +struct EventGroupDef_t; +typedef struct EventGroupDef_t * EventGroupHandle_t; + +/* + * The type that holds event bits always matches TickType_t - therefore the + * number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1, + * 32 bits if set to 0. + * + * \defgroup EventBits_t EventBits_t + * \ingroup EventGroup + */ +typedef TickType_t EventBits_t; + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreate( void ); ++ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @return If the event group was created then a handle to the event group is + * returned. If there was insufficient FreeRTOS heap available to create the + * event group then NULL is returned. See http://www.freertos.org/a00111.html + * + * Example usage: +
+ // Declare a variable to hold the created event group. + EventGroupHandle_t xCreatedEventGroup; + + // Attempt to create the event group. + xCreatedEventGroup = xEventGroupCreate(); + + // Was the event group created successfully? + if( xCreatedEventGroup == NULL ) + { + // The event group was not created because there was insufficient + // FreeRTOS heap available. + } + else + { + // The event group was created. + } ++ * \defgroup xEventGroupCreate xEventGroupCreate + * \ingroup EventGroup + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreate( void ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+ EventGroupHandle_t xEventGroupCreateStatic( EventGroupHandle_t * pxEventGroupBuffer ); ++ * + * Create a new event group. + * + * Internally, within the FreeRTOS implementation, event groups use a [small] + * block of memory, in which the event group's structure is stored. If an event + * groups is created using xEventGropuCreate() then the required memory is + * automatically dynamically allocated inside the xEventGroupCreate() function. + * (see http://www.freertos.org/a00111.html). If an event group is created + * using xEventGropuCreateStatic() then the application writer must instead + * provide the memory that will get used by the event group. + * xEventGroupCreateStatic() therefore allows an event group to be created + * without using any dynamic memory allocation. + * + * Although event groups are not related to ticks, for internal implementation + * reasons the number of bits available for use in an event group is dependent + * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If + * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit + * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has + * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store + * event bits within an event group. + * + * @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type + * StaticEventGroup_t, which will be then be used to hold the event group's data + * structures, removing the need for the memory to be allocated dynamically. + * + * @return If the event group was created then a handle to the event group is + * returned. If pxEventGroupBuffer was NULL then NULL is returned. + * + * Example usage: +
+ // StaticEventGroup_t is a publicly accessible structure that has the same + // size and alignment requirements as the real event group structure. It is + // provided as a mechanism for applications to know the size of the event + // group (which is dependent on the architecture and configuration file + // settings) without breaking the strict data hiding policy by exposing the + // real event group internals. This StaticEventGroup_t variable is passed + // into the xSemaphoreCreateEventGroupStatic() function and is used to store + // the event group's data structures + StaticEventGroup_t xEventGroupBuffer; + + // Create the event group without dynamically allocating any memory. + xEventGroup = xEventGroupCreateStatic( &xEventGroupBuffer ); ++ */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + EventGroupHandle_t xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) PRIVILEGED_FUNCTION; +#endif + +/** + * event_groups.h + *
+ EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, + const EventBits_t uxBitsToWaitFor, + const BaseType_t xClearOnExit, + const BaseType_t xWaitForAllBits, + const TickType_t xTicksToWait ); ++ * + * [Potentially] block to wait for one or more bits to be set within a + * previously created event group. + * + * This function cannot be called from an interrupt. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and/or bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and/or bit 1 and/or bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xClearOnExit If xClearOnExit is set to pdTRUE then any bits within + * uxBitsToWaitFor that are set within the event group will be cleared before + * xEventGroupWaitBits() returns if the wait condition was met (if the function + * returns for a reason other than a timeout). If xClearOnExit is set to + * pdFALSE then the bits set in the event group are not altered when the call to + * xEventGroupWaitBits() returns. + * + * @param xWaitForAllBits If xWaitForAllBits is set to pdTRUE then + * xEventGroupWaitBits() will return when either all the bits in uxBitsToWaitFor + * are set or the specified block time expires. If xWaitForAllBits is set to + * pdFALSE then xEventGroupWaitBits() will return when any one of the bits set + * in uxBitsToWaitFor is set or the specified block time expires. The block + * time is specified by the xTicksToWait parameter. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for one/all (depending on the xWaitForAllBits value) of the bits specified by + * uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupWaitBits() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupWaitBits() returned because the bits it was waiting for were set + * then the returned value is the event group value before any bits were + * automatically cleared in the case that xClearOnExit parameter was set to + * pdTRUE. + * + * Example usage: +
+ #define BIT_0 ( 1 << 0 ) + #define BIT_4 ( 1 << 4 ) + + void aFunction( EventGroupHandle_t xEventGroup ) + { + EventBits_t uxBits; + const TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS; + + // Wait a maximum of 100ms for either bit 0 or bit 4 to be set within + // the event group. Clear the bits before exiting. + uxBits = xEventGroupWaitBits( + xEventGroup, // The event group being tested. + BIT_0 | BIT_4, // The bits within the event group to wait for. + pdTRUE, // BIT_0 and BIT_4 should be cleared before returning. + pdFALSE, // Don't wait for both bits, either bit will do. + xTicksToWait ); // Wait a maximum of 100ms for either bit to be set. + + if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) ) + { + // xEventGroupWaitBits() returned because both bits were set. + } + else if( ( uxBits & BIT_0 ) != 0 ) + { + // xEventGroupWaitBits() returned because just BIT_0 was set. + } + else if( ( uxBits & BIT_4 ) != 0 ) + { + // xEventGroupWaitBits() returned because just BIT_4 was set. + } + else + { + // xEventGroupWaitBits() returned because xTicksToWait ticks passed + // without either BIT_0 or BIT_4 becoming set. + } + } ++ * \defgroup xEventGroupWaitBits xEventGroupWaitBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+ EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ); ++ * + * Clear bits within an event group. This function cannot be called from an + * interrupt. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear + * in the event group. For example, to clear bit 3 only, set uxBitsToClear to + * 0x08. To clear bit 3 and bit 0 set uxBitsToClear to 0x09. + * + * @return The value of the event group before the specified bits were cleared. + * + * Example usage: +
+ #define BIT_0 ( 1 << 0 ) + #define BIT_4 ( 1 << 4 ) + + void aFunction( EventGroupHandle_t xEventGroup ) + { + EventBits_t uxBits; + + // Clear bit 0 and bit 4 in xEventGroup. + uxBits = xEventGroupClearBits( + xEventGroup, // The event group being updated. + BIT_0 | BIT_4 );// The bits being cleared. + + if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) ) + { + // Both bit 0 and bit 4 were set before xEventGroupClearBits() was + // called. Both will now be clear (not set). + } + else if( ( uxBits & BIT_0 ) != 0 ) + { + // Bit 0 was set before xEventGroupClearBits() was called. It will + // now be clear. + } + else if( ( uxBits & BIT_4 ) != 0 ) + { + // Bit 4 was set before xEventGroupClearBits() was called. It will + // now be clear. + } + else + { + // Neither bit 0 nor bit 4 were set in the first place. + } + } ++ * \defgroup xEventGroupClearBits xEventGroupClearBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+ BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ); ++ * + * A version of xEventGroupClearBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed + * while interrupts are disabled, so protects event groups that are accessed + * from tasks by suspending the scheduler rather than disabling interrupts. As + * a result event groups cannot be accessed directly from an interrupt service + * routine. Therefore xEventGroupClearBitsFromISR() sends a message to the + * timer task to have the clear operation performed in the context of the timer + * task. + * + * @param xEventGroup The event group in which the bits are to be cleared. + * + * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear. + * For example, to clear bit 3 only, set uxBitsToClear to 0x08. To clear bit 3 + * and bit 0 set uxBitsToClear to 0x09. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+ #define BIT_0 ( 1 << 0 ) + #define BIT_4 ( 1 << 4 ) + + // An event group which it is assumed has already been created by a call to + // xEventGroupCreate(). + EventGroupHandle_t xEventGroup; + + void anInterruptHandler( void ) + { + // Clear bit 0 and bit 4 in xEventGroup. + xResult = xEventGroupClearBitsFromISR( + xEventGroup, // The event group being updated. + BIT_0 | BIT_4 ); // The bits being set. + + if( xResult == pdPASS ) + { + // The message was posted successfully. + } + } ++ * \defgroup xEventGroupClearBitsFromISR xEventGroupClearBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupClearBitsFromISR( xEventGroup, uxBitsToClear ) xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL ) +#endif + +/** + * event_groups.h + *
+ EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ); ++ * + * Set bits within an event group. + * This function cannot be called from an interrupt. xEventGroupSetBitsFromISR() + * is a version that can be called from an interrupt. + * + * Setting bits in an event group will automatically unblock tasks that are + * blocked waiting for the bits. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @return The value of the event group at the time the call to + * xEventGroupSetBits() returns. There are two reasons why the returned value + * might have the bits specified by the uxBitsToSet parameter cleared. First, + * if setting a bit results in a task that was waiting for the bit leaving the + * blocked state then it is possible the bit will be cleared automatically + * (see the xClearBitOnExit parameter of xEventGroupWaitBits()). Second, any + * unblocked (or otherwise Ready state) task that has a priority above that of + * the task that called xEventGroupSetBits() will execute and may change the + * event group value before the call to xEventGroupSetBits() returns. + * + * Example usage: +
+ #define BIT_0 ( 1 << 0 ) + #define BIT_4 ( 1 << 4 ) + + void aFunction( EventGroupHandle_t xEventGroup ) + { + EventBits_t uxBits; + + // Set bit 0 and bit 4 in xEventGroup. + uxBits = xEventGroupSetBits( + xEventGroup, // The event group being updated. + BIT_0 | BIT_4 );// The bits being set. + + if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) ) + { + // Both bit 0 and bit 4 remained set when the function returned. + } + else if( ( uxBits & BIT_0 ) != 0 ) + { + // Bit 0 remained set when the function returned, but bit 4 was + // cleared. It might be that bit 4 was cleared automatically as a + // task that was waiting for bit 4 was removed from the Blocked + // state. + } + else if( ( uxBits & BIT_4 ) != 0 ) + { + // Bit 4 remained set when the function returned, but bit 0 was + // cleared. It might be that bit 0 was cleared automatically as a + // task that was waiting for bit 0 was removed from the Blocked + // state. + } + else + { + // Neither bit 0 nor bit 4 remained set. It might be that a task + // was waiting for both of the bits to be set, and the bits were + // cleared as the task left the Blocked state. + } + } ++ * \defgroup xEventGroupSetBits xEventGroupSetBits + * \ingroup EventGroup + */ +EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+ BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * A version of xEventGroupSetBits() that can be called from an interrupt. + * + * Setting bits in an event group is not a deterministic operation because there + * are an unknown number of tasks that may be waiting for the bit or bits being + * set. FreeRTOS does not allow nondeterministic operations to be performed in + * interrupts or from critical sections. Therefore xEventGroupSetBitsFromISR() + * sends a message to the timer task to have the set operation performed in the + * context of the timer task - where a scheduler lock is used in place of a + * critical section. + * + * @param xEventGroup The event group in which the bits are to be set. + * + * @param uxBitsToSet A bitwise value that indicates the bit or bits to set. + * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3 + * and bit 0 set uxBitsToSet to 0x09. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task is higher than the priority of the + * currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE by + * xEventGroupSetBitsFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return If the request to execute the function was posted successfully then + * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned + * if the timer service queue was full. + * + * Example usage: +
+ #define BIT_0 ( 1 << 0 ) + #define BIT_4 ( 1 << 4 ) + + // An event group which it is assumed has already been created by a call to + // xEventGroupCreate(). + EventGroupHandle_t xEventGroup; + + void anInterruptHandler( void ) + { + BaseType_t xHigherPriorityTaskWoken, xResult; + + // xHigherPriorityTaskWoken must be initialised to pdFALSE. + xHigherPriorityTaskWoken = pdFALSE; + + // Set bit 0 and bit 4 in xEventGroup. + xResult = xEventGroupSetBitsFromISR( + xEventGroup, // The event group being updated. + BIT_0 | BIT_4 // The bits being set. + &xHigherPriorityTaskWoken ); + + // Was the message posted successfully? + if( xResult == pdPASS ) + { + // If xHigherPriorityTaskWoken is now set to pdTRUE then a context + // switch should be requested. The macro used is port specific and + // will be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - + // refer to the documentation page for the port being used. + portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); + } + } ++ * \defgroup xEventGroupSetBitsFromISR xEventGroupSetBitsFromISR + * \ingroup EventGroup + */ +#if( configUSE_TRACE_FACILITY == 1 ) + BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#else + #define xEventGroupSetBitsFromISR( xEventGroup, uxBitsToSet, pxHigherPriorityTaskWoken ) xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken ) +#endif + +/** + * event_groups.h + *
+ EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, + const EventBits_t uxBitsToSet, + const EventBits_t uxBitsToWaitFor, + TickType_t xTicksToWait ); ++ * + * Atomically set bits within an event group, then wait for a combination of + * bits to be set within the same event group. This functionality is typically + * used to synchronise multiple tasks, where each task has to wait for the other + * tasks to reach a synchronisation point before proceeding. + * + * This function cannot be used from an interrupt. + * + * The function will return before its block time expires if the bits specified + * by the uxBitsToWait parameter are set, or become set within that time. In + * this case all the bits specified by uxBitsToWait will be automatically + * cleared before the function returns. + * + * @param xEventGroup The event group in which the bits are being tested. The + * event group must have previously been created using a call to + * xEventGroupCreate(). + * + * @param uxBitsToSet The bits to set in the event group before determining + * if, and possibly waiting for, all the bits specified by the uxBitsToWait + * parameter are set. + * + * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test + * inside the event group. For example, to wait for bit 0 and bit 2 set + * uxBitsToWaitFor to 0x05. To wait for bits 0 and bit 1 and bit 2 set + * uxBitsToWaitFor to 0x07. Etc. + * + * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait + * for all of the bits specified by uxBitsToWaitFor to become set. + * + * @return The value of the event group at the time either the bits being waited + * for became set, or the block time expired. Test the return value to know + * which bits were set. If xEventGroupSync() returned because its timeout + * expired then not all the bits being waited for will be set. If + * xEventGroupSync() returned because all the bits it was waiting for were + * set then the returned value is the event group value before any bits were + * automatically cleared. + * + * Example usage: +
+ // Bits used by the three tasks. + #define TASK_0_BIT ( 1 << 0 ) + #define TASK_1_BIT ( 1 << 1 ) + #define TASK_2_BIT ( 1 << 2 ) + + #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT ) + + // Use an event group to synchronise three tasks. It is assumed this event + // group has already been created elsewhere. + EventGroupHandle_t xEventBits; + + void vTask0( void *pvParameters ) + { + EventBits_t uxReturn; + TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS; + + for( ;; ) + { + // Perform task functionality here. + + // Set bit 0 in the event flag to note this task has reached the + // sync point. The other two tasks will set the other two bits defined + // by ALL_SYNC_BITS. All three tasks have reached the synchronisation + // point when all the ALL_SYNC_BITS are set. Wait a maximum of 100ms + // for this to happen. + uxReturn = xEventGroupSync( xEventBits, TASK_0_BIT, ALL_SYNC_BITS, xTicksToWait ); + + if( ( uxReturn & ALL_SYNC_BITS ) == ALL_SYNC_BITS ) + { + // All three tasks reached the synchronisation point before the call + // to xEventGroupSync() timed out. + } + } + } + + void vTask1( void *pvParameters ) + { + for( ;; ) + { + // Perform task functionality here. + + // Set bit 1 in the event flag to note this task has reached the + // synchronisation point. The other two tasks will set the other two + // bits defined by ALL_SYNC_BITS. All three tasks have reached the + // synchronisation point when all the ALL_SYNC_BITS are set. Wait + // indefinitely for this to happen. + xEventGroupSync( xEventBits, TASK_1_BIT, ALL_SYNC_BITS, portMAX_DELAY ); + + // xEventGroupSync() was called with an indefinite block time, so + // this task will only reach here if the syncrhonisation was made by all + // three tasks, so there is no need to test the return value. + } + } + + void vTask2( void *pvParameters ) + { + for( ;; ) + { + // Perform task functionality here. + + // Set bit 2 in the event flag to note this task has reached the + // synchronisation point. The other two tasks will set the other two + // bits defined by ALL_SYNC_BITS. All three tasks have reached the + // synchronisation point when all the ALL_SYNC_BITS are set. Wait + // indefinitely for this to happen. + xEventGroupSync( xEventBits, TASK_2_BIT, ALL_SYNC_BITS, portMAX_DELAY ); + + // xEventGroupSync() was called with an indefinite block time, so + // this task will only reach here if the syncrhonisation was made by all + // three tasks, so there is no need to test the return value. + } + } + ++ * \defgroup xEventGroupSync xEventGroupSync + * \ingroup EventGroup + */ +EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + + +/** + * event_groups.h + *
+ EventBits_t xEventGroupGetBits( EventGroupHandle_t xEventGroup ); ++ * + * Returns the current value of the bits in an event group. This function + * cannot be used from an interrupt. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBits() was called. + * + * \defgroup xEventGroupGetBits xEventGroupGetBits + * \ingroup EventGroup + */ +#define xEventGroupGetBits( xEventGroup ) xEventGroupClearBits( xEventGroup, 0 ) + +/** + * event_groups.h + *
+ EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ); ++ * + * A version of xEventGroupGetBits() that can be called from an ISR. + * + * @param xEventGroup The event group being queried. + * + * @return The event group bits at the time xEventGroupGetBitsFromISR() was called. + * + * \defgroup xEventGroupGetBitsFromISR xEventGroupGetBitsFromISR + * \ingroup EventGroup + */ +EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/** + * event_groups.h + *
+ void xEventGroupDelete( EventGroupHandle_t xEventGroup ); ++ * + * Delete an event group that was previously created by a call to + * xEventGroupCreate(). Tasks that are blocked on the event group will be + * unblocked and obtain 0 as the event group's value. + * + * @param xEventGroup The event group being deleted. + */ +void vEventGroupDelete( EventGroupHandle_t xEventGroup ) PRIVILEGED_FUNCTION; + +/* For internal use only. */ +void vEventGroupSetBitsCallback( void *pvEventGroup, const uint32_t ulBitsToSet ) PRIVILEGED_FUNCTION; +void vEventGroupClearBitsCallback( void *pvEventGroup, const uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; + + +#if (configUSE_TRACE_FACILITY == 1) + UBaseType_t uxEventGroupGetNumber( void* xEventGroup ) PRIVILEGED_FUNCTION; + void vEventGroupSetNumber( void* xEventGroup, UBaseType_t uxEventGroupNumber ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* EVENT_GROUPS_H */ + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/list.h b/Middlewares/Third_Party/FreeRTOS/Source/include/list.h new file mode 100644 index 0000000..a3e3024 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/list.h @@ -0,0 +1,412 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * This is the list implementation used by the scheduler. While it is tailored + * heavily for the schedulers needs, it is also available for use by + * application code. + * + * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a + * numeric value (xItemValue). Most of the time the lists are sorted in + * descending item value order. + * + * Lists are created already containing one list item. The value of this + * item is the maximum possible that can be stored, it is therefore always at + * the end of the list and acts as a marker. The list member pxHead always + * points to this marker - even though it is at the tail of the list. This + * is because the tail contains a wrap back pointer to the true head of + * the list. + * + * In addition to it's value, each list item contains a pointer to the next + * item in the list (pxNext), a pointer to the list it is in (pxContainer) + * and a pointer to back to the object that contains it. These later two + * pointers are included for efficiency of list manipulation. There is + * effectively a two way link between the object containing the list item and + * the list item itself. + * + * + * \page ListIntroduction List Implementation + * \ingroup FreeRTOSIntro + */ + +#ifndef INC_FREERTOS_H + #error FreeRTOS.h must be included before list.h +#endif + +#ifndef LIST_H +#define LIST_H + +/* + * The list structure members are modified from within interrupts, and therefore + * by rights should be declared volatile. However, they are only modified in a + * functionally atomic way (within critical sections of with the scheduler + * suspended) and are either passed by reference into a function or indexed via + * a volatile variable. Therefore, in all use cases tested so far, the volatile + * qualifier can be omitted in order to provide a moderate performance + * improvement without adversely affecting functional behaviour. The assembly + * instructions generated by the IAR, ARM and GCC compilers when the respective + * compiler's options were set for maximum optimisation has been inspected and + * deemed to be as intended. That said, as compiler technology advances, and + * especially if aggressive cross module optimisation is used (a use case that + * has not been exercised to any great extend) then it is feasible that the + * volatile qualifier will be needed for correct optimisation. It is expected + * that a compiler removing essential code because, without the volatile + * qualifier on the list structure members and with aggressive cross module + * optimisation, the compiler deemed the code unnecessary will result in + * complete and obvious failure of the scheduler. If this is ever experienced + * then the volatile qualifier can be inserted in the relevant places within the + * list structures by simply defining configLIST_VOLATILE to volatile in + * FreeRTOSConfig.h (as per the example at the bottom of this comment block). + * If configLIST_VOLATILE is not defined then the preprocessor directives below + * will simply #define configLIST_VOLATILE away completely. + * + * To use volatile list structure members then add the following line to + * FreeRTOSConfig.h (without the quotes): + * "#define configLIST_VOLATILE volatile" + */ +#ifndef configLIST_VOLATILE + #define configLIST_VOLATILE +#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ + +#ifdef __cplusplus +extern "C" { +#endif + +/* Macros that can be used to place known values within the list structures, +then check that the known values do not get corrupted during the execution of +the application. These may catch the list data structures being overwritten in +memory. They will not catch data errors caused by incorrect configuration or +use of FreeRTOS.*/ +#if( configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0 ) + /* Define the macros to do nothing. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) + #define listTEST_LIST_INTEGRITY( pxList ) +#else + /* Define macros that add new members into the list structures. */ + #define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1; + #define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2; + #define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1; + #define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2; + + /* Define macros that set the new structure members to known values. */ + #define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ) ( pxItem )->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE + #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE + + /* Define macros that will assert if one of the structure members does not + contain its expected value. */ + #define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxItem )->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) + #define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE ) && ( ( pxList )->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE ) ) +#endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */ + + +/* + * Definition of the only type of object that a list can contain. + */ +struct xLIST; +struct xLIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; /*< The value being listed. In most cases this is used to sort the list in descending order. */ + struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */ + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */ + void * pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself. */ + struct xLIST * configLIST_VOLATILE pxContainer; /*< Pointer to the list in which this list item is placed (if any). */ + listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +}; +typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */ + +struct xMINI_LIST_ITEM +{ + listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + configLIST_VOLATILE TickType_t xItemValue; + struct xLIST_ITEM * configLIST_VOLATILE pxNext; + struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; +}; +typedef struct xMINI_LIST_ITEM MiniListItem_t; + +/* + * Definition of the type of queue used by the scheduler. + */ +typedef struct xLIST +{ + listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + volatile UBaseType_t uxNumberOfItems; + ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a call to listGET_OWNER_OF_NEXT_ENTRY (). */ + MiniListItem_t xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the list and is therefore used as a marker. */ + listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ +} List_t; + +/* + * Access macro to set the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_OWNER( pxListItem, pxOwner ) ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) ) + +/* + * Access macro to get the owner of a list item. The owner of a list item + * is the object (usually a TCB) that contains the list item. + * + * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) + +/* + * Access macro to set the value of the list item. In most cases the value is + * used to sort the list in descending order. + * + * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue ) ) + +/* + * Access macro to retrieve the value of the list item. The value can + * represent anything - for example the priority of a task, or the time at + * which a task should be unblocked. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue ) + +/* + * Access macro to retrieve the value of the list item at the head of a given + * list. + * + * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE + * \ingroup LinkedList + */ +#define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue ) + +/* + * Return the list item at the head of the list. + * + * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext ) + +/* + * Return the next list item. + * + * \page listGET_NEXT listGET_NEXT + * \ingroup LinkedList + */ +#define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext ) + +/* + * Return the list item that marks the end of the list + * + * \page listGET_END_MARKER listGET_END_MARKER + * \ingroup LinkedList + */ +#define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) ) + +/* + * Access macro to determine if a list contains any items. The macro will + * only have the value true if the list is empty. + * + * \page listLIST_IS_EMPTY listLIST_IS_EMPTY + * \ingroup LinkedList + */ +#define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ? pdTRUE : pdFALSE ) + +/* + * Access macro to return the number of items in the list. + */ +#define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems ) + +/* + * Access function to obtain the owner of the next entry in a list. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list + * and returns that entry's pxOwner parameter. Using multiple calls to this + * function it is therefore possible to move through every item contained in + * a list. + * + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxTCB pxTCB is set to the address of the owner of the next list item. + * @param pxList The list from which the next item owner is to be returned. + * + * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ +{ \ +List_t * const pxConstList = ( pxList ); \ + /* Increment the index to the next item and return the item, ensuring */ \ + /* we don't return the marker used at the end of the list. */ \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \ + { \ + ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \ + } \ + ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \ +} + + +/* + * Access function to obtain the owner of the first entry in a list. Lists + * are normally sorted in ascending item value order. + * + * This function returns the pxOwner member of the first item in the list. + * The pxOwner parameter of a list item is a pointer to the object that owns + * the list item. In the scheduler this is normally a task control block. + * The pxOwner parameter effectively creates a two way link between the list + * item and its owner. + * + * @param pxList The list from which the owner of the head item is to be + * returned. + * + * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY + * \ingroup LinkedList + */ +#define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( (&( ( pxList )->xListEnd ))->pxNext->pvOwner ) + +/* + * Check to see if a list item is within a list. The list item maintains a + * "container" pointer that points to the list it is in. All this macro does + * is check to see if the container and the list match. + * + * @param pxList The list we want to know if the list item is within. + * @param pxListItem The list item we want to know if is in the list. + * @return pdTRUE if the list item is in the list, otherwise pdFALSE. + */ +#define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxList ) ) ? ( pdTRUE ) : ( pdFALSE ) ) + +/* + * Return the list a list item is contained within (referenced from). + * + * @param pxListItem The list item being queried. + * @return A pointer to the List_t object that references the pxListItem + */ +#define listLIST_ITEM_CONTAINER( pxListItem ) ( ( pxListItem )->pxContainer ) + +/* + * This provides a crude means of knowing if a list has been initialised, as + * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise() + * function. + */ +#define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portMAX_DELAY ) + +/* + * Must be called before a list is used! This initialises all the members + * of the list structure and inserts the xListEnd item into the list as a + * marker to the back of the list. + * + * @param pxList Pointer to the list being initialised. + * + * \page vListInitialise vListInitialise + * \ingroup LinkedList + */ +void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; + +/* + * Must be called before a list item is used. This sets the list container to + * null so the item does not think that it is already contained in a list. + * + * @param pxItem Pointer to the list item being initialised. + * + * \page vListInitialiseItem vListInitialiseItem + * \ingroup LinkedList + */ +void vListInitialiseItem( ListItem_t * const pxItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted into the list in + * a position determined by its item value (descending item value order). + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The item that is to be placed in the list. + * + * \page vListInsert vListInsert + * \ingroup LinkedList + */ +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Insert a list item into a list. The item will be inserted in a position + * such that it will be the last item within the list returned by multiple + * calls to listGET_OWNER_OF_NEXT_ENTRY. + * + * The list member pxIndex is used to walk through a list. Calling + * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list. + * Placing an item in a list using vListInsertEnd effectively places the item + * in the list position pointed to by pxIndex. This means that every other + * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before + * the pxIndex parameter again points to the item being inserted. + * + * @param pxList The list into which the item is to be inserted. + * + * @param pxNewListItem The list item to be inserted into the list. + * + * \page vListInsertEnd vListInsertEnd + * \ingroup LinkedList + */ +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION; + +/* + * Remove an item from a list. The list item has a pointer to the list that + * it is in, so only the list item need be passed into the function. + * + * @param uxListRemove The item to be removed. The item will remove itself from + * the list pointed to by it's pxContainer parameter. + * + * @return The number of items that remain in the list after the list item has + * been removed. + * + * \page uxListRemove uxListRemove + * \ingroup LinkedList + */ +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) PRIVILEGED_FUNCTION; + +#ifdef __cplusplus +} +#endif + +#endif + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h b/Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h new file mode 100644 index 0000000..0c3edb9 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h @@ -0,0 +1,803 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +/* + * Message buffers build functionality on top of FreeRTOS stream buffers. + * Whereas stream buffers are used to send a continuous stream of data from one + * task or interrupt to another, message buffers are used to send variable + * length discrete messages from one task or interrupt to another. Their + * implementation is light weight, making them particularly suited for interrupt + * to task and core to core communication scenarios. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * timeout to 0. + * + * Message buffers hold variable length messages. To enable that, when a + * message is written to the message buffer an additional sizeof( size_t ) bytes + * are also written to store the message's length (that happens internally, with + * the API function). sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so writing a 10 byte message to a message buffer on a 32-bit + * architecture will actually reduce the available space in the message buffer + * by 14 bytes (10 byte are used by the message, and 4 bytes to hold the length + * of the message). + */ + +#ifndef FREERTOS_MESSAGE_BUFFER_H +#define FREERTOS_MESSAGE_BUFFER_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include message_buffer.h" +#endif + +/* Message buffers are built onto of stream buffers. */ +#include "stream_buffer.h" + +#if defined( __cplusplus ) +extern "C" { +#endif + +/** + * Type by which message buffers are referenced. For example, a call to + * xMessageBufferCreate() returns an MessageBufferHandle_t variable that can + * then be used as a parameter to xMessageBufferSend(), xMessageBufferReceive(), + * etc. + */ +typedef void * MessageBufferHandle_t; + +/*-----------------------------------------------------------*/ + +/** + * message_buffer.h + * +
+MessageBufferHandle_t xMessageBufferCreate( size_t xBufferSizeBytes ); ++ * + * Creates a new message buffer using dynamically allocated memory. See + * xMessageBufferCreateStatic() for a version that uses statically allocated + * memory (memory that is allocated at compile time). + * + * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in + * FreeRTOSConfig.h for xMessageBufferCreate() to be available. + * + * @param xBufferSizeBytes The total number of bytes (not messages) the message + * buffer will be able to hold at any one time. When a message is written to + * the message buffer an additional sizeof( size_t ) bytes are also written to + * store the message's length. sizeof( size_t ) is typically 4 bytes on a + * 32-bit architecture, so on most 32-bit architectures a 10 byte message will + * take up 14 bytes of message buffer space. + * + * @return If NULL is returned, then the message buffer cannot be created + * because there is insufficient heap memory available for FreeRTOS to allocate + * the message buffer data structures and storage area. A non-NULL value being + * returned indicates that the message buffer has been created successfully - + * the returned value should be stored as the handle to the created message + * buffer. + * + * Example use: +
+ +void vAFunction( void ) +{ +MessageBufferHandle_t xMessageBuffer; +const size_t xMessageBufferSizeBytes = 100; + + // Create a message buffer that can hold 100 bytes. The memory used to hold + // both the message buffer structure and the messages themselves is allocated + // dynamically. Each message added to the buffer consumes an additional 4 + // bytes which are used to hold the lengh of the message. + xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes ); + + if( xMessageBuffer == NULL ) + { + // There was not enough heap memory space available to create the + // message buffer. + } + else + { + // The message buffer was created successfully and can now be used. + } + ++ * \defgroup xMessageBufferCreate xMessageBufferCreate + * \ingroup MessageBufferManagement + */ +#define xMessageBufferCreate( xBufferSizeBytes ) ( MessageBufferHandle_t ) xStreamBufferGenericCreate( xBufferSizeBytes, ( size_t ) 0, pdTRUE ) + +/** + * message_buffer.h + * +
+MessageBufferHandle_t xMessageBufferCreateStatic( size_t xBufferSizeBytes, + uint8_t *pucMessageBufferStorageArea, + StaticMessageBuffer_t *pxStaticMessageBuffer ); ++ * Creates a new message buffer using statically allocated memory. See + * xMessageBufferCreate() for a version that uses dynamically allocated memory. + * + * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the + * pucMessageBufferStorageArea parameter. When a message is written to the + * message buffer an additional sizeof( size_t ) bytes are also written to store + * the message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so on most 32-bit architecture a 10 byte message will take up + * 14 bytes of message buffer space. The maximum number of bytes that can be + * stored in the message buffer is actually (xBufferSizeBytes - 1). + * + * @param pucMessageBufferStorageArea Must point to a uint8_t array that is at + * least xBufferSizeBytes + 1 big. This is the array to which messages are + * copied when they are written to the message buffer. + * + * @param pxStaticMessageBuffer Must point to a variable of type + * StaticMessageBuffer_t, which will be used to hold the message buffer's data + * structure. + * + * @return If the message buffer is created successfully then a handle to the + * created message buffer is returned. If either pucMessageBufferStorageArea or + * pxStaticmessageBuffer are NULL then NULL is returned. + * + * Example use: +
+ +// Used to dimension the array used to hold the messages. The available space +// will actually be one less than this, so 999. +#define STORAGE_SIZE_BYTES 1000 + +// Defines the memory that will actually hold the messages within the message +// buffer. +static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ]; + +// The variable used to hold the message buffer structure. +StaticMessageBuffer_t xMessageBufferStruct; + +void MyFunction( void ) +{ +MessageBufferHandle_t xMessageBuffer; + + xMessageBuffer = xMessageBufferCreateStatic( sizeof( ucBufferStorage ), + ucBufferStorage, + &xMessageBufferStruct ); + + // As neither the pucMessageBufferStorageArea or pxStaticMessageBuffer + // parameters were NULL, xMessageBuffer will not be NULL, and can be used to + // reference the created message buffer in other message buffer API calls. + + // Other code that uses the message buffer can go here. +} + ++ * \defgroup xMessageBufferCreateStatic xMessageBufferCreateStatic + * \ingroup MessageBufferManagement + */ +#define xMessageBufferCreateStatic( xBufferSizeBytes, pucMessageBufferStorageArea, pxStaticMessageBuffer ) ( MessageBufferHandle_t ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, 0, pdTRUE, pucMessageBufferStorageArea, pxStaticMessageBuffer ) + +/** + * message_buffer.h + * +
+size_t xMessageBufferSend( MessageBufferHandle_t xMessageBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ); ++ * + * Sends a discrete message to the message buffer. The message can be any + * length that fits within the buffer's free space, and is copied into the + * buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferSend() to write to a message buffer from a task. Use + * xMessageBufferSendFromISR() to write to a message buffer from an interrupt + * service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer to which a message is + * being sent. + * + * @param pvTxData A pointer to the message that is to be copied into the + * message buffer. + * + * @param xDataLengthBytes The length of the message. That is, the number of + * bytes to copy from pvTxData into the message buffer. When a message is + * written to the message buffer an additional sizeof( size_t ) bytes are also + * written to store the message's length. sizeof( size_t ) is typically 4 bytes + * on a 32-bit architecture, so on most 32-bit architecture setting + * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24 + * bytes (20 bytes of message data and 4 bytes to hold the message length). + * + * @param xTicksToWait The maximum amount of time the calling task should remain + * in the Blocked state to wait for enough space to become available in the + * message buffer, should the message buffer have insufficient space when + * xMessageBufferSend() is called. The calling task will never block if + * xTicksToWait is zero. The block time is specified in tick periods, so the + * absolute time it represents is dependent on the tick frequency. The macro + * pdMS_TO_TICKS() can be used to convert a time specified in milliseconds into + * a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will cause + * the task to wait indefinitely (without timing out), provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any + * CPU time when they are in the Blocked state. + * + * @return The number of bytes written to the message buffer. If the call to + * xMessageBufferSend() times out before there was enough space to write the + * message into the message buffer then zero is returned. If the call did not + * time out then xDataLengthBytes is returned. + * + * Example use: ++void vAFunction( MessageBufferHandle_t xMessageBuffer ) +{ +size_t xBytesSent; +uint8_t ucArrayToSend[] = { 0, 1, 2, 3 }; +char *pcStringToSend = "String to send"; +const TickType_t x100ms = pdMS_TO_TICKS( 100 ); + + // Send an array to the message buffer, blocking for a maximum of 100ms to + // wait for enough space to be available in the message buffer. + xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms ); + + if( xBytesSent != sizeof( ucArrayToSend ) ) + { + // The call to xMessageBufferSend() times out before there was enough + // space in the buffer for the data to be written. + } + + // Send the string to the message buffer. Return immediately if there is + // not enough space in the buffer. + xBytesSent = xMessageBufferSend( xMessageBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 ); + + if( xBytesSent != strlen( pcStringToSend ) ) + { + // The string could not be added to the message buffer because there was + // not enough free space in the buffer. + } +} ++ * \defgroup xMessageBufferSend xMessageBufferSend + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSend( xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) xStreamBufferSend( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, xTicksToWait ) + +/** + * message_buffer.h + * ++size_t xMessageBufferSendFromISR( MessageBufferHandle_t xMessageBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * Interrupt safe version of the API function that sends a discrete message to + * the message buffer. The message can be any length that fits within the + * buffer's free space, and is copied into the buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferSend() to write to a message buffer from a task. Use + * xMessageBufferSendFromISR() to write to a message buffer from an interrupt + * service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer to which a message is + * being sent. + * + * @param pvTxData A pointer to the message that is to be copied into the + * message buffer. + * + * @param xDataLengthBytes The length of the message. That is, the number of + * bytes to copy from pvTxData into the message buffer. When a message is + * written to the message buffer an additional sizeof( size_t ) bytes are also + * written to store the message's length. sizeof( size_t ) is typically 4 bytes + * on a 32-bit architecture, so on most 32-bit architecture setting + * xDataLengthBytes to 20 will reduce the free space in the message buffer by 24 + * bytes (20 bytes of message data and 4 bytes to hold the message length). + * + * @param pxHigherPriorityTaskWoken It is possible that a message buffer will + * have a task blocked on it waiting for data. Calling + * xMessageBufferSendFromISR() can make data available, and so cause a task that + * was waiting for data to leave the Blocked state. If calling + * xMessageBufferSendFromISR() causes a task to leave the Blocked state, and the + * unblocked task has a priority higher than the currently executing task (the + * task that was interrupted), then, internally, xMessageBufferSendFromISR() + * will set *pxHigherPriorityTaskWoken to pdTRUE. If + * xMessageBufferSendFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. This will + * ensure that the interrupt returns directly to the highest priority Ready + * state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it + * is passed into the function. See the code example below for an example. + * + * @return The number of bytes actually written to the message buffer. If the + * message buffer didn't have enough free space for the message to be stored + * then 0 is returned, otherwise xDataLengthBytes is returned. + * + * Example use: ++// A message buffer that has already been created. +MessageBufferHandle_t xMessageBuffer; + +void vAnInterruptServiceRoutine( void ) +{ +size_t xBytesSent; +char *pcStringToSend = "String to send"; +BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE. + + // Attempt to send the string to the message buffer. + xBytesSent = xMessageBufferSendFromISR( xMessageBuffer, + ( void * ) pcStringToSend, + strlen( pcStringToSend ), + &xHigherPriorityTaskWoken ); + + if( xBytesSent != strlen( pcStringToSend ) ) + { + // The string could not be added to the message buffer because there was + // not enough free space in the buffer. + } + + // If xHigherPriorityTaskWoken was set to pdTRUE inside + // xMessageBufferSendFromISR() then a task that has a priority above the + // priority of the currently executing task was unblocked and a context + // switch should be performed to ensure the ISR returns to the unblocked + // task. In most FreeRTOS ports this is done by simply passing + // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the + // variables value, and perform the context switch if necessary. Check the + // documentation for the port in use for port specific instructions. + portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); +} ++ * \defgroup xMessageBufferSendFromISR xMessageBufferSendFromISR + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSendFromISR( xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferSendFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvTxData, xDataLengthBytes, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * ++size_t xMessageBufferReceive( MessageBufferHandle_t xMessageBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ); ++ * + * Receives a discrete message from a message buffer. Messages can be of + * variable length and are copied out of the buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferReceive() to read from a message buffer from a task. Use + * xMessageBufferReceiveFromISR() to read from a message buffer from an + * interrupt service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer from which a message + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received message is + * to be copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData + * parameter. This sets the maximum length of the message that can be received. + * If xBufferLengthBytes is too small to hold the next message then the message + * will be left in the message buffer and 0 will be returned. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for a message, should the message buffer be empty. + * xMessageBufferReceive() will return immediately if xTicksToWait is zero and + * the message buffer is empty. The block time is specified in tick periods, so + * the absolute time it represents is dependent on the tick frequency. The + * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds + * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will + * cause the task to wait indefinitely (without timing out), provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. Tasks do not use any + * CPU time when they are in the Blocked state. + * + * @return The length, in bytes, of the message read from the message buffer, if + * any. If xMessageBufferReceive() times out before a message became available + * then zero is returned. If the length of the message is greater than + * xBufferLengthBytes then the message will be left in the message buffer and + * zero is returned. + * + * Example use: ++void vAFunction( MessageBuffer_t xMessageBuffer ) +{ +uint8_t ucRxData[ 20 ]; +size_t xReceivedBytes; +const TickType_t xBlockTime = pdMS_TO_TICKS( 20 ); + + // Receive the next message from the message buffer. Wait in the Blocked + // state (so not using any CPU processing time) for a maximum of 100ms for + // a message to become available. + xReceivedBytes = xMessageBufferReceive( xMessageBuffer, + ( void * ) ucRxData, + sizeof( ucRxData ), + xBlockTime ); + + if( xReceivedBytes > 0 ) + { + // A ucRxData contains a message that is xReceivedBytes long. Process + // the message here.... + } +} ++ * \defgroup xMessageBufferReceive xMessageBufferReceive + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReceive( xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) xStreamBufferReceive( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, xTicksToWait ) + + +/** + * message_buffer.h + * ++size_t xMessageBufferReceiveFromISR( MessageBufferHandle_t xMessageBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * An interrupt safe version of the API function that receives a discrete + * message from a message buffer. Messages can be of variable length and are + * copied out of the buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xMessageBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xMessageBufferRead()) inside a critical section and set the receive + * block time to 0. + * + * Use xMessageBufferReceive() to read from a message buffer from a task. Use + * xMessageBufferReceiveFromISR() to read from a message buffer from an + * interrupt service routine (ISR). + * + * @param xMessageBuffer The handle of the message buffer from which a message + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received message is + * to be copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the pvRxData + * parameter. This sets the maximum length of the message that can be received. + * If xBufferLengthBytes is too small to hold the next message then the message + * will be left in the message buffer and 0 will be returned. + * + * @param pxHigherPriorityTaskWoken It is possible that a message buffer will + * have a task blocked on it waiting for space to become available. Calling + * xMessageBufferReceiveFromISR() can make space available, and so cause a task + * that is waiting for space to leave the Blocked state. If calling + * xMessageBufferReceiveFromISR() causes a task to leave the Blocked state, and + * the unblocked task has a priority higher than the currently executing task + * (the task that was interrupted), then, internally, + * xMessageBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. + * If xMessageBufferReceiveFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. That will + * ensure the interrupt returns directly to the highest priority Ready state + * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is + * passed into the function. See the code example below for an example. + * + * @return The length, in bytes, of the message read from the message buffer, if + * any. + * + * Example use: ++// A message buffer that has already been created. +MessageBuffer_t xMessageBuffer; + +void vAnInterruptServiceRoutine( void ) +{ +uint8_t ucRxData[ 20 ]; +size_t xReceivedBytes; +BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE. + + // Receive the next message from the message buffer. + xReceivedBytes = xMessageBufferReceiveFromISR( xMessageBuffer, + ( void * ) ucRxData, + sizeof( ucRxData ), + &xHigherPriorityTaskWoken ); + + if( xReceivedBytes > 0 ) + { + // A ucRxData contains a message that is xReceivedBytes long. Process + // the message here.... + } + + // If xHigherPriorityTaskWoken was set to pdTRUE inside + // xMessageBufferReceiveFromISR() then a task that has a priority above the + // priority of the currently executing task was unblocked and a context + // switch should be performed to ensure the ISR returns to the unblocked + // task. In most FreeRTOS ports this is done by simply passing + // xHigherPriorityTaskWoken into portYIELD_FROM_ISR(), which will test the + // variables value, and perform the context switch if necessary. Check the + // documentation for the port in use for port specific instructions. + portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); +} ++ * \defgroup xMessageBufferReceiveFromISR xMessageBufferReceiveFromISR + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReceiveFromISR( xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) xStreamBufferReceiveFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pvRxData, xBufferLengthBytes, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * ++void vMessageBufferDelete( MessageBufferHandle_t xMessageBuffer ); ++ * + * Deletes a message buffer that was previously created using a call to + * xMessageBufferCreate() or xMessageBufferCreateStatic(). If the message + * buffer was created using dynamic memory (that is, by xMessageBufferCreate()), + * then the allocated memory is freed. + * + * A message buffer handle must not be used after the message buffer has been + * deleted. + * + * @param xMessageBuffer The handle of the message buffer to be deleted. + * + */ +#define vMessageBufferDelete( xMessageBuffer ) vStreamBufferDelete( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h ++BaseType_t xMessageBufferIsFull( MessageBufferHandle_t xMessageBuffer ) ); ++ * + * Tests to see if a message buffer is full. A message buffer is full if it + * cannot accept any more messages, of any size, until space is made available + * by a message being removed from the message buffer. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return If the message buffer referenced by xMessageBuffer is full then + * pdTRUE is returned. Otherwise pdFALSE is returned. + */ +#define xMessageBufferIsFull( xMessageBuffer ) xStreamBufferIsFull( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h ++BaseType_t xMessageBufferIsEmpty( MessageBufferHandle_t xMessageBuffer ) ); ++ * + * Tests to see if a message buffer is empty (does not contain any messages). + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return If the message buffer referenced by xMessageBuffer is empty then + * pdTRUE is returned. Otherwise pdFALSE is returned. + * + */ +#define xMessageBufferIsEmpty( xMessageBuffer ) xStreamBufferIsEmpty( ( StreamBufferHandle_t ) xMessageBuffer ) + +/** + * message_buffer.h ++BaseType_t xMessageBufferReset( MessageBufferHandle_t xMessageBuffer ); ++ * + * Resets a message buffer to its initial empty state, discarding any message it + * contained. + * + * A message buffer can only be reset if there are no tasks blocked on it. + * + * @param xMessageBuffer The handle of the message buffer being reset. + * + * @return If the message buffer was reset then pdPASS is returned. If the + * message buffer could not be reset because either there was a task blocked on + * the message queue to wait for space to become available, or to wait for a + * a message to be available, then pdFAIL is returned. + * + * \defgroup xMessageBufferReset xMessageBufferReset + * \ingroup MessageBufferManagement + */ +#define xMessageBufferReset( xMessageBuffer ) xStreamBufferReset( ( StreamBufferHandle_t ) xMessageBuffer ) + + +/** + * message_buffer.h ++size_t xMessageBufferSpaceAvailable( MessageBufferHandle_t xMessageBuffer ) ); ++ * Returns the number of bytes of free space in the message buffer. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return The number of bytes that can be written to the message buffer before + * the message buffer would be full. When a message is written to the message + * buffer an additional sizeof( size_t ) bytes are also written to store the + * message's length. sizeof( size_t ) is typically 4 bytes on a 32-bit + * architecture, so if xMessageBufferSpacesAvailable() returns 10, then the size + * of the largest message that can be written to the message buffer is 6 bytes. + * + * \defgroup xMessageBufferSpaceAvailable xMessageBufferSpaceAvailable + * \ingroup MessageBufferManagement + */ +#define xMessageBufferSpaceAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) +#define xMessageBufferSpacesAvailable( xMessageBuffer ) xStreamBufferSpacesAvailable( ( StreamBufferHandle_t ) xMessageBuffer ) /* Corrects typo in original macro name. */ + +/** + * message_buffer.h ++ size_t xMessageBufferNextLengthBytes( MessageBufferHandle_t xMessageBuffer ) ); ++ * Returns the length (in bytes) of the next message in a message buffer. + * Useful if xMessageBufferReceive() returned 0 because the size of the buffer + * passed into xMessageBufferReceive() was too small to hold the next message. + * + * @param xMessageBuffer The handle of the message buffer being queried. + * + * @return The length (in bytes) of the next message in the message buffer, or 0 + * if the message buffer is empty. + * + * \defgroup xMessageBufferNextLengthBytes xMessageBufferNextLengthBytes + * \ingroup MessageBufferManagement + */ +#define xMessageBufferNextLengthBytes( xMessageBuffer ) xStreamBufferNextMessageLengthBytes( ( StreamBufferHandle_t ) xMessageBuffer ) PRIVILEGED_FUNCTION; + +/** + * message_buffer.h + * ++BaseType_t xMessageBufferSendCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * For advanced users only. + * + * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is sent to a message buffer or stream buffer. If there was a task that + * was blocked on the message or stream buffer waiting for data to arrive then + * the sbSEND_COMPLETED() macro sends a notification to the task to remove it + * from the Blocked state. xMessageBufferSendCompletedFromISR() does the same + * thing. It is provided to enable application writers to implement their own + * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer to which data was + * written. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xMessageBufferSendCompletedFromISR(). If calling + * xMessageBufferSendCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xMessageBufferSendCompletedFromISR xMessageBufferSendCompletedFromISR + * \ingroup StreamBufferManagement + */ +#define xMessageBufferSendCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferSendCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) + +/** + * message_buffer.h + * ++BaseType_t xMessageBufferReceiveCompletedFromISR( MessageBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * For advanced users only. + * + * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is read out of a message buffer or stream buffer. If there was a task + * that was blocked on the message or stream buffer waiting for data to arrive + * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to + * remove it from the Blocked state. xMessageBufferReceiveCompletedFromISR() + * does the same thing. It is provided to enable application writers to + * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT + * ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer from which data was + * read. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xMessageBufferReceiveCompletedFromISR(). If calling + * xMessageBufferReceiveCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xMessageBufferReceiveCompletedFromISR xMessageBufferReceiveCompletedFromISR + * \ingroup StreamBufferManagement + */ +#define xMessageBufferReceiveCompletedFromISR( xMessageBuffer, pxHigherPriorityTaskWoken ) xStreamBufferReceiveCompletedFromISR( ( StreamBufferHandle_t ) xMessageBuffer, pxHigherPriorityTaskWoken ) + +#if defined( __cplusplus ) +} /* extern "C" */ +#endif + +#endif /* !defined( FREERTOS_MESSAGE_BUFFER_H ) */ diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h b/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h new file mode 100644 index 0000000..a21b7a6 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h @@ -0,0 +1,160 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * When the MPU is used the standard (non MPU) API functions are mapped to + * equivalents that start "MPU_", the prototypes for which are defined in this + * header files. This will cause the application code to call the MPU_ version + * which wraps the non-MPU version with privilege promoting then demoting code, + * so the kernel code always runs will full privileges. + */ + + +#ifndef MPU_PROTOTYPES_H +#define MPU_PROTOTYPES_H + +/* MPU versions of tasks.h API functions. */ +BaseType_t MPU_xTaskCreate( TaskFunction_t pxTaskCode, const char * const pcName, const uint16_t usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelay( const TickType_t xTicksToDelay ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskPriorityGet( const TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +eTaskState MPU_eTaskGetState( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSuspend( TaskHandle_t xTaskToSuspend ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskResume( TaskHandle_t xTaskToResume ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskStartScheduler( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSuspendAll( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskResumeAll( void ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTaskGetTickCount( void ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetNumberOfTasks( void ) FREERTOS_SYSTEM_CALL; +char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +configSTACK_DEPTH_TYPE MPU_uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) FREERTOS_SYSTEM_CALL; +TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) FREERTOS_SYSTEM_CALL; +void * MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetIdleTaskHandle( void ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskGetIdleRunTimeCounter( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskList( char * pcWriteBuffer ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask ) FREERTOS_SYSTEM_CALL; +uint32_t MPU_ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskIncrementTick( void ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) FREERTOS_SYSTEM_CALL; +void MPU_vTaskMissedYield( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of queue.h API functions. */ +BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueDelete( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t pxMutex ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +const char * MPU_pcQueueGetName( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; +QueueSetHandle_t MPU_xQueueCreateSet( const UBaseType_t uxEventQueueLength ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) FREERTOS_SYSTEM_CALL; +QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) FREERTOS_SYSTEM_CALL; +void MPU_vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxQueueGetQueueNumber( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; +uint8_t MPU_ucQueueGetQueueType( QueueHandle_t xQueue ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of timers.h API functions. */ +TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction ) FREERTOS_SYSTEM_CALL; +TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer ) FREERTOS_SYSTEM_CALL; +void * MPU_pvTimerGetTimerID( const TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +const char * MPU_pcTimerGetName( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +void MPU_vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxTimerGetReloadMode( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerCreateTimerTask( void ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of event_group.h API functions. */ +EventGroupHandle_t MPU_xEventGroupCreate( void ) FREERTOS_SYSTEM_CALL; +EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet ) FREERTOS_SYSTEM_CALL; +EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup ) FREERTOS_SYSTEM_CALL; +UBaseType_t MPU_uxEventGroupGetNumber( void* xEventGroup ) FREERTOS_SYSTEM_CALL; + +/* MPU versions of message/stream_buffer.h API functions. */ +size_t MPU_xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, const void *pvTxData, size_t xDataLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, void *pvRxData, size_t xBufferLengthBytes, TickType_t xTicksToWait ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +void MPU_vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +size_t MPU_xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) FREERTOS_SYSTEM_CALL; +BaseType_t MPU_xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) FREERTOS_SYSTEM_CALL; +StreamBufferHandle_t MPU_xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) FREERTOS_SYSTEM_CALL; +StreamBufferHandle_t MPU_xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer, uint8_t * const pucStreamBufferStorageArea, StaticStreamBuffer_t * const pxStaticStreamBuffer ) FREERTOS_SYSTEM_CALL; + + + +#endif /* MPU_PROTOTYPES_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h b/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h new file mode 100644 index 0000000..5f63d4f --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h @@ -0,0 +1,189 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef MPU_WRAPPERS_H +#define MPU_WRAPPERS_H + +/* This file redefines API functions to be called through a wrapper macro, but +only for ports that are using the MPU. */ +#ifdef portUSING_MPU_WRAPPERS + + /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE will be defined when this file is + included from queue.c or task.c to prevent it from having an effect within + those files. */ + #ifndef MPU_WRAPPERS_INCLUDED_FROM_API_FILE + + /* + * Map standard (non MPU) API functions to equivalents that start + * "MPU_". This will cause the application code to call the MPU_ + * version, which wraps the non-MPU version with privilege promoting + * then demoting code, so the kernel code always runs will full + * privileges. + */ + + /* Map standard tasks.h API functions to the MPU equivalents. */ + #define xTaskCreate MPU_xTaskCreate + #define xTaskCreateStatic MPU_xTaskCreateStatic + #define xTaskCreateRestricted MPU_xTaskCreateRestricted + #define vTaskAllocateMPURegions MPU_vTaskAllocateMPURegions + #define vTaskDelete MPU_vTaskDelete + #define vTaskDelay MPU_vTaskDelay + #define vTaskDelayUntil MPU_vTaskDelayUntil + #define xTaskAbortDelay MPU_xTaskAbortDelay + #define uxTaskPriorityGet MPU_uxTaskPriorityGet + #define eTaskGetState MPU_eTaskGetState + #define vTaskGetInfo MPU_vTaskGetInfo + #define vTaskPrioritySet MPU_vTaskPrioritySet + #define vTaskSuspend MPU_vTaskSuspend + #define vTaskResume MPU_vTaskResume + #define vTaskSuspendAll MPU_vTaskSuspendAll + #define xTaskResumeAll MPU_xTaskResumeAll + #define xTaskGetTickCount MPU_xTaskGetTickCount + #define uxTaskGetNumberOfTasks MPU_uxTaskGetNumberOfTasks + #define pcTaskGetName MPU_pcTaskGetName + #define xTaskGetHandle MPU_xTaskGetHandle + #define uxTaskGetStackHighWaterMark MPU_uxTaskGetStackHighWaterMark + #define uxTaskGetStackHighWaterMark2 MPU_uxTaskGetStackHighWaterMark2 + #define vTaskSetApplicationTaskTag MPU_vTaskSetApplicationTaskTag + #define xTaskGetApplicationTaskTag MPU_xTaskGetApplicationTaskTag + #define vTaskSetThreadLocalStoragePointer MPU_vTaskSetThreadLocalStoragePointer + #define pvTaskGetThreadLocalStoragePointer MPU_pvTaskGetThreadLocalStoragePointer + #define xTaskCallApplicationTaskHook MPU_xTaskCallApplicationTaskHook + #define xTaskGetIdleTaskHandle MPU_xTaskGetIdleTaskHandle + #define uxTaskGetSystemState MPU_uxTaskGetSystemState + #define vTaskList MPU_vTaskList + #define vTaskGetRunTimeStats MPU_vTaskGetRunTimeStats + #define ulTaskGetIdleRunTimeCounter MPU_ulTaskGetIdleRunTimeCounter + #define xTaskGenericNotify MPU_xTaskGenericNotify + #define xTaskNotifyWait MPU_xTaskNotifyWait + #define ulTaskNotifyTake MPU_ulTaskNotifyTake + #define xTaskNotifyStateClear MPU_xTaskNotifyStateClear + #define ulTaskNotifyValueClear MPU_ulTaskNotifyValueClear + #define xTaskCatchUpTicks MPU_xTaskCatchUpTicks + + #define xTaskGetCurrentTaskHandle MPU_xTaskGetCurrentTaskHandle + #define vTaskSetTimeOutState MPU_vTaskSetTimeOutState + #define xTaskCheckForTimeOut MPU_xTaskCheckForTimeOut + #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState + + /* Map standard queue.h API functions to the MPU equivalents. */ + #define xQueueGenericSend MPU_xQueueGenericSend + #define xQueueReceive MPU_xQueueReceive + #define xQueuePeek MPU_xQueuePeek + #define xQueueSemaphoreTake MPU_xQueueSemaphoreTake + #define uxQueueMessagesWaiting MPU_uxQueueMessagesWaiting + #define uxQueueSpacesAvailable MPU_uxQueueSpacesAvailable + #define vQueueDelete MPU_vQueueDelete + #define xQueueCreateMutex MPU_xQueueCreateMutex + #define xQueueCreateMutexStatic MPU_xQueueCreateMutexStatic + #define xQueueCreateCountingSemaphore MPU_xQueueCreateCountingSemaphore + #define xQueueCreateCountingSemaphoreStatic MPU_xQueueCreateCountingSemaphoreStatic + #define xQueueGetMutexHolder MPU_xQueueGetMutexHolder + #define xQueueTakeMutexRecursive MPU_xQueueTakeMutexRecursive + #define xQueueGiveMutexRecursive MPU_xQueueGiveMutexRecursive + #define xQueueGenericCreate MPU_xQueueGenericCreate + #define xQueueGenericCreateStatic MPU_xQueueGenericCreateStatic + #define xQueueCreateSet MPU_xQueueCreateSet + #define xQueueAddToSet MPU_xQueueAddToSet + #define xQueueRemoveFromSet MPU_xQueueRemoveFromSet + #define xQueueSelectFromSet MPU_xQueueSelectFromSet + #define xQueueGenericReset MPU_xQueueGenericReset + + #if( configQUEUE_REGISTRY_SIZE > 0 ) + #define vQueueAddToRegistry MPU_vQueueAddToRegistry + #define vQueueUnregisterQueue MPU_vQueueUnregisterQueue + #define pcQueueGetName MPU_pcQueueGetName + #endif + + /* Map standard timer.h API functions to the MPU equivalents. */ + #define xTimerCreate MPU_xTimerCreate + #define xTimerCreateStatic MPU_xTimerCreateStatic + #define pvTimerGetTimerID MPU_pvTimerGetTimerID + #define vTimerSetTimerID MPU_vTimerSetTimerID + #define xTimerIsTimerActive MPU_xTimerIsTimerActive + #define xTimerGetTimerDaemonTaskHandle MPU_xTimerGetTimerDaemonTaskHandle + #define xTimerPendFunctionCall MPU_xTimerPendFunctionCall + #define pcTimerGetName MPU_pcTimerGetName + #define vTimerSetReloadMode MPU_vTimerSetReloadMode + #define uxTimerGetReloadMode MPU_uxTimerGetReloadMode + #define xTimerGetPeriod MPU_xTimerGetPeriod + #define xTimerGetExpiryTime MPU_xTimerGetExpiryTime + #define xTimerGenericCommand MPU_xTimerGenericCommand + + /* Map standard event_group.h API functions to the MPU equivalents. */ + #define xEventGroupCreate MPU_xEventGroupCreate + #define xEventGroupCreateStatic MPU_xEventGroupCreateStatic + #define xEventGroupWaitBits MPU_xEventGroupWaitBits + #define xEventGroupClearBits MPU_xEventGroupClearBits + #define xEventGroupSetBits MPU_xEventGroupSetBits + #define xEventGroupSync MPU_xEventGroupSync + #define vEventGroupDelete MPU_vEventGroupDelete + + /* Map standard message/stream_buffer.h API functions to the MPU + equivalents. */ + #define xStreamBufferSend MPU_xStreamBufferSend + #define xStreamBufferReceive MPU_xStreamBufferReceive + #define xStreamBufferNextMessageLengthBytes MPU_xStreamBufferNextMessageLengthBytes + #define vStreamBufferDelete MPU_vStreamBufferDelete + #define xStreamBufferIsFull MPU_xStreamBufferIsFull + #define xStreamBufferIsEmpty MPU_xStreamBufferIsEmpty + #define xStreamBufferReset MPU_xStreamBufferReset + #define xStreamBufferSpacesAvailable MPU_xStreamBufferSpacesAvailable + #define xStreamBufferBytesAvailable MPU_xStreamBufferBytesAvailable + #define xStreamBufferSetTriggerLevel MPU_xStreamBufferSetTriggerLevel + #define xStreamBufferGenericCreate MPU_xStreamBufferGenericCreate + #define xStreamBufferGenericCreateStatic MPU_xStreamBufferGenericCreateStatic + + + /* Remove the privileged function macro, but keep the PRIVILEGED_DATA + macro so applications can place data in privileged access sections + (useful when using statically allocated objects). */ + #define PRIVILEGED_FUNCTION + #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) + #define FREERTOS_SYSTEM_CALL + + #else /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + + /* Ensure API functions go in the privileged execution section. */ + #define PRIVILEGED_FUNCTION __attribute__((section("privileged_functions"))) + #define PRIVILEGED_DATA __attribute__((section("privileged_data"))) + #define FREERTOS_SYSTEM_CALL __attribute__((section( "freertos_system_calls"))) + + #endif /* MPU_WRAPPERS_INCLUDED_FROM_API_FILE */ + +#else /* portUSING_MPU_WRAPPERS */ + + #define PRIVILEGED_FUNCTION + #define PRIVILEGED_DATA + #define FREERTOS_SYSTEM_CALL + #define portUSING_MPU_WRAPPERS 0 + +#endif /* portUSING_MPU_WRAPPERS */ + + +#endif /* MPU_WRAPPERS_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h b/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h new file mode 100644 index 0000000..a2099c3 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h @@ -0,0 +1,199 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/*----------------------------------------------------------- + * Portable layer API. Each function must be defined for each port. + *----------------------------------------------------------*/ + +#ifndef PORTABLE_H +#define PORTABLE_H + +/* Each FreeRTOS port has a unique portmacro.h header file. Originally a +pre-processor definition was used to ensure the pre-processor found the correct +portmacro.h file for the port being used. That scheme was deprecated in favour +of setting the compiler's include path such that it found the correct +portmacro.h file - removing the need for the constant and allowing the +portmacro.h file to be located anywhere in relation to the port being used. +Purely for reasons of backward compatibility the old method is still valid, but +to make it clear that new projects should not use it, support for the port +specific constants has been moved into the deprecated_definitions.h header +file. */ +#include "deprecated_definitions.h" + +/* If portENTER_CRITICAL is not defined then including deprecated_definitions.h +did not result in a portmacro.h header file being included - and it should be +included here. In this case the path to the correct portmacro.h header file +must be set in the compiler's include path. */ +#ifndef portENTER_CRITICAL + #include "portmacro.h" +#endif + +#if portBYTE_ALIGNMENT == 32 + #define portBYTE_ALIGNMENT_MASK ( 0x001f ) +#endif + +#if portBYTE_ALIGNMENT == 16 + #define portBYTE_ALIGNMENT_MASK ( 0x000f ) +#endif + +#if portBYTE_ALIGNMENT == 8 + #define portBYTE_ALIGNMENT_MASK ( 0x0007 ) +#endif + +#if portBYTE_ALIGNMENT == 4 + #define portBYTE_ALIGNMENT_MASK ( 0x0003 ) +#endif + +#if portBYTE_ALIGNMENT == 2 + #define portBYTE_ALIGNMENT_MASK ( 0x0001 ) +#endif + +#if portBYTE_ALIGNMENT == 1 + #define portBYTE_ALIGNMENT_MASK ( 0x0000 ) +#endif + +#ifndef portBYTE_ALIGNMENT_MASK + #error "Invalid portBYTE_ALIGNMENT definition" +#endif + +#ifndef portNUM_CONFIGURABLE_REGIONS + #define portNUM_CONFIGURABLE_REGIONS 1 +#endif + +#ifndef portHAS_STACK_OVERFLOW_CHECKING + #define portHAS_STACK_OVERFLOW_CHECKING 0 +#endif + +#ifndef portARCH_NAME + #define portARCH_NAME NULL +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#include "mpu_wrappers.h" + +/* + * Setup the stack of a new task so it is ready to be placed under the + * scheduler control. The registers have to be placed on the stack in + * the order that the port expects to find them. + * + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; + #else + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters, BaseType_t xRunPrivileged ) PRIVILEGED_FUNCTION; + #endif +#else + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, StackType_t *pxEndOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; + #else + StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) PRIVILEGED_FUNCTION; + #endif +#endif + +/* Used by heap_5.c to define the start address and size of each memory region +that together comprise the total FreeRTOS heap space. */ +typedef struct HeapRegion +{ + uint8_t *pucStartAddress; + size_t xSizeInBytes; +} HeapRegion_t; + +/* Used to pass information about the heap out of vPortGetHeapStats(). */ +typedef struct xHeapStats +{ + size_t xAvailableHeapSpaceInBytes; /* The total heap size currently available - this is the sum of all the free blocks, not the largest block that can be allocated. */ + size_t xSizeOfLargestFreeBlockInBytes; /* The maximum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xSizeOfSmallestFreeBlockInBytes; /* The minimum size, in bytes, of all the free blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xNumberOfFreeBlocks; /* The number of free memory blocks within the heap at the time vPortGetHeapStats() is called. */ + size_t xMinimumEverFreeBytesRemaining; /* The minimum amount of total free memory (sum of all free blocks) there has been in the heap since the system booted. */ + size_t xNumberOfSuccessfulAllocations; /* The number of calls to pvPortMalloc() that have returned a valid memory block. */ + size_t xNumberOfSuccessfulFrees; /* The number of calls to vPortFree() that has successfully freed a block of memory. */ +} HeapStats_t; + +/* + * Used to define multiple heap regions for use by heap_5.c. This function + * must be called before any calls to pvPortMalloc() - not creating a task, + * queue, semaphore, mutex, software timer, event group, etc. will result in + * pvPortMalloc being called. + * + * pxHeapRegions passes in an array of HeapRegion_t structures - each of which + * defines a region of memory that can be used as the heap. The array is + * terminated by a HeapRegions_t structure that has a size of 0. The region + * with the lowest start address must appear first in the array. + */ +void vPortDefineHeapRegions( const HeapRegion_t * const pxHeapRegions ) PRIVILEGED_FUNCTION; + +/* + * Returns a HeapStats_t structure filled with information about the current + * heap state. + */ +void vPortGetHeapStats( HeapStats_t *pxHeapStats ); + +/* + * Map to the memory management routines required for the port. + */ +void *pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION; +void vPortFree( void *pv ) PRIVILEGED_FUNCTION; +void vPortInitialiseBlocks( void ) PRIVILEGED_FUNCTION; +size_t xPortGetFreeHeapSize( void ) PRIVILEGED_FUNCTION; +size_t xPortGetMinimumEverFreeHeapSize( void ) PRIVILEGED_FUNCTION; + +/* + * Setup the hardware ready for the scheduler to take control. This generally + * sets up a tick interrupt and sets timers for the correct tick frequency. + */ +BaseType_t xPortStartScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * Undo any hardware/ISR setup that was performed by xPortStartScheduler() so + * the hardware is left in its original condition after the scheduler stops + * executing. + */ +void vPortEndScheduler( void ) PRIVILEGED_FUNCTION; + +/* + * The structures and methods of manipulating the MPU are contained within the + * port layer. + * + * Fills the xMPUSettings structure with the memory region information + * contained in xRegions. + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + struct xMEMORY_REGION; + void vPortStoreTaskMPUSettings( xMPU_SETTINGS *xMPUSettings, const struct xMEMORY_REGION * const xRegions, StackType_t *pxBottomOfStack, uint32_t ulStackDepth ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* PORTABLE_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h b/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h new file mode 100644 index 0000000..0d95130 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h @@ -0,0 +1,124 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef PROJDEFS_H +#define PROJDEFS_H + +/* + * Defines the prototype to which task functions must conform. Defined in this + * file to ensure the type is known before portable.h is included. + */ +typedef void (*TaskFunction_t)( void * ); + +/* Converts a time in milliseconds to a time in ticks. This macro can be +overridden by a macro of the same name defined in FreeRTOSConfig.h in case the +definition here is not suitable for your application. */ +#ifndef pdMS_TO_TICKS + #define pdMS_TO_TICKS( xTimeInMs ) ( ( TickType_t ) ( ( ( TickType_t ) ( xTimeInMs ) * ( TickType_t ) configTICK_RATE_HZ ) / ( TickType_t ) 1000 ) ) +#endif + +#define pdFALSE ( ( BaseType_t ) 0 ) +#define pdTRUE ( ( BaseType_t ) 1 ) + +#define pdPASS ( pdTRUE ) +#define pdFAIL ( pdFALSE ) +#define errQUEUE_EMPTY ( ( BaseType_t ) 0 ) +#define errQUEUE_FULL ( ( BaseType_t ) 0 ) + +/* FreeRTOS error definitions. */ +#define errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ( -1 ) +#define errQUEUE_BLOCKED ( -4 ) +#define errQUEUE_YIELD ( -5 ) + +/* Macros used for basic data corruption checks. */ +#ifndef configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES + #define configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES 0 +#endif + +#if( configUSE_16_BIT_TICKS == 1 ) + #define pdINTEGRITY_CHECK_VALUE 0x5a5a +#else + #define pdINTEGRITY_CHECK_VALUE 0x5a5a5a5aUL +#endif + +/* The following errno values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_ERRNO_NONE 0 /* No errors */ +#define pdFREERTOS_ERRNO_ENOENT 2 /* No such file or directory */ +#define pdFREERTOS_ERRNO_EINTR 4 /* Interrupted system call */ +#define pdFREERTOS_ERRNO_EIO 5 /* I/O error */ +#define pdFREERTOS_ERRNO_ENXIO 6 /* No such device or address */ +#define pdFREERTOS_ERRNO_EBADF 9 /* Bad file number */ +#define pdFREERTOS_ERRNO_EAGAIN 11 /* No more processes */ +#define pdFREERTOS_ERRNO_EWOULDBLOCK 11 /* Operation would block */ +#define pdFREERTOS_ERRNO_ENOMEM 12 /* Not enough memory */ +#define pdFREERTOS_ERRNO_EACCES 13 /* Permission denied */ +#define pdFREERTOS_ERRNO_EFAULT 14 /* Bad address */ +#define pdFREERTOS_ERRNO_EBUSY 16 /* Mount device busy */ +#define pdFREERTOS_ERRNO_EEXIST 17 /* File exists */ +#define pdFREERTOS_ERRNO_EXDEV 18 /* Cross-device link */ +#define pdFREERTOS_ERRNO_ENODEV 19 /* No such device */ +#define pdFREERTOS_ERRNO_ENOTDIR 20 /* Not a directory */ +#define pdFREERTOS_ERRNO_EISDIR 21 /* Is a directory */ +#define pdFREERTOS_ERRNO_EINVAL 22 /* Invalid argument */ +#define pdFREERTOS_ERRNO_ENOSPC 28 /* No space left on device */ +#define pdFREERTOS_ERRNO_ESPIPE 29 /* Illegal seek */ +#define pdFREERTOS_ERRNO_EROFS 30 /* Read only file system */ +#define pdFREERTOS_ERRNO_EUNATCH 42 /* Protocol driver not attached */ +#define pdFREERTOS_ERRNO_EBADE 50 /* Invalid exchange */ +#define pdFREERTOS_ERRNO_EFTYPE 79 /* Inappropriate file type or format */ +#define pdFREERTOS_ERRNO_ENMFILE 89 /* No more files */ +#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */ +#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */ +#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ +#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */ +#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */ +#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */ +#define pdFREERTOS_ERRNO_ETIMEDOUT 116 /* Connection timed out */ +#define pdFREERTOS_ERRNO_EINPROGRESS 119 /* Connection already in progress */ +#define pdFREERTOS_ERRNO_EALREADY 120 /* Socket already connected */ +#define pdFREERTOS_ERRNO_EADDRNOTAVAIL 125 /* Address not available */ +#define pdFREERTOS_ERRNO_EISCONN 127 /* Socket is already connected */ +#define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ +#define pdFREERTOS_ERRNO_ENOMEDIUM 135 /* No medium inserted */ +#define pdFREERTOS_ERRNO_EILSEQ 138 /* An invalid UTF-16 sequence was encountered. */ +#define pdFREERTOS_ERRNO_ECANCELED 140 /* Operation canceled. */ + +/* The following endian values are used by FreeRTOS+ components, not FreeRTOS +itself. */ +#define pdFREERTOS_LITTLE_ENDIAN 0 +#define pdFREERTOS_BIG_ENDIAN 1 + +/* Re-defining endian values for generic naming. */ +#define pdLITTLE_ENDIAN pdFREERTOS_LITTLE_ENDIAN +#define pdBIG_ENDIAN pdFREERTOS_BIG_ENDIAN + + +#endif /* PROJDEFS_H */ + + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h b/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h new file mode 100644 index 0000000..52ccca5 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h @@ -0,0 +1,1655 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef QUEUE_H +#define QUEUE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include queue.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#include "task.h" + +/** + * Type by which queues are referenced. For example, a call to xQueueCreate() + * returns an QueueHandle_t variable that can then be used as a parameter to + * xQueueSend(), xQueueReceive(), etc. + */ +struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */ +typedef struct QueueDefinition * QueueHandle_t; + +/** + * Type by which queue sets are referenced. For example, a call to + * xQueueCreateSet() returns an xQueueSet variable that can then be used as a + * parameter to xQueueSelectFromSet(), xQueueAddToSet(), etc. + */ +typedef struct QueueDefinition * QueueSetHandle_t; + +/** + * Queue sets can contain both queues and semaphores, so the + * QueueSetMemberHandle_t is defined as a type to be used where a parameter or + * return value can be either an QueueHandle_t or an SemaphoreHandle_t. + */ +typedef struct QueueDefinition * QueueSetMemberHandle_t; + +/* For internal use only. */ +#define queueSEND_TO_BACK ( ( BaseType_t ) 0 ) +#define queueSEND_TO_FRONT ( ( BaseType_t ) 1 ) +#define queueOVERWRITE ( ( BaseType_t ) 2 ) + +/* For internal use only. These definitions *must* match those in queue.c. */ +#define queueQUEUE_TYPE_BASE ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_SET ( ( uint8_t ) 0U ) +#define queueQUEUE_TYPE_MUTEX ( ( uint8_t ) 1U ) +#define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( ( uint8_t ) 2U ) +#define queueQUEUE_TYPE_BINARY_SEMAPHORE ( ( uint8_t ) 3U ) +#define queueQUEUE_TYPE_RECURSIVE_MUTEX ( ( uint8_t ) 4U ) + +/** + * queue. h + *+ QueueHandle_t xQueueCreate( + UBaseType_t uxQueueLength, + UBaseType_t uxItemSize + ); + *+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @return If the queue is successfully create then a handle to the newly + * created queue is returned. If the queue cannot be created then 0 is + * returned. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + }; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1, xQueue2; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) ); + if( xQueue1 == 0 ) + { + // Queue was not created and must not be used. + } + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) ); + if( xQueue2 == 0 ) + { + // Queue was not created and must not be used. + } + + // ... Rest of task code. + } ++ * \defgroup xQueueCreate xQueueCreate + * \ingroup QueueManagement + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItemSize ), ( queueQUEUE_TYPE_BASE ) ) +#endif + +/** + * queue. h + *+ QueueHandle_t xQueueCreateStatic( + UBaseType_t uxQueueLength, + UBaseType_t uxItemSize, + uint8_t *pucQueueStorageBuffer, + StaticQueue_t *pxQueueBuffer + ); + *+ * + * Creates a new queue instance, and returns a handle by which the new queue + * can be referenced. + * + * Internally, within the FreeRTOS implementation, queues use two blocks of + * memory. The first block is used to hold the queue's data structures. The + * second block is used to hold items placed into the queue. If a queue is + * created using xQueueCreate() then both blocks of memory are automatically + * dynamically allocated inside the xQueueCreate() function. (see + * http://www.freertos.org/a00111.html). If a queue is created using + * xQueueCreateStatic() then the application writer must provide the memory that + * will get used by the queue. xQueueCreateStatic() therefore allows a queue to + * be created without using any dynamic memory allocation. + * + * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html + * + * @param uxQueueLength The maximum number of items that the queue can contain. + * + * @param uxItemSize The number of bytes each item in the queue will require. + * Items are queued by copy, not by reference, so this is the number of bytes + * that will be copied for each posted item. Each item on the queue must be + * the same size. + * + * @param pucQueueStorageBuffer If uxItemSize is not zero then + * pucQueueStorageBuffer must point to a uint8_t array that is at least large + * enough to hold the maximum number of items that can be in the queue at any + * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is + * zero then pucQueueStorageBuffer can be NULL. + * + * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which + * will be used to hold the queue's data structure. + * + * @return If the queue is created then a handle to the created queue is + * returned. If pxQueueBuffer is NULL then NULL is returned. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + }; + + #define QUEUE_LENGTH 10 + #define ITEM_SIZE sizeof( uint32_t ) + + // xQueueBuffer will hold the queue structure. + StaticQueue_t xQueueBuffer; + + // ucQueueStorage will hold the items posted to the queue. Must be at least + // [(queue length) * ( queue item size)] bytes long. + uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ]; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold. + ITEM_SIZE // The size of each item in the queue + &( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue. + &xQueueBuffer ); // The buffer that will hold the queue structure. + + // The queue is guaranteed to be created successfully as no dynamic memory + // allocation is used. Therefore xQueue1 is now a handle to a valid queue. + + // ... Rest of task code. + } ++ * \defgroup xQueueCreateStatic xQueueCreateStatic + * \ingroup QueueManagement + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( ( uxQueueLength ), ( uxItemSize ), ( pucQueueStorage ), ( pxQueueBuffer ), ( queueQUEUE_TYPE_BASE ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * queue. h + *+ BaseType_t xQueueSendToToFront( + QueueHandle_t xQueue, + const void *pvItemToQueue, + TickType_t xTicksToWait + ); + *+ * + * Post an item to the front of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + uint32_t ulVar = 10UL; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1, xQueue2; + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) ); + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) ); + + // ... + + if( xQueue1 != 0 ) + { + // Send an uint32_t. Wait for 10 ticks for space to become + // available if necessary. + if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS ) + { + // Failed to post the message, even after 10 ticks. + } + } + + if( xQueue2 != 0 ) + { + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 ); + } + + // ... Rest of task code. + } ++ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) + +/** + * queue. h + *+ BaseType_t xQueueSendToBack( + QueueHandle_t xQueue, + const void *pvItemToQueue, + TickType_t xTicksToWait + ); + *+ * + * This is a macro that calls xQueueGenericSend(). + * + * Post an item to the back of a queue. The item is queued by copy, not by + * reference. This function must not be called from an interrupt service + * routine. See xQueueSendFromISR () for an alternative which may be used + * in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the queue + * is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + uint32_t ulVar = 10UL; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1, xQueue2; + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) ); + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) ); + + // ... + + if( xQueue1 != 0 ) + { + // Send an uint32_t. Wait for 10 ticks for space to become + // available if necessary. + if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS ) + { + // Failed to post the message, even after 10 ticks. + } + } + + if( xQueue2 != 0 ) + { + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 ); + } + + // ... Rest of task code. + } ++ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *+ BaseType_t xQueueSend( + QueueHandle_t xQueue, + const void * pvItemToQueue, + TickType_t xTicksToWait + ); + *+ * + * This is a macro that calls xQueueGenericSend(). It is included for + * backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToFront() and xQueueSendToBack() macros. It is + * equivalent to xQueueSendToBack(). + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + uint32_t ulVar = 10UL; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1, xQueue2; + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) ); + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) ); + + // ... + + if( xQueue1 != 0 ) + { + // Send an uint32_t. Wait for 10 ticks for space to become + // available if necessary. + if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS ) + { + // Failed to post the message, even after 10 ticks. + } + } + + if( xQueue2 != 0 ) + { + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 ); + } + + // ... Rest of task code. + } ++ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) + +/** + * queue. h + *+ BaseType_t xQueueOverwrite( + QueueHandle_t xQueue, + const void * pvItemToQueue + ); + *+ * + * Only for use with queues that have a length of one - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * This function must not be called from an interrupt service routine. + * See xQueueOverwriteFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle of the queue to which the data is being sent. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @return xQueueOverwrite() is a macro that calls xQueueGenericSend(), and + * therefore has the same return values as xQueueSendToFront(). However, pdPASS + * is the only value that can be returned because xQueueOverwrite() will write + * to the queue even when the queue is already full. + * + * Example usage: ++ + void vFunction( void *pvParameters ) + { + QueueHandle_t xQueue; + uint32_t ulVarToSend, ulValReceived; + + // Create a queue to hold one uint32_t value. It is strongly + // recommended *not* to use xQueueOverwrite() on queues that can + // contain more than one value, and doing so will trigger an assertion + // if configASSERT() is defined. + xQueue = xQueueCreate( 1, sizeof( uint32_t ) ); + + // Write the value 10 to the queue using xQueueOverwrite(). + ulVarToSend = 10; + xQueueOverwrite( xQueue, &ulVarToSend ); + + // Peeking the queue should now return 10, but leave the value 10 in + // the queue. A block time of zero is used as it is known that the + // queue holds a value. + ulValReceived = 0; + xQueuePeek( xQueue, &ulValReceived, 0 ); + + if( ulValReceived != 10 ) + { + // Error unless the item was removed by a different task. + } + + // The queue is still full. Use xQueueOverwrite() to overwrite the + // value held in the queue with 100. + ulVarToSend = 100; + xQueueOverwrite( xQueue, &ulVarToSend ); + + // This time read from the queue, leaving the queue empty once more. + // A block time of 0 is used again. + xQueueReceive( xQueue, &ulValReceived, 0 ); + + // The value read should be the last value written, even though the + // queue was already full when the value was written. + if( ulValReceived != 100 ) + { + // Error! + } + + // ... +} ++ * \defgroup xQueueOverwrite xQueueOverwrite + * \ingroup QueueManagement + */ +#define xQueueOverwrite( xQueue, pvItemToQueue ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), 0, queueOVERWRITE ) + + +/** + * queue. h + *+ BaseType_t xQueueGenericSend( + QueueHandle_t xQueue, + const void * pvItemToQueue, + TickType_t xTicksToWait + BaseType_t xCopyPosition + ); + *+ * + * It is preferred that the macros xQueueSend(), xQueueSendToFront() and + * xQueueSendToBack() are used in place of calling this function directly. + * + * Post an item on a queue. The item is queued by copy, not by reference. + * This function must not be called from an interrupt service routine. + * See xQueueSendFromISR () for an alternative which may be used in an ISR. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for space to become available on the queue, should it already + * be full. The call will return immediately if this is set to 0 and the + * queue is full. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + uint32_t ulVar = 10UL; + + void vATask( void *pvParameters ) + { + QueueHandle_t xQueue1, xQueue2; + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 uint32_t values. + xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) ); + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) ); + + // ... + + if( xQueue1 != 0 ) + { + // Send an uint32_t. Wait for 10 ticks for space to become + // available if necessary. + if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS ) + { + // Failed to post the message, even after 10 ticks. + } + } + + if( xQueue2 != 0 ) + { + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK ); + } + + // ... Rest of task code. + } ++ * \defgroup xQueueSend xQueueSend + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *+ BaseType_t xQueuePeek( + QueueHandle_t xQueue, + void * const pvBuffer, + TickType_t xTicksToWait + );+ * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * This macro must not be used in an interrupt service routine. See + * xQueuePeekFromISR() for an alternative that can be called from an interrupt + * service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. The time is defined in tick periods so the constant + * portTICK_PERIOD_MS should be used to convert to real time if this is required. + * xQueuePeek() will return immediately if xTicksToWait is 0 and the queue + * is empty. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + QueueHandle_t xQueue; + + // Task to create a queue and post a value. + void vATask( void *pvParameters ) + { + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) ); + if( xQueue == 0 ) + { + // Failed to create the queue. + } + + // ... + + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 ); + + // ... Rest of task code. + } + + // Task to peek the data from the queue. + void vADifferentTask( void *pvParameters ) + { + struct AMessage *pxRxedMessage; + + if( xQueue != 0 ) + { + // Peek a message on the created queue. Block for 10 ticks if a + // message is not immediately available. + if( xQueuePeek( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) ) + { + // pcRxedMessage now points to the struct AMessage variable posted + // by vATask, but the item still remains on the queue. + } + } + + // ... Rest of task code. + } ++ * \defgroup xQueuePeek xQueuePeek + * \ingroup QueueManagement + */ +BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *+ BaseType_t xQueuePeekFromISR( + QueueHandle_t xQueue, + void *pvBuffer, + );+ * + * A version of xQueuePeek() that can be called from an interrupt service + * routine (ISR). + * + * Receive an item from a queue without removing the item from the queue. + * The item is received by copy so a buffer of adequate size must be + * provided. The number of bytes copied into the buffer was defined when + * the queue was created. + * + * Successfully received items remain on the queue so will be returned again + * by the next call, or a call to xQueueReceive(). + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * \defgroup xQueuePeekFromISR xQueuePeekFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *+ BaseType_t xQueueReceive( + QueueHandle_t xQueue, + void *pvBuffer, + TickType_t xTicksToWait + );+ * + * Receive an item from a queue. The item is received by copy so a buffer of + * adequate size must be provided. The number of bytes copied into the buffer + * was defined when the queue was created. + * + * Successfully received items are removed from the queue. + * + * This function must not be used in an interrupt service routine. See + * xQueueReceiveFromISR for an alternative that can. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param xTicksToWait The maximum amount of time the task should block + * waiting for an item to receive should the queue be empty at the time + * of the call. xQueueReceive() will return immediately if xTicksToWait + * is zero and the queue is empty. The time is defined in tick periods so the + * constant portTICK_PERIOD_MS should be used to convert to real time if this is + * required. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: ++ struct AMessage + { + char ucMessageID; + char ucData[ 20 ]; + } xMessage; + + QueueHandle_t xQueue; + + // Task to create a queue and post a value. + void vATask( void *pvParameters ) + { + struct AMessage *pxMessage; + + // Create a queue capable of containing 10 pointers to AMessage structures. + // These should be passed by pointer as they contain a lot of data. + xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) ); + if( xQueue == 0 ) + { + // Failed to create the queue. + } + + // ... + + // Send a pointer to a struct AMessage object. Don't block if the + // queue is already full. + pxMessage = & xMessage; + xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 ); + + // ... Rest of task code. + } + + // Task to receive from the queue. + void vADifferentTask( void *pvParameters ) + { + struct AMessage *pxRxedMessage; + + if( xQueue != 0 ) + { + // Receive a message on the created queue. Block for 10 ticks if a + // message is not immediately available. + if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) ) + { + // pcRxedMessage now points to the struct AMessage variable posted + // by vATask. + } + } + + // ... Rest of task code. + } ++ * \defgroup xQueueReceive xQueueReceive + * \ingroup QueueManagement + */ +BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue );+ * + * Return the number of messages stored in a queue. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of messages available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue );+ * + * Return the number of free spaces available in a queue. This is equal to the + * number of items that can be sent to the queue before the queue becomes full + * if no items are removed. + * + * @param xQueue A handle to the queue being queried. + * + * @return The number of spaces available in the queue. + * + * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting + * \ingroup QueueManagement + */ +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *void vQueueDelete( QueueHandle_t xQueue );+ * + * Delete a queue - freeing all the memory allocated for storing of items + * placed on the queue. + * + * @param xQueue A handle to the queue to be deleted. + * + * \defgroup vQueueDelete vQueueDelete + * \ingroup QueueManagement + */ +void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *+ BaseType_t xQueueSendToFrontFromISR( + QueueHandle_t xQueue, + const void *pvItemToQueue, + BaseType_t *pxHigherPriorityTaskWoken + ); ++ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the front of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): ++ void vBufferISR( void ) + { + char cIn; + BaseType_t xHigherPrioritTaskWoken; + + // We have not woken a task at the start of the ISR. + xHigherPriorityTaskWoken = pdFALSE; + + // Loop until the buffer is empty. + do + { + // Obtain a byte from the buffer. + cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS ); + + // Post the byte. + xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken ); + + } while( portINPUT_BYTE( BUFFER_COUNT ) ); + + // Now the buffer is empty we can switch context if necessary. + if( xHigherPriorityTaskWoken ) + { + taskYIELD (); + } + } ++ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToFrontFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT ) + + +/** + * queue. h + *+ BaseType_t xQueueSendToBackFromISR( + QueueHandle_t xQueue, + const void *pvItemToQueue, + BaseType_t *pxHigherPriorityTaskWoken + ); ++ * + * This is a macro that calls xQueueGenericSendFromISR(). + * + * Post an item to the back of a queue. It is safe to use this macro from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): ++ void vBufferISR( void ) + { + char cIn; + BaseType_t xHigherPriorityTaskWoken; + + // We have not woken a task at the start of the ISR. + xHigherPriorityTaskWoken = pdFALSE; + + // Loop until the buffer is empty. + do + { + // Obtain a byte from the buffer. + cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS ); + + // Post the byte. + xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken ); + + } while( portINPUT_BYTE( BUFFER_COUNT ) ); + + // Now the buffer is empty we can switch context if necessary. + if( xHigherPriorityTaskWoken ) + { + taskYIELD (); + } + } ++ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendToBackFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *+ BaseType_t xQueueOverwriteFromISR( + QueueHandle_t xQueue, + const void * pvItemToQueue, + BaseType_t *pxHigherPriorityTaskWoken + ); + *+ * + * A version of xQueueOverwrite() that can be used in an interrupt service + * routine (ISR). + * + * Only for use with queues that can hold a single item - so the queue is either + * empty or full. + * + * Post an item on a queue. If the queue is already full then overwrite the + * value held in the queue. The item is queued by copy, not by reference. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueOverwriteFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueOverwriteFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return xQueueOverwriteFromISR() is a macro that calls + * xQueueGenericSendFromISR(), and therefore has the same return values as + * xQueueSendToFrontFromISR(). However, pdPASS is the only value that can be + * returned because xQueueOverwriteFromISR() will write to the queue even when + * the queue is already full. + * + * Example usage: ++ + QueueHandle_t xQueue; + + void vFunction( void *pvParameters ) + { + // Create a queue to hold one uint32_t value. It is strongly + // recommended *not* to use xQueueOverwriteFromISR() on queues that can + // contain more than one value, and doing so will trigger an assertion + // if configASSERT() is defined. + xQueue = xQueueCreate( 1, sizeof( uint32_t ) ); +} + +void vAnInterruptHandler( void ) +{ +// xHigherPriorityTaskWoken must be set to pdFALSE before it is used. +BaseType_t xHigherPriorityTaskWoken = pdFALSE; +uint32_t ulVarToSend, ulValReceived; + + // Write the value 10 to the queue using xQueueOverwriteFromISR(). + ulVarToSend = 10; + xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken ); + + // The queue is full, but calling xQueueOverwriteFromISR() again will still + // pass because the value held in the queue will be overwritten with the + // new value. + ulVarToSend = 100; + xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken ); + + // Reading from the queue will now return 100. + + // ... + + if( xHigherPrioritytaskWoken == pdTRUE ) + { + // Writing to the queue caused a task to unblock and the unblocked task + // has a priority higher than or equal to the priority of the currently + // executing task (the task this interrupt interrupted). Perform a context + // switch so this interrupt returns directly to the unblocked task. + portYIELD_FROM_ISR(); // or portEND_SWITCHING_ISR() depending on the port. + } +} ++ * \defgroup xQueueOverwriteFromISR xQueueOverwriteFromISR + * \ingroup QueueManagement + */ +#define xQueueOverwriteFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueOVERWRITE ) + +/** + * queue. h + *+ BaseType_t xQueueSendFromISR( + QueueHandle_t xQueue, + const void *pvItemToQueue, + BaseType_t *pxHigherPriorityTaskWoken + ); ++ * + * This is a macro that calls xQueueGenericSendFromISR(). It is included + * for backward compatibility with versions of FreeRTOS.org that did not + * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR() + * macros. + * + * Post an item to the back of a queue. It is safe to use this function from + * within an interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): ++ void vBufferISR( void ) + { + char cIn; + BaseType_t xHigherPriorityTaskWoken; + + // We have not woken a task at the start of the ISR. + xHigherPriorityTaskWoken = pdFALSE; + + // Loop until the buffer is empty. + do + { + // Obtain a byte from the buffer. + cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS ); + + // Post the byte. + xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken ); + + } while( portINPUT_BYTE( BUFFER_COUNT ) ); + + // Now the buffer is empty we can switch context if necessary. + if( xHigherPriorityTaskWoken ) + { + // Actual macro used here is port specific. + portYIELD_FROM_ISR (); + } + } ++ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +#define xQueueSendFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK ) + +/** + * queue. h + *+ BaseType_t xQueueGenericSendFromISR( + QueueHandle_t xQueue, + const void *pvItemToQueue, + BaseType_t *pxHigherPriorityTaskWoken, + BaseType_t xCopyPosition + ); ++ * + * It is preferred that the macros xQueueSendFromISR(), + * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place + * of calling this function directly. xQueueGiveFromISR() is an + * equivalent for use by semaphores that don't actually copy any data. + * + * Post an item on a queue. It is safe to use this function from within an + * interrupt service routine. + * + * Items are queued by copy not reference so it is preferable to only + * queue small items, especially when called from an ISR. In most cases + * it would be preferable to store a pointer to the item being queued. + * + * @param xQueue The handle to the queue on which the item is to be posted. + * + * @param pvItemToQueue A pointer to the item that is to be placed on the + * queue. The size of the items the queue will hold was defined when the + * queue was created, so this many bytes will be copied from pvItemToQueue + * into the queue storage area. + * + * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the + * item at the back of the queue, or queueSEND_TO_FRONT to place the item + * at the front of the queue (for high priority messages). + * + * @return pdTRUE if the data was successfully sent to the queue, otherwise + * errQUEUE_FULL. + * + * Example usage for buffered IO (where the ISR can obtain more than one value + * per call): ++ void vBufferISR( void ) + { + char cIn; + BaseType_t xHigherPriorityTaskWokenByPost; + + // We have not woken a task at the start of the ISR. + xHigherPriorityTaskWokenByPost = pdFALSE; + + // Loop until the buffer is empty. + do + { + // Obtain a byte from the buffer. + cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS ); + + // Post each byte. + xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK ); + + } while( portINPUT_BYTE( BUFFER_COUNT ) ); + + // Now the buffer is empty we can switch context if necessary. Note that the + // name of the yield function required is port specific. + if( xHigherPriorityTaskWokenByPost ) + { + portYIELD_FROM_ISR(); + } + } ++ * + * \defgroup xQueueSendFromISR xQueueSendFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * queue. h + *+ BaseType_t xQueueReceiveFromISR( + QueueHandle_t xQueue, + void *pvBuffer, + BaseType_t *pxTaskWoken + ); + *+ * + * Receive an item from a queue. It is safe to use this function from within an + * interrupt service routine. + * + * @param xQueue The handle to the queue from which the item is to be + * received. + * + * @param pvBuffer Pointer to the buffer into which the received item will + * be copied. + * + * @param pxTaskWoken A task may be blocked waiting for space to become + * available on the queue. If xQueueReceiveFromISR causes such a task to + * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will + * remain unchanged. + * + * @return pdTRUE if an item was successfully received from the queue, + * otherwise pdFALSE. + * + * Example usage: ++ + QueueHandle_t xQueue; + + // Function to create a queue and post some values. + void vAFunction( void *pvParameters ) + { + char cValueToPost; + const TickType_t xTicksToWait = ( TickType_t )0xff; + + // Create a queue capable of containing 10 characters. + xQueue = xQueueCreate( 10, sizeof( char ) ); + if( xQueue == 0 ) + { + // Failed to create the queue. + } + + // ... + + // Post some characters that will be used within an ISR. If the queue + // is full then this task will block for xTicksToWait ticks. + cValueToPost = 'a'; + xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait ); + cValueToPost = 'b'; + xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait ); + + // ... keep posting characters ... this task may block when the queue + // becomes full. + + cValueToPost = 'c'; + xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait ); + } + + // ISR that outputs all the characters received on the queue. + void vISR_Routine( void ) + { + BaseType_t xTaskWokenByReceive = pdFALSE; + char cRxedChar; + + while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) ) + { + // A character was received. Output the character now. + vOutputCharacter( cRxedChar ); + + // If removing the character from the queue woke the task that was + // posting onto the queue cTaskWokenByReceive will have been set to + // pdTRUE. No matter how many times this loop iterates only one + // task will be woken. + } + + if( cTaskWokenByPost != ( char ) pdFALSE; + { + taskYIELD (); + } + } ++ * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR + * \ingroup QueueManagement + */ +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/* + * Utilities to query queues that are safe to use from an ISR. These utilities + * should be used only from witin an ISR, or within a critical section. + */ +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + +/* + * The functions defined above are for passing data to and from tasks. The + * functions below are the equivalents for passing data to and from + * co-routines. + * + * These functions are called from the co-routine macro implementation and + * should not be called directly from application code. Instead use the macro + * wrappers defined within croutine.h. + */ +BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ); +BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxTaskWoken ); +BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ); +BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ); + +/* + * For internal use only. Use xSemaphoreCreateMutex(), + * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling + * these functions directly. + */ +QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) PRIVILEGED_FUNCTION; +QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) PRIVILEGED_FUNCTION; +BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; +TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Use xSemaphoreTakeMutexRecursive() or + * xSemaphoreGiveMutexRecursive() instead of calling these functions directly. + */ +BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) PRIVILEGED_FUNCTION; + +/* + * Reset a queue back to its original empty state. The return value is now + * obsolete and is always set to pdPASS. + */ +#define xQueueReset( xQueue ) xQueueGenericReset( xQueue, pdFALSE ) + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger. If you are not using a kernel + * aware debugger then this function can be ignored. + * + * configQUEUE_REGISTRY_SIZE defines the maximum number of handles the + * registry can hold. configQUEUE_REGISTRY_SIZE must be greater than 0 + * within FreeRTOSConfig.h for the registry to be available. Its value + * does not effect the number of queues, semaphores and mutexes that can be + * created - just the number that the registry can hold. + * + * @param xQueue The handle of the queue being added to the registry. This + * is the handle returned by a call to xQueueCreate(). Semaphore and mutex + * handles can also be passed in here. + * + * @param pcName The name to be associated with the handle. This is the + * name that the kernel aware debugger will display. The queue registry only + * stores a pointer to the string - so the string must be persistent (global or + * preferably in ROM/Flash), not on the stack. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * The registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add + * a queue, semaphore or mutex handle to the registry if you want the handle + * to be available to a kernel aware debugger, and vQueueUnregisterQueue() to + * remove the queue, semaphore or mutex from the register. If you are not using + * a kernel aware debugger then this function can be ignored. + * + * @param xQueue The handle of the queue being removed from the registry. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + void vQueueUnregisterQueue( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +#endif + +/* + * The queue registry is provided as a means for kernel aware debuggers to + * locate queues, semaphores and mutexes. Call pcQueueGetName() to look + * up and return the name of a queue in the queue registry from the queue's + * handle. + * + * @param xQueue The handle of the queue the name of which will be returned. + * @return If the queue is in the registry then a pointer to the name of the + * queue is returned. If the queue is not in the registry then NULL is + * returned. + */ +#if( configQUEUE_REGISTRY_SIZE > 0 ) + const char *pcQueueGetName( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Generic version of the function used to creaet a queue using dynamic memory + * allocation. This is called by other functions and macros that create other + * RTOS objects that use the queue structure as their base. + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; +#endif + +/* + * Queue sets provide a mechanism to allow a task to block (pend) on a read + * operation from multiple queues or semaphores simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * A queue set must be explicitly created using a call to xQueueCreateSet() + * before it can be used. Once created, standard FreeRTOS queues and semaphores + * can be added to the set using calls to xQueueAddToSet(). + * xQueueSelectFromSet() is then used to determine which, if any, of the queues + * or semaphores contained in the set is in a state where a queue read or + * semaphore take operation would be successful. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: An additional 4 bytes of RAM is required for each space in a every + * queue added to a queue set. Therefore counting semaphores that have a high + * maximum count value should not be added to a queue set. + * + * Note 4: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param uxEventQueueLength Queue sets store events that occur on + * the queues and semaphores contained in the set. uxEventQueueLength specifies + * the maximum number of events that can be queued at once. To be absolutely + * certain that events are not lost uxEventQueueLength should be set to the + * total sum of the length of the queues added to the set, where binary + * semaphores and mutexes have a length of 1, and counting semaphores have a + * length set by their maximum count value. Examples: + * + If a queue set is to hold a queue of length 5, another queue of length 12, + * and a binary semaphore, then uxEventQueueLength should be set to + * (5 + 12 + 1), or 18. + * + If a queue set is to hold three binary semaphores then uxEventQueueLength + * should be set to (1 + 1 + 1 ), or 3. + * + If a queue set is to hold a counting semaphore that has a maximum count of + * 5, and a counting semaphore that has a maximum count of 3, then + * uxEventQueueLength should be set to (5 + 3), or 8. + * + * @return If the queue set is created successfully then a handle to the created + * queue set is returned. Otherwise NULL is returned. + */ +QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) PRIVILEGED_FUNCTION; + +/* + * Adds a queue or semaphore to a queue set that was previously created by a + * call to xQueueCreateSet(). + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being added to + * the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set to which the queue or semaphore + * is being added. + * + * @return If the queue or semaphore was successfully added to the queue set + * then pdPASS is returned. If the queue could not be successfully added to the + * queue set because it is already a member of a different queue set then pdFAIL + * is returned. + */ +BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * Removes a queue or semaphore from a queue set. A queue or semaphore can only + * be removed from a set if the queue or semaphore is empty. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * @param xQueueOrSemaphore The handle of the queue or semaphore being removed + * from the queue set (cast to an QueueSetMemberHandle_t type). + * + * @param xQueueSet The handle of the queue set in which the queue or semaphore + * is included. + * + * @return If the queue or semaphore was successfully removed from the queue set + * then pdPASS is returned. If the queue was not in the queue set, or the + * queue (or semaphore) was not empty, then pdFAIL is returned. + */ +BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* + * xQueueSelectFromSet() selects from the members of a queue set a queue or + * semaphore that either contains data (in the case of a queue) or is available + * to take (in the case of a semaphore). xQueueSelectFromSet() effectively + * allows a task to block (pend) on a read operation on all the queues and + * semaphores in a queue set simultaneously. + * + * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this + * function. + * + * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html + * for reasons why queue sets are very rarely needed in practice as there are + * simpler methods of blocking on multiple objects. + * + * Note 2: Blocking on a queue set that contains a mutex will not cause the + * mutex holder to inherit the priority of the blocked task. + * + * Note 3: A receive (in the case of a queue) or take (in the case of a + * semaphore) operation must not be performed on a member of a queue set unless + * a call to xQueueSelectFromSet() has first returned a handle to that set member. + * + * @param xQueueSet The queue set on which the task will (potentially) block. + * + * @param xTicksToWait The maximum time, in ticks, that the calling task will + * remain in the Blocked state (with other tasks executing) to wait for a member + * of the queue set to be ready for a successful queue read or semaphore take + * operation. + * + * @return xQueueSelectFromSet() will return the handle of a queue (cast to + * a QueueSetMemberHandle_t type) contained in the queue set that contains data, + * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained + * in the queue set that is available, or NULL if no such queue or semaphore + * exists before before the specified block time expires. + */ +QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * A version of xQueueSelectFromSet() that can be used from an ISR. + */ +QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) PRIVILEGED_FUNCTION; + +/* Not public API functions. */ +void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) PRIVILEGED_FUNCTION; +void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) PRIVILEGED_FUNCTION; +UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; +uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; + + +#ifdef __cplusplus +} +#endif + +#endif /* QUEUE_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h b/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h new file mode 100644 index 0000000..787c791 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h @@ -0,0 +1,1140 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef SEMAPHORE_H +#define SEMAPHORE_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h" must appear in source files before "include semphr.h" +#endif + +#include "queue.h" + +typedef QueueHandle_t SemaphoreHandle_t; + +#define semBINARY_SEMAPHORE_QUEUE_LENGTH ( ( uint8_t ) 1U ) +#define semSEMAPHORE_QUEUE_ITEM_LENGTH ( ( uint8_t ) 0U ) +#define semGIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + + +/** + * semphr. h + *vSemaphoreCreateBinary( SemaphoreHandle_t xSemaphore )+ * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * This old vSemaphoreCreateBinary() macro is now deprecated in favour of the + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * Macro that implements a semaphore by using the existing queue mechanism. + * The queue length is 1 as this is a binary semaphore. The data size is 0 + * as we don't want to actually store any data - we just want to know if the + * queue is empty or full. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param xSemaphore Handle to the created semaphore. Should be of type SemaphoreHandle_t. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore = NULL; + + void vATask( void * pvParameters ) + { + // Semaphore cannot be used before a call to vSemaphoreCreateBinary (). + // This is a macro so pass the variable in directly. + vSemaphoreCreateBinary( xSemaphore ); + + if( xSemaphore != NULL ) + { + // The semaphore was created successfully. + // The semaphore can now be used. + } + } ++ * \defgroup vSemaphoreCreateBinary vSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define vSemaphoreCreateBinary( xSemaphore ) \ + { \ + ( xSemaphore ) = xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ); \ + if( ( xSemaphore ) != NULL ) \ + { \ + ( void ) xSemaphoreGive( ( xSemaphore ) ); \ + } \ + } +#endif + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateBinary( void )+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * The old vSemaphoreCreateBinary() macro is now deprecated in favour of this + * xSemaphoreCreateBinary() function. Note that binary semaphores created using + * the vSemaphoreCreateBinary() macro are created in a state such that the + * first call to 'take' the semaphore would pass, whereas binary semaphores + * created using xSemaphoreCreateBinary() are created in a state such that the + * the semaphore must first be 'given' before it can be 'taken'. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @return Handle to the created semaphore, or NULL if the memory required to + * hold the semaphore's data structures could not be allocated. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore = NULL; + + void vATask( void * pvParameters ) + { + // Semaphore cannot be used before a call to xSemaphoreCreateBinary(). + // This is a macro so pass the variable in directly. + xSemaphore = xSemaphoreCreateBinary(); + + if( xSemaphore != NULL ) + { + // The semaphore was created successfully. + // The semaphore can now be used. + } + } ++ * \defgroup xSemaphoreCreateBinary xSemaphoreCreateBinary + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinary() xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateBinaryStatic( StaticSemaphore_t *pxSemaphoreBuffer )+ * + * Creates a new binary semaphore instance, and returns a handle by which the + * new semaphore can be referenced. + * + * NOTE: In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a binary semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, binary semaphores use a block + * of memory, in which the semaphore structure is stored. If a binary semaphore + * is created using xSemaphoreCreateBinary() then the required memory is + * automatically dynamically allocated inside the xSemaphoreCreateBinary() + * function. (see http://www.freertos.org/a00111.html). If a binary semaphore + * is created using xSemaphoreCreateBinaryStatic() then the application writer + * must provide the memory. xSemaphoreCreateBinaryStatic() therefore allows a + * binary semaphore to be created without using any dynamic memory allocation. + * + * This type of semaphore can be used for pure synchronisation between tasks or + * between an interrupt and a task. The semaphore need not be given back once + * obtained, so one task/interrupt can continuously 'give' the semaphore while + * another continuously 'takes' the semaphore. For this reason this type of + * semaphore does not use a priority inheritance mechanism. For an alternative + * that does use priority inheritance see xSemaphoreCreateMutex(). + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the semaphore is created then a handle to the created semaphore is + * returned. If pxSemaphoreBuffer is NULL then NULL is returned. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore = NULL; + StaticSemaphore_t xSemaphoreBuffer; + + void vATask( void * pvParameters ) + { + // Semaphore cannot be used before a call to xSemaphoreCreateBinary(). + // The semaphore's data structures will be placed in the xSemaphoreBuffer + // variable, the address of which is passed into the function. The + // function's parameter is not NULL, so the function will not attempt any + // dynamic memory allocation, and therefore the function will not return + // return NULL. + xSemaphore = xSemaphoreCreateBinary( &xSemaphoreBuffer ); + + // Rest of task code goes here. + } ++ * \defgroup xSemaphoreCreateBinaryStatic xSemaphoreCreateBinaryStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateBinaryStatic( pxStaticSemaphore ) xQueueGenericCreateStatic( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticSemaphore, queueQUEUE_TYPE_BINARY_SEMAPHORE ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *xSemaphoreTake( + * SemaphoreHandle_t xSemaphore, + * TickType_t xBlockTime + * )+ * + * Macro to obtain a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). + * + * @param xSemaphore A handle to the semaphore being taken - obtained when + * the semaphore was created. + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. A block + * time of portMAX_DELAY can be used to block indefinitely (provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h). + * + * @return pdTRUE if the semaphore was obtained. pdFALSE + * if xBlockTime expired without the semaphore becoming available. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore = NULL; + + // A task that creates a semaphore. + void vATask( void * pvParameters ) + { + // Create the semaphore to guard a shared resource. + xSemaphore = xSemaphoreCreateBinary(); + } + + // A task that uses the semaphore. + void vAnotherTask( void * pvParameters ) + { + // ... Do other things. + + if( xSemaphore != NULL ) + { + // See if we can obtain the semaphore. If the semaphore is not available + // wait 10 ticks to see if it becomes free. + if( xSemaphoreTake( xSemaphore, ( TickType_t ) 10 ) == pdTRUE ) + { + // We were able to obtain the semaphore and can now access the + // shared resource. + + // ... + + // We have finished accessing the shared resource. Release the + // semaphore. + xSemaphoreGive( xSemaphore ); + } + else + { + // We could not obtain the semaphore and can therefore not access + // the shared resource safely. + } + } + } ++ * \defgroup xSemaphoreTake xSemaphoreTake + * \ingroup Semaphores + */ +#define xSemaphoreTake( xSemaphore, xBlockTime ) xQueueSemaphoreTake( ( xSemaphore ), ( xBlockTime ) ) + +/** + * semphr. h + * xSemaphoreTakeRecursive( + * SemaphoreHandle_t xMutex, + * TickType_t xBlockTime + * ) + * + * Macro to recursively obtain, or 'take', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being obtained. This is the + * handle returned by xSemaphoreCreateRecursiveMutex(); + * + * @param xBlockTime The time in ticks to wait for the semaphore to become + * available. The macro portTICK_PERIOD_MS can be used to convert this to a + * real time. A block time of zero can be used to poll the semaphore. If + * the task already owns the semaphore then xSemaphoreTakeRecursive() will + * return immediately no matter what the value of xBlockTime. + * + * @return pdTRUE if the semaphore was obtained. pdFALSE if xBlockTime + * expired without the semaphore becoming available. + * + * Example usage: ++ SemaphoreHandle_t xMutex = NULL; + + // A task that creates a mutex. + void vATask( void * pvParameters ) + { + // Create the mutex to guard a shared resource. + xMutex = xSemaphoreCreateRecursiveMutex(); + } + + // A task that uses the mutex. + void vAnotherTask( void * pvParameters ) + { + // ... Do other things. + + if( xMutex != NULL ) + { + // See if we can obtain the mutex. If the mutex is not available + // wait 10 ticks to see if it becomes free. + if( xSemaphoreTakeRecursive( xSemaphore, ( TickType_t ) 10 ) == pdTRUE ) + { + // We were able to obtain the mutex and can now access the + // shared resource. + + // ... + // For some reason due to the nature of the code further calls to + // xSemaphoreTakeRecursive() are made on the same mutex. In real + // code these would not be just sequential calls as this would make + // no sense. Instead the calls are likely to be buried inside + // a more complex call structure. + xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ); + xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ); + + // The mutex has now been 'taken' three times, so will not be + // available to another task until it has also been given back + // three times. Again it is unlikely that real code would have + // these calls sequentially, but instead buried in a more complex + // call structure. This is just for illustrative purposes. + xSemaphoreGiveRecursive( xMutex ); + xSemaphoreGiveRecursive( xMutex ); + xSemaphoreGiveRecursive( xMutex ); + + // Now the mutex can be taken by other tasks. + } + else + { + // We could not obtain the mutex and can therefore not access + // the shared resource safely. + } + } + } ++ * \defgroup xSemaphoreTakeRecursive xSemaphoreTakeRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreTakeRecursive( xMutex, xBlockTime ) xQueueTakeMutexRecursive( ( xMutex ), ( xBlockTime ) ) +#endif + +/** + * semphr. h + *xSemaphoreGive( SemaphoreHandle_t xSemaphore )+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary(), xSemaphoreCreateMutex() or + * xSemaphoreCreateCounting(). and obtained using sSemaphoreTake(). + * + * This macro must not be used from an ISR. See xSemaphoreGiveFromISR () for + * an alternative which can be used from an ISR. + * + * This macro must also not be used on semaphores created using + * xSemaphoreCreateRecursiveMutex(). + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @return pdTRUE if the semaphore was released. pdFALSE if an error occurred. + * Semaphores are implemented using queues. An error can occur if there is + * no space on the queue to post a message - indicating that the + * semaphore was not first obtained correctly. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore = NULL; + + void vATask( void * pvParameters ) + { + // Create the semaphore to guard a shared resource. + xSemaphore = vSemaphoreCreateBinary(); + + if( xSemaphore != NULL ) + { + if( xSemaphoreGive( xSemaphore ) != pdTRUE ) + { + // We would expect this call to fail because we cannot give + // a semaphore without first "taking" it! + } + + // Obtain the semaphore - don't block if the semaphore is not + // immediately available. + if( xSemaphoreTake( xSemaphore, ( TickType_t ) 0 ) ) + { + // We now have the semaphore and can access the shared resource. + + // ... + + // We have finished accessing the shared resource so can free the + // semaphore. + if( xSemaphoreGive( xSemaphore ) != pdTRUE ) + { + // We would not expect this call to fail because we must have + // obtained the semaphore to get here. + } + } + } + } ++ * \defgroup xSemaphoreGive xSemaphoreGive + * \ingroup Semaphores + */ +#define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK ) + +/** + * semphr. h + *xSemaphoreGiveRecursive( SemaphoreHandle_t xMutex )+ * + * Macro to recursively release, or 'give', a mutex type semaphore. + * The mutex must have previously been created using a call to + * xSemaphoreCreateRecursiveMutex(); + * + * configUSE_RECURSIVE_MUTEXES must be set to 1 in FreeRTOSConfig.h for this + * macro to be available. + * + * This macro must not be used on mutexes created using xSemaphoreCreateMutex(). + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * @param xMutex A handle to the mutex being released, or 'given'. This is the + * handle returned by xSemaphoreCreateMutex(); + * + * @return pdTRUE if the semaphore was given. + * + * Example usage: ++ SemaphoreHandle_t xMutex = NULL; + + // A task that creates a mutex. + void vATask( void * pvParameters ) + { + // Create the mutex to guard a shared resource. + xMutex = xSemaphoreCreateRecursiveMutex(); + } + + // A task that uses the mutex. + void vAnotherTask( void * pvParameters ) + { + // ... Do other things. + + if( xMutex != NULL ) + { + // See if we can obtain the mutex. If the mutex is not available + // wait 10 ticks to see if it becomes free. + if( xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ) == pdTRUE ) + { + // We were able to obtain the mutex and can now access the + // shared resource. + + // ... + // For some reason due to the nature of the code further calls to + // xSemaphoreTakeRecursive() are made on the same mutex. In real + // code these would not be just sequential calls as this would make + // no sense. Instead the calls are likely to be buried inside + // a more complex call structure. + xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ); + xSemaphoreTakeRecursive( xMutex, ( TickType_t ) 10 ); + + // The mutex has now been 'taken' three times, so will not be + // available to another task until it has also been given back + // three times. Again it is unlikely that real code would have + // these calls sequentially, it would be more likely that the calls + // to xSemaphoreGiveRecursive() would be called as a call stack + // unwound. This is just for demonstrative purposes. + xSemaphoreGiveRecursive( xMutex ); + xSemaphoreGiveRecursive( xMutex ); + xSemaphoreGiveRecursive( xMutex ); + + // Now the mutex can be taken by other tasks. + } + else + { + // We could not obtain the mutex and can therefore not access + // the shared resource safely. + } + } + } ++ * \defgroup xSemaphoreGiveRecursive xSemaphoreGiveRecursive + * \ingroup Semaphores + */ +#if( configUSE_RECURSIVE_MUTEXES == 1 ) + #define xSemaphoreGiveRecursive( xMutex ) xQueueGiveMutexRecursive( ( xMutex ) ) +#endif + +/** + * semphr. h + *+ xSemaphoreGiveFromISR( + SemaphoreHandle_t xSemaphore, + BaseType_t *pxHigherPriorityTaskWoken + )+ * + * Macro to release a semaphore. The semaphore must have previously been + * created with a call to xSemaphoreCreateBinary() or xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR. + * + * @param xSemaphore A handle to the semaphore being released. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreGiveFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if giving the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreGiveFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully given, otherwise errQUEUE_FULL. + * + * Example usage: ++ \#define LONG_TIME 0xffff + \#define TICKS_TO_WAIT 10 + SemaphoreHandle_t xSemaphore = NULL; + + // Repetitive task. + void vATask( void * pvParameters ) + { + for( ;; ) + { + // We want this task to run every 10 ticks of a timer. The semaphore + // was created before this task was started. + + // Block waiting for the semaphore to become available. + if( xSemaphoreTake( xSemaphore, LONG_TIME ) == pdTRUE ) + { + // It is time to execute. + + // ... + + // We have finished our task. Return to the top of the loop where + // we will block on the semaphore until it is time to execute + // again. Note when using the semaphore for synchronisation with an + // ISR in this manner there is no need to 'give' the semaphore back. + } + } + } + + // Timer ISR + void vTimerISR( void * pvParameters ) + { + static uint8_t ucLocalTickCount = 0; + static BaseType_t xHigherPriorityTaskWoken; + + // A timer tick has occurred. + + // ... Do other time functions. + + // Is it time for vATask () to run? + xHigherPriorityTaskWoken = pdFALSE; + ucLocalTickCount++; + if( ucLocalTickCount >= TICKS_TO_WAIT ) + { + // Unblock the task by releasing the semaphore. + xSemaphoreGiveFromISR( xSemaphore, &xHigherPriorityTaskWoken ); + + // Reset the count so we release the semaphore again in 10 ticks time. + ucLocalTickCount = 0; + } + + if( xHigherPriorityTaskWoken != pdFALSE ) + { + // We can force a context switch here. Context switching from an + // ISR uses port specific syntax. Check the demo task for your port + // to find the syntax required. + } + } ++ * \defgroup xSemaphoreGiveFromISR xSemaphoreGiveFromISR + * \ingroup Semaphores + */ +#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueGiveFromISR( ( QueueHandle_t ) ( xSemaphore ), ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *+ xSemaphoreTakeFromISR( + SemaphoreHandle_t xSemaphore, + BaseType_t *pxHigherPriorityTaskWoken + )+ * + * Macro to take a semaphore from an ISR. The semaphore must have + * previously been created with a call to xSemaphoreCreateBinary() or + * xSemaphoreCreateCounting(). + * + * Mutex type semaphores (those created using a call to xSemaphoreCreateMutex()) + * must not be used with this macro. + * + * This macro can be used from an ISR, however taking a semaphore from an ISR + * is not a common operation. It is likely to only be useful when taking a + * counting semaphore when an interrupt is obtaining an object from a resource + * pool (when the semaphore count indicates the number of resources available). + * + * @param xSemaphore A handle to the semaphore being taken. This is the + * handle returned when the semaphore was created. + * + * @param pxHigherPriorityTaskWoken xSemaphoreTakeFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if taking the semaphore caused a task + * to unblock, and the unblocked task has a priority higher than the currently + * running task. If xSemaphoreTakeFromISR() sets this value to pdTRUE then + * a context switch should be requested before the interrupt is exited. + * + * @return pdTRUE if the semaphore was successfully taken, otherwise + * pdFALSE + */ +#define xSemaphoreTakeFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueReceiveFromISR( ( QueueHandle_t ) ( xSemaphore ), NULL, ( pxHigherPriorityTaskWoken ) ) + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateMutex( void )+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return If the mutex was successfully created then a handle to the created + * semaphore is returned. If there was not enough heap to allocate the mutex + * data structures then NULL is returned. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + + void vATask( void * pvParameters ) + { + // Semaphore cannot be used before a call to xSemaphoreCreateMutex(). + // This is a macro so pass the variable in directly. + xSemaphore = xSemaphoreCreateMutex(); + + if( xSemaphore != NULL ) + { + // The semaphore was created successfully. + // The semaphore can now be used. + } + } ++ * \defgroup xSemaphoreCreateMutex xSemaphoreCreateMutex + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX ) +#endif + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateMutexStatic( StaticSemaphore_t *pxMutexBuffer )+ * + * Creates a new mutex type semaphore instance, and returns a handle by which + * the new mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, mutex semaphores use a block + * of memory, in which the mutex structure is stored. If a mutex is created + * using xSemaphoreCreateMutex() then the required memory is automatically + * dynamically allocated inside the xSemaphoreCreateMutex() function. (see + * http://www.freertos.org/a00111.html). If a mutex is created using + * xSemaphoreCreateMutexStatic() then the application writer must provided the + * memory. xSemaphoreCreateMutexStatic() therefore allows a mutex to be created + * without using any dynamic memory allocation. + * + * Mutexes created using this function can be accessed using the xSemaphoreTake() + * and xSemaphoreGive() macros. The xSemaphoreTakeRecursive() and + * xSemaphoreGiveRecursive() macros must not be used. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will be used to hold the mutex's data structure, removing the need for + * the memory to be allocated dynamically. + * + * @return If the mutex was successfully created then a handle to the created + * mutex is returned. If pxMutexBuffer was NULL then NULL is returned. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + StaticSemaphore_t xMutexBuffer; + + void vATask( void * pvParameters ) + { + // A mutex cannot be used before it has been created. xMutexBuffer is + // into xSemaphoreCreateMutexStatic() so no dynamic memory allocation is + // attempted. + xSemaphore = xSemaphoreCreateMutexStatic( &xMutexBuffer ); + + // As no dynamic memory allocation was performed, xSemaphore cannot be NULL, + // so there is no need to check it. + } ++ * \defgroup xSemaphoreCreateMutexStatic xSemaphoreCreateMutexStatic + * \ingroup Semaphores + */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateMutexStatic( pxMutexBuffer ) xQueueCreateMutexStatic( queueQUEUE_TYPE_MUTEX, ( pxMutexBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateRecursiveMutex( void )+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @return xSemaphore Handle to the created mutex semaphore. Should be of type + * SemaphoreHandle_t. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + + void vATask( void * pvParameters ) + { + // Semaphore cannot be used before a call to xSemaphoreCreateMutex(). + // This is a macro so pass the variable in directly. + xSemaphore = xSemaphoreCreateRecursiveMutex(); + + if( xSemaphore != NULL ) + { + // The semaphore was created successfully. + // The semaphore can now be used. + } + } ++ * \defgroup xSemaphoreCreateRecursiveMutex xSemaphoreCreateRecursiveMutex + * \ingroup Semaphores + */ +#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutex() xQueueCreateMutex( queueQUEUE_TYPE_RECURSIVE_MUTEX ) +#endif + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateRecursiveMutexStatic( StaticSemaphore_t *pxMutexBuffer )+ * + * Creates a new recursive mutex type semaphore instance, and returns a handle + * by which the new recursive mutex can be referenced. + * + * Internally, within the FreeRTOS implementation, recursive mutexs use a block + * of memory, in which the mutex structure is stored. If a recursive mutex is + * created using xSemaphoreCreateRecursiveMutex() then the required memory is + * automatically dynamically allocated inside the + * xSemaphoreCreateRecursiveMutex() function. (see + * http://www.freertos.org/a00111.html). If a recursive mutex is created using + * xSemaphoreCreateRecursiveMutexStatic() then the application writer must + * provide the memory that will get used by the mutex. + * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to + * be created without using any dynamic memory allocation. + * + * Mutexes created using this macro can be accessed using the + * xSemaphoreTakeRecursive() and xSemaphoreGiveRecursive() macros. The + * xSemaphoreTake() and xSemaphoreGive() macros must not be used. + * + * A mutex used recursively can be 'taken' repeatedly by the owner. The mutex + * doesn't become available again until the owner has called + * xSemaphoreGiveRecursive() for each successful 'take' request. For example, + * if a task successfully 'takes' the same mutex 5 times then the mutex will + * not be available to any other task until it has also 'given' the mutex back + * exactly five times. + * + * This type of semaphore uses a priority inheritance mechanism so a task + * 'taking' a semaphore MUST ALWAYS 'give' the semaphore back once the + * semaphore it is no longer required. + * + * Mutex type semaphores cannot be used from within interrupt service routines. + * + * See xSemaphoreCreateBinary() for an alternative implementation that can be + * used for pure synchronisation (where one task or interrupt always 'gives' the + * semaphore and another always 'takes' the semaphore) and from within interrupt + * service routines. + * + * @param pxMutexBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the recursive mutex's data structure, + * removing the need for the memory to be allocated dynamically. + * + * @return If the recursive mutex was successfully created then a handle to the + * created recursive mutex is returned. If pxMutexBuffer was NULL then NULL is + * returned. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + StaticSemaphore_t xMutexBuffer; + + void vATask( void * pvParameters ) + { + // A recursive semaphore cannot be used before it is created. Here a + // recursive mutex is created using xSemaphoreCreateRecursiveMutexStatic(). + // The address of xMutexBuffer is passed into the function, and will hold + // the mutexes data structures - so no dynamic memory allocation will be + // attempted. + xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &xMutexBuffer ); + + // As no dynamic memory allocation was performed, xSemaphore cannot be NULL, + // so there is no need to check it. + } ++ * \defgroup xSemaphoreCreateRecursiveMutexStatic xSemaphoreCreateRecursiveMutexStatic + * \ingroup Semaphores + */ +#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_RECURSIVE_MUTEXES == 1 ) ) + #define xSemaphoreCreateRecursiveMutexStatic( pxStaticSemaphore ) xQueueCreateMutexStatic( queueQUEUE_TYPE_RECURSIVE_MUTEX, pxStaticSemaphore ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateCounting( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount )+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer can + * instead optionally provide the memory that will get used by the counting + * semaphore. xSemaphoreCreateCountingStatic() therefore allows a counting + * semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @return Handle to the created semaphore. Null if the semaphore could not be + * created. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + + void vATask( void * pvParameters ) + { + SemaphoreHandle_t xSemaphore = NULL; + + // Semaphore cannot be used before a call to xSemaphoreCreateCounting(). + // The max value to which the semaphore can count should be 10, and the + // initial value assigned to the count should be 0. + xSemaphore = xSemaphoreCreateCounting( 10, 0 ); + + if( xSemaphore != NULL ) + { + // The semaphore was created successfully. + // The semaphore can now be used. + } + } ++ * \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting + * \ingroup Semaphores + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) ) +#endif + +/** + * semphr. h + *SemaphoreHandle_t xSemaphoreCreateCountingStatic( UBaseType_t uxMaxCount, UBaseType_t uxInitialCount, StaticSemaphore_t *pxSemaphoreBuffer )+ * + * Creates a new counting semaphore instance, and returns a handle by which the + * new counting semaphore can be referenced. + * + * In many usage scenarios it is faster and more memory efficient to use a + * direct to task notification in place of a counting semaphore! + * http://www.freertos.org/RTOS-task-notifications.html + * + * Internally, within the FreeRTOS implementation, counting semaphores use a + * block of memory, in which the counting semaphore structure is stored. If a + * counting semaphore is created using xSemaphoreCreateCounting() then the + * required memory is automatically dynamically allocated inside the + * xSemaphoreCreateCounting() function. (see + * http://www.freertos.org/a00111.html). If a counting semaphore is created + * using xSemaphoreCreateCountingStatic() then the application writer must + * provide the memory. xSemaphoreCreateCountingStatic() therefore allows a + * counting semaphore to be created without using any dynamic memory allocation. + * + * Counting semaphores are typically used for two things: + * + * 1) Counting events. + * + * In this usage scenario an event handler will 'give' a semaphore each time + * an event occurs (incrementing the semaphore count value), and a handler + * task will 'take' a semaphore each time it processes an event + * (decrementing the semaphore count value). The count value is therefore + * the difference between the number of events that have occurred and the + * number that have been processed. In this case it is desirable for the + * initial count value to be zero. + * + * 2) Resource management. + * + * In this usage scenario the count value indicates the number of resources + * available. To obtain control of a resource a task must first obtain a + * semaphore - decrementing the semaphore count value. When the count value + * reaches zero there are no free resources. When a task finishes with the + * resource it 'gives' the semaphore back - incrementing the semaphore count + * value. In this case it is desirable for the initial count value to be + * equal to the maximum count value, indicating that all resources are free. + * + * @param uxMaxCount The maximum count value that can be reached. When the + * semaphore reaches this value it can no longer be 'given'. + * + * @param uxInitialCount The count value assigned to the semaphore when it is + * created. + * + * @param pxSemaphoreBuffer Must point to a variable of type StaticSemaphore_t, + * which will then be used to hold the semaphore's data structure, removing the + * need for the memory to be allocated dynamically. + * + * @return If the counting semaphore was successfully created then a handle to + * the created counting semaphore is returned. If pxSemaphoreBuffer was NULL + * then NULL is returned. + * + * Example usage: ++ SemaphoreHandle_t xSemaphore; + StaticSemaphore_t xSemaphoreBuffer; + + void vATask( void * pvParameters ) + { + SemaphoreHandle_t xSemaphore = NULL; + + // Counting semaphore cannot be used before they have been created. Create + // a counting semaphore using xSemaphoreCreateCountingStatic(). The max + // value to which the semaphore can count is 10, and the initial value + // assigned to the count will be 0. The address of xSemaphoreBuffer is + // passed in and will be used to hold the semaphore structure, so no dynamic + // memory allocation will be used. + xSemaphore = xSemaphoreCreateCounting( 10, 0, &xSemaphoreBuffer ); + + // No memory allocation was attempted so xSemaphore cannot be NULL, so there + // is no need to check its value. + } ++ * \defgroup xSemaphoreCreateCountingStatic xSemaphoreCreateCountingStatic + * \ingroup Semaphores + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + #define xSemaphoreCreateCountingStatic( uxMaxCount, uxInitialCount, pxSemaphoreBuffer ) xQueueCreateCountingSemaphoreStatic( ( uxMaxCount ), ( uxInitialCount ), ( pxSemaphoreBuffer ) ) +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * semphr. h + *void vSemaphoreDelete( SemaphoreHandle_t xSemaphore );+ * + * Delete a semaphore. This function must be used with care. For example, + * do not delete a mutex type semaphore if the mutex is held by a task. + * + * @param xSemaphore A handle to the semaphore to be deleted. + * + * \defgroup vSemaphoreDelete vSemaphoreDelete + * \ingroup Semaphores + */ +#define vSemaphoreDelete( xSemaphore ) vQueueDelete( ( QueueHandle_t ) ( xSemaphore ) ) + +/** + * semphr.h + *TaskHandle_t xSemaphoreGetMutexHolder( SemaphoreHandle_t xMutex );+ * + * If xMutex is indeed a mutex type semaphore, return the current mutex holder. + * If xMutex is not a mutex type semaphore, or the mutex is available (not held + * by a task), return NULL. + * + * Note: This is a good way of determining if the calling task is the mutex + * holder, but not a good way of determining the identity of the mutex holder as + * the holder may change between the function exiting and the returned value + * being tested. + */ +#define xSemaphoreGetMutexHolder( xSemaphore ) xQueueGetMutexHolder( ( xSemaphore ) ) + +/** + * semphr.h + *TaskHandle_t xSemaphoreGetMutexHolderFromISR( SemaphoreHandle_t xMutex );+ * + * If xMutex is indeed a mutex type semaphore, return the current mutex holder. + * If xMutex is not a mutex type semaphore, or the mutex is available (not held + * by a task), return NULL. + * + */ +#define xSemaphoreGetMutexHolderFromISR( xSemaphore ) xQueueGetMutexHolderFromISR( ( xSemaphore ) ) + +/** + * semphr.h + *UBaseType_t uxSemaphoreGetCount( SemaphoreHandle_t xSemaphore );+ * + * If the semaphore is a counting semaphore then uxSemaphoreGetCount() returns + * its current count value. If the semaphore is a binary semaphore then + * uxSemaphoreGetCount() returns 1 if the semaphore is available, and 0 if the + * semaphore is not available. + * + */ +#define uxSemaphoreGetCount( xSemaphore ) uxQueueMessagesWaiting( ( QueueHandle_t ) ( xSemaphore ) ) + +#endif /* SEMAPHORE_H */ + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h b/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h new file mode 100644 index 0000000..b5bac08 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h @@ -0,0 +1,129 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#ifndef STACK_MACROS_H +#define STACK_MACROS_H + +/* + * Call the stack overflow hook function if the stack of the task being swapped + * out is currently overflowed, or looks like it might have overflowed in the + * past. + * + * Setting configCHECK_FOR_STACK_OVERFLOW to 1 will cause the macro to check + * the current stack state only - comparing the current top of stack value to + * the stack limit. Setting configCHECK_FOR_STACK_OVERFLOW to greater than 1 + * will also cause the last few stack bytes to be checked to ensure the value + * to which the bytes were set when the task was created have not been + * overwritten. Note this second test does not guarantee that an overflowed + * stack will always be recognised. + */ + +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH < 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW == 1 ) && ( portSTACK_GROWTH > 0 ) ) + + /* Only the current stack state is to be checked. */ + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + \ + /* Is the currently saved stack pointer within the stack limit? */ \ + if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* configCHECK_FOR_STACK_OVERFLOW == 1 */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH < 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \ + const uint32_t ulCheckValue = ( uint32_t ) 0xa5a5a5a5; \ + \ + if( ( pulStack[ 0 ] != ulCheckValue ) || \ + ( pulStack[ 1 ] != ulCheckValue ) || \ + ( pulStack[ 2 ] != ulCheckValue ) || \ + ( pulStack[ 3 ] != ulCheckValue ) ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) ) + + #define taskCHECK_FOR_STACK_OVERFLOW() \ + { \ + int8_t *pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; \ + static const uint8_t ucExpectedStackBytes[] = { tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, \ + tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE }; \ + \ + \ + pcEndOfStack -= sizeof( ucExpectedStackBytes ); \ + \ + /* Has the extremity of the task stack ever been written over? */ \ + if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 ) \ + { \ + vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pxCurrentTCB->pcTaskName ); \ + } \ + } + +#endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */ +/*-----------------------------------------------------------*/ + +/* Remove stack overflow macro if not being used. */ +#ifndef taskCHECK_FOR_STACK_OVERFLOW + #define taskCHECK_FOR_STACK_OVERFLOW() +#endif + + + +#endif /* STACK_MACROS_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h b/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h new file mode 100644 index 0000000..a8b68ad --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h @@ -0,0 +1,859 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * Stream buffers are used to send a continuous stream of data from one task or + * interrupt to another. Their implementation is light weight, making them + * particularly suited for interrupt to task and core to core communication + * scenarios. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section section and set the + * receive block time to 0. + * + */ + +#ifndef STREAM_BUFFER_H +#define STREAM_BUFFER_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include stream_buffer.h" +#endif + +#if defined( __cplusplus ) +extern "C" { +#endif + +/** + * Type by which stream buffers are referenced. For example, a call to + * xStreamBufferCreate() returns an StreamBufferHandle_t variable that can + * then be used as a parameter to xStreamBufferSend(), xStreamBufferReceive(), + * etc. + */ +struct StreamBufferDef_t; +typedef struct StreamBufferDef_t * StreamBufferHandle_t; + + +/** + * message_buffer.h + * ++StreamBufferHandle_t xStreamBufferCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes ); ++ * + * Creates a new stream buffer using dynamically allocated memory. See + * xStreamBufferCreateStatic() for a version that uses statically allocated + * memory (memory that is allocated at compile time). + * + * configSUPPORT_DYNAMIC_ALLOCATION must be set to 1 or left undefined in + * FreeRTOSConfig.h for xStreamBufferCreate() to be available. + * + * @param xBufferSizeBytes The total number of bytes the stream buffer will be + * able to hold at any one time. + * + * @param xTriggerLevelBytes The number of bytes that must be in the stream + * buffer before a task that is blocked on the stream buffer to wait for data is + * moved out of the blocked state. For example, if a task is blocked on a read + * of an empty stream buffer that has a trigger level of 1 then the task will be + * unblocked when a single byte is written to the buffer or the task's block + * time expires. As another example, if a task is blocked on a read of an empty + * stream buffer that has a trigger level of 10 then the task will not be + * unblocked until the stream buffer contains at least 10 bytes or the task's + * block time expires. If a reading task's block time expires before the + * trigger level is reached then the task will still receive however many bytes + * are actually available. Setting a trigger level of 0 will result in a + * trigger level of 1 being used. It is not valid to specify a trigger level + * that is greater than the buffer size. + * + * @return If NULL is returned, then the stream buffer cannot be created + * because there is insufficient heap memory available for FreeRTOS to allocate + * the stream buffer data structures and storage area. A non-NULL value being + * returned indicates that the stream buffer has been created successfully - + * the returned value should be stored as the handle to the created stream + * buffer. + * + * Example use: ++ +void vAFunction( void ) +{ +StreamBufferHandle_t xStreamBuffer; +const size_t xStreamBufferSizeBytes = 100, xTriggerLevel = 10; + + // Create a stream buffer that can hold 100 bytes. The memory used to hold + // both the stream buffer structure and the data in the stream buffer is + // allocated dynamically. + xStreamBuffer = xStreamBufferCreate( xStreamBufferSizeBytes, xTriggerLevel ); + + if( xStreamBuffer == NULL ) + { + // There was not enough heap memory space available to create the + // stream buffer. + } + else + { + // The stream buffer was created successfully and can now be used. + } +} ++ * \defgroup xStreamBufferCreate xStreamBufferCreate + * \ingroup StreamBufferManagement + */ +#define xStreamBufferCreate( xBufferSizeBytes, xTriggerLevelBytes ) xStreamBufferGenericCreate( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE ) + +/** + * stream_buffer.h + * ++StreamBufferHandle_t xStreamBufferCreateStatic( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + uint8_t *pucStreamBufferStorageArea, + StaticStreamBuffer_t *pxStaticStreamBuffer ); ++ * Creates a new stream buffer using statically allocated memory. See + * xStreamBufferCreate() for a version that uses dynamically allocated memory. + * + * configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for + * xStreamBufferCreateStatic() to be available. + * + * @param xBufferSizeBytes The size, in bytes, of the buffer pointed to by the + * pucStreamBufferStorageArea parameter. + * + * @param xTriggerLevelBytes The number of bytes that must be in the stream + * buffer before a task that is blocked on the stream buffer to wait for data is + * moved out of the blocked state. For example, if a task is blocked on a read + * of an empty stream buffer that has a trigger level of 1 then the task will be + * unblocked when a single byte is written to the buffer or the task's block + * time expires. As another example, if a task is blocked on a read of an empty + * stream buffer that has a trigger level of 10 then the task will not be + * unblocked until the stream buffer contains at least 10 bytes or the task's + * block time expires. If a reading task's block time expires before the + * trigger level is reached then the task will still receive however many bytes + * are actually available. Setting a trigger level of 0 will result in a + * trigger level of 1 being used. It is not valid to specify a trigger level + * that is greater than the buffer size. + * + * @param pucStreamBufferStorageArea Must point to a uint8_t array that is at + * least xBufferSizeBytes + 1 big. This is the array to which streams are + * copied when they are written to the stream buffer. + * + * @param pxStaticStreamBuffer Must point to a variable of type + * StaticStreamBuffer_t, which will be used to hold the stream buffer's data + * structure. + * + * @return If the stream buffer is created successfully then a handle to the + * created stream buffer is returned. If either pucStreamBufferStorageArea or + * pxStaticstreamBuffer are NULL then NULL is returned. + * + * Example use: ++ +// Used to dimension the array used to hold the streams. The available space +// will actually be one less than this, so 999. +#define STORAGE_SIZE_BYTES 1000 + +// Defines the memory that will actually hold the streams within the stream +// buffer. +static uint8_t ucStorageBuffer[ STORAGE_SIZE_BYTES ]; + +// The variable used to hold the stream buffer structure. +StaticStreamBuffer_t xStreamBufferStruct; + +void MyFunction( void ) +{ +StreamBufferHandle_t xStreamBuffer; +const size_t xTriggerLevel = 1; + + xStreamBuffer = xStreamBufferCreateStatic( sizeof( ucBufferStorage ), + xTriggerLevel, + ucBufferStorage, + &xStreamBufferStruct ); + + // As neither the pucStreamBufferStorageArea or pxStaticStreamBuffer + // parameters were NULL, xStreamBuffer will not be NULL, and can be used to + // reference the created stream buffer in other stream buffer API calls. + + // Other code that uses the stream buffer can go here. +} + ++ * \defgroup xStreamBufferCreateStatic xStreamBufferCreateStatic + * \ingroup StreamBufferManagement + */ +#define xStreamBufferCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pucStreamBufferStorageArea, pxStaticStreamBuffer ) xStreamBufferGenericCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE, pucStreamBufferStorageArea, pxStaticStreamBuffer ) + +/** + * stream_buffer.h + * ++size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ); ++ * + * Sends bytes to a stream buffer. The bytes are copied into the stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferSend() to write to a stream buffer from a task. Use + * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt + * service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer to which a stream is + * being sent. + * + * @param pvTxData A pointer to the buffer that holds the bytes to be copied + * into the stream buffer. + * + * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData + * into the stream buffer. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for enough space to become available in the stream + * buffer, should the stream buffer contain too little space to hold the + * another xDataLengthBytes bytes. The block time is specified in tick periods, + * so the absolute time it represents is dependent on the tick frequency. The + * macro pdMS_TO_TICKS() can be used to convert a time specified in milliseconds + * into a time specified in ticks. Setting xTicksToWait to portMAX_DELAY will + * cause the task to wait indefinitely (without timing out), provided + * INCLUDE_vTaskSuspend is set to 1 in FreeRTOSConfig.h. If a task times out + * before it can write all xDataLengthBytes into the buffer it will still write + * as many bytes as possible. A task does not use any CPU time when it is in + * the blocked state. + * + * @return The number of bytes written to the stream buffer. If a task times + * out before it can write all xDataLengthBytes into the buffer it will still + * write as many bytes as possible. + * + * Example use: ++void vAFunction( StreamBufferHandle_t xStreamBuffer ) +{ +size_t xBytesSent; +uint8_t ucArrayToSend[] = { 0, 1, 2, 3 }; +char *pcStringToSend = "String to send"; +const TickType_t x100ms = pdMS_TO_TICKS( 100 ); + + // Send an array to the stream buffer, blocking for a maximum of 100ms to + // wait for enough space to be available in the stream buffer. + xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) ucArrayToSend, sizeof( ucArrayToSend ), x100ms ); + + if( xBytesSent != sizeof( ucArrayToSend ) ) + { + // The call to xStreamBufferSend() times out before there was enough + // space in the buffer for the data to be written, but it did + // successfully write xBytesSent bytes. + } + + // Send the string to the stream buffer. Return immediately if there is not + // enough space in the buffer. + xBytesSent = xStreamBufferSend( xStreamBuffer, ( void * ) pcStringToSend, strlen( pcStringToSend ), 0 ); + + if( xBytesSent != strlen( pcStringToSend ) ) + { + // The entire string could not be added to the stream buffer because + // there was not enough free space in the buffer, but xBytesSent bytes + // were sent. Could try again to send the remaining bytes. + } +} ++ * \defgroup xStreamBufferSend xStreamBufferSend + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * Interrupt safe version of the API function that sends a stream of bytes to + * the stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferSend() to write to a stream buffer from a task. Use + * xStreamBufferSendFromISR() to write to a stream buffer from an interrupt + * service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer to which a stream is + * being sent. + * + * @param pvTxData A pointer to the data that is to be copied into the stream + * buffer. + * + * @param xDataLengthBytes The maximum number of bytes to copy from pvTxData + * into the stream buffer. + * + * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will + * have a task blocked on it waiting for data. Calling + * xStreamBufferSendFromISR() can make data available, and so cause a task that + * was waiting for data to leave the Blocked state. If calling + * xStreamBufferSendFromISR() causes a task to leave the Blocked state, and the + * unblocked task has a priority higher than the currently executing task (the + * task that was interrupted), then, internally, xStreamBufferSendFromISR() + * will set *pxHigherPriorityTaskWoken to pdTRUE. If + * xStreamBufferSendFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. This will + * ensure that the interrupt returns directly to the highest priority Ready + * state task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it + * is passed into the function. See the example code below for an example. + * + * @return The number of bytes actually written to the stream buffer, which will + * be less than xDataLengthBytes if the stream buffer didn't have enough free + * space for all the bytes to be written. + * + * Example use: ++// A stream buffer that has already been created. +StreamBufferHandle_t xStreamBuffer; + +void vAnInterruptServiceRoutine( void ) +{ +size_t xBytesSent; +char *pcStringToSend = "String to send"; +BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE. + + // Attempt to send the string to the stream buffer. + xBytesSent = xStreamBufferSendFromISR( xStreamBuffer, + ( void * ) pcStringToSend, + strlen( pcStringToSend ), + &xHigherPriorityTaskWoken ); + + if( xBytesSent != strlen( pcStringToSend ) ) + { + // There was not enough free space in the stream buffer for the entire + // string to be written, ut xBytesSent bytes were written. + } + + // If xHigherPriorityTaskWoken was set to pdTRUE inside + // xStreamBufferSendFromISR() then a task that has a priority above the + // priority of the currently executing task was unblocked and a context + // switch should be performed to ensure the ISR returns to the unblocked + // task. In most FreeRTOS ports this is done by simply passing + // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the + // variables value, and perform the context switch if necessary. Check the + // documentation for the port in use for port specific instructions. + taskYIELD_FROM_ISR( xHigherPriorityTaskWoken ); +} ++ * \defgroup xStreamBufferSendFromISR xStreamBufferSendFromISR + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ); ++ * + * Receives bytes from a stream buffer. + * + * ***NOTE***: Uniquely among FreeRTOS objects, the stream buffer + * implementation (so also the message buffer implementation, as message buffers + * are built on top of stream buffers) assumes there is only one task or + * interrupt that will write to the buffer (the writer), and only one task or + * interrupt that will read from the buffer (the reader). It is safe for the + * writer and reader to be different tasks or interrupts, but, unlike other + * FreeRTOS objects, it is not safe to have multiple different writers or + * multiple different readers. If there are to be multiple different writers + * then the application writer must place each call to a writing API function + * (such as xStreamBufferSend()) inside a critical section and set the send + * block time to 0. Likewise, if there are to be multiple different readers + * then the application writer must place each call to a reading API function + * (such as xStreamBufferReceive()) inside a critical section and set the receive + * block time to 0. + * + * Use xStreamBufferReceive() to read from a stream buffer from a task. Use + * xStreamBufferReceiveFromISR() to read from a stream buffer from an + * interrupt service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer from which bytes are to + * be received. + * + * @param pvRxData A pointer to the buffer into which the received bytes will be + * copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the + * pvRxData parameter. This sets the maximum number of bytes to receive in one + * call. xStreamBufferReceive will return as many bytes as possible up to a + * maximum set by xBufferLengthBytes. + * + * @param xTicksToWait The maximum amount of time the task should remain in the + * Blocked state to wait for data to become available if the stream buffer is + * empty. xStreamBufferReceive() will return immediately if xTicksToWait is + * zero. The block time is specified in tick periods, so the absolute time it + * represents is dependent on the tick frequency. The macro pdMS_TO_TICKS() can + * be used to convert a time specified in milliseconds into a time specified in + * ticks. Setting xTicksToWait to portMAX_DELAY will cause the task to wait + * indefinitely (without timing out), provided INCLUDE_vTaskSuspend is set to 1 + * in FreeRTOSConfig.h. A task does not use any CPU time when it is in the + * Blocked state. + * + * @return The number of bytes actually read from the stream buffer, which will + * be less than xBufferLengthBytes if the call to xStreamBufferReceive() timed + * out before xBufferLengthBytes were available. + * + * Example use: ++void vAFunction( StreamBuffer_t xStreamBuffer ) +{ +uint8_t ucRxData[ 20 ]; +size_t xReceivedBytes; +const TickType_t xBlockTime = pdMS_TO_TICKS( 20 ); + + // Receive up to another sizeof( ucRxData ) bytes from the stream buffer. + // Wait in the Blocked state (so not using any CPU processing time) for a + // maximum of 100ms for the full sizeof( ucRxData ) number of bytes to be + // available. + xReceivedBytes = xStreamBufferReceive( xStreamBuffer, + ( void * ) ucRxData, + sizeof( ucRxData ), + xBlockTime ); + + if( xReceivedBytes > 0 ) + { + // A ucRxData contains another xRecievedBytes bytes of data, which can + // be processed here.... + } +} ++ * \defgroup xStreamBufferReceive xStreamBufferReceive + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * An interrupt safe version of the API function that receives bytes from a + * stream buffer. + * + * Use xStreamBufferReceive() to read bytes from a stream buffer from a task. + * Use xStreamBufferReceiveFromISR() to read bytes from a stream buffer from an + * interrupt service routine (ISR). + * + * @param xStreamBuffer The handle of the stream buffer from which a stream + * is being received. + * + * @param pvRxData A pointer to the buffer into which the received bytes are + * copied. + * + * @param xBufferLengthBytes The length of the buffer pointed to by the + * pvRxData parameter. This sets the maximum number of bytes to receive in one + * call. xStreamBufferReceive will return as many bytes as possible up to a + * maximum set by xBufferLengthBytes. + * + * @param pxHigherPriorityTaskWoken It is possible that a stream buffer will + * have a task blocked on it waiting for space to become available. Calling + * xStreamBufferReceiveFromISR() can make space available, and so cause a task + * that is waiting for space to leave the Blocked state. If calling + * xStreamBufferReceiveFromISR() causes a task to leave the Blocked state, and + * the unblocked task has a priority higher than the currently executing task + * (the task that was interrupted), then, internally, + * xStreamBufferReceiveFromISR() will set *pxHigherPriorityTaskWoken to pdTRUE. + * If xStreamBufferReceiveFromISR() sets this value to pdTRUE, then normally a + * context switch should be performed before the interrupt is exited. That will + * ensure the interrupt returns directly to the highest priority Ready state + * task. *pxHigherPriorityTaskWoken should be set to pdFALSE before it is + * passed into the function. See the code example below for an example. + * + * @return The number of bytes read from the stream buffer, if any. + * + * Example use: ++// A stream buffer that has already been created. +StreamBuffer_t xStreamBuffer; + +void vAnInterruptServiceRoutine( void ) +{ +uint8_t ucRxData[ 20 ]; +size_t xReceivedBytes; +BaseType_t xHigherPriorityTaskWoken = pdFALSE; // Initialised to pdFALSE. + + // Receive the next stream from the stream buffer. + xReceivedBytes = xStreamBufferReceiveFromISR( xStreamBuffer, + ( void * ) ucRxData, + sizeof( ucRxData ), + &xHigherPriorityTaskWoken ); + + if( xReceivedBytes > 0 ) + { + // ucRxData contains xReceivedBytes read from the stream buffer. + // Process the stream here.... + } + + // If xHigherPriorityTaskWoken was set to pdTRUE inside + // xStreamBufferReceiveFromISR() then a task that has a priority above the + // priority of the currently executing task was unblocked and a context + // switch should be performed to ensure the ISR returns to the unblocked + // task. In most FreeRTOS ports this is done by simply passing + // xHigherPriorityTaskWoken into taskYIELD_FROM_ISR(), which will test the + // variables value, and perform the context switch if necessary. Check the + // documentation for the port in use for port specific instructions. + taskYIELD_FROM_ISR( xHigherPriorityTaskWoken ); +} ++ * \defgroup xStreamBufferReceiveFromISR xStreamBufferReceiveFromISR + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ); ++ * + * Deletes a stream buffer that was previously created using a call to + * xStreamBufferCreate() or xStreamBufferCreateStatic(). If the stream + * buffer was created using dynamic memory (that is, by xStreamBufferCreate()), + * then the allocated memory is freed. + * + * A stream buffer handle must not be used after the stream buffer has been + * deleted. + * + * @param xStreamBuffer The handle of the stream buffer to be deleted. + * + * \defgroup vStreamBufferDelete vStreamBufferDelete + * \ingroup StreamBufferManagement + */ +void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ); ++ * + * Queries a stream buffer to see if it is full. A stream buffer is full if it + * does not have any free space, and therefore cannot accept any more data. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return If the stream buffer is full then pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferIsFull xStreamBufferIsFull + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ); ++ * + * Queries a stream buffer to see if it is empty. A stream buffer is empty if + * it does not contain any data. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return If the stream buffer is empty then pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferIsEmpty xStreamBufferIsEmpty + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ); ++ * + * Resets a stream buffer to its initial, empty, state. Any data that was in + * the stream buffer is discarded. A stream buffer can only be reset if there + * are no tasks blocked waiting to either send to or receive from the stream + * buffer. + * + * @param xStreamBuffer The handle of the stream buffer being reset. + * + * @return If the stream buffer is reset then pdPASS is returned. If there was + * a task blocked waiting to send to or read from the stream buffer then the + * stream buffer is not reset and pdFAIL is returned. + * + * \defgroup xStreamBufferReset xStreamBufferReset + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ); ++ * + * Queries a stream buffer to see how much free space it contains, which is + * equal to the amount of data that can be sent to the stream buffer before it + * is full. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return The number of bytes that can be written to the stream buffer before + * the stream buffer would be full. + * + * \defgroup xStreamBufferSpacesAvailable xStreamBufferSpacesAvailable + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ); ++ * + * Queries a stream buffer to see how much data it contains, which is equal to + * the number of bytes that can be read from the stream buffer before the stream + * buffer would be empty. + * + * @param xStreamBuffer The handle of the stream buffer being queried. + * + * @return The number of bytes that can be read from the stream buffer before + * the stream buffer would be empty. + * + * \defgroup xStreamBufferBytesAvailable xStreamBufferBytesAvailable + * \ingroup StreamBufferManagement + */ +size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ); ++ * + * A stream buffer's trigger level is the number of bytes that must be in the + * stream buffer before a task that is blocked on the stream buffer to + * wait for data is moved out of the blocked state. For example, if a task is + * blocked on a read of an empty stream buffer that has a trigger level of 1 + * then the task will be unblocked when a single byte is written to the buffer + * or the task's block time expires. As another example, if a task is blocked + * on a read of an empty stream buffer that has a trigger level of 10 then the + * task will not be unblocked until the stream buffer contains at least 10 bytes + * or the task's block time expires. If a reading task's block time expires + * before the trigger level is reached then the task will still receive however + * many bytes are actually available. Setting a trigger level of 0 will result + * in a trigger level of 1 being used. It is not valid to specify a trigger + * level that is greater than the buffer size. + * + * A trigger level is set when the stream buffer is created, and can be modified + * using xStreamBufferSetTriggerLevel(). + * + * @param xStreamBuffer The handle of the stream buffer being updated. + * + * @param xTriggerLevel The new trigger level for the stream buffer. + * + * @return If xTriggerLevel was less than or equal to the stream buffer's length + * then the trigger level will be updated and pdTRUE is returned. Otherwise + * pdFALSE is returned. + * + * \defgroup xStreamBufferSetTriggerLevel xStreamBufferSetTriggerLevel + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * For advanced users only. + * + * The sbSEND_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is sent to a message buffer or stream buffer. If there was a task that + * was blocked on the message or stream buffer waiting for data to arrive then + * the sbSEND_COMPLETED() macro sends a notification to the task to remove it + * from the Blocked state. xStreamBufferSendCompletedFromISR() does the same + * thing. It is provided to enable application writers to implement their own + * version of sbSEND_COMPLETED(), and MUST NOT BE USED AT ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer to which data was + * written. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xStreamBufferSendCompletedFromISR(). If calling + * xStreamBufferSendCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xStreamBufferSendCompletedFromISR xStreamBufferSendCompletedFromISR + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * stream_buffer.h + * ++BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ); ++ * + * For advanced users only. + * + * The sbRECEIVE_COMPLETED() macro is called from within the FreeRTOS APIs when + * data is read out of a message buffer or stream buffer. If there was a task + * that was blocked on the message or stream buffer waiting for data to arrive + * then the sbRECEIVE_COMPLETED() macro sends a notification to the task to + * remove it from the Blocked state. xStreamBufferReceiveCompletedFromISR() + * does the same thing. It is provided to enable application writers to + * implement their own version of sbRECEIVE_COMPLETED(), and MUST NOT BE USED AT + * ANY OTHER TIME. + * + * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for + * additional information. + * + * @param xStreamBuffer The handle of the stream buffer from which data was + * read. + * + * @param pxHigherPriorityTaskWoken *pxHigherPriorityTaskWoken should be + * initialised to pdFALSE before it is passed into + * xStreamBufferReceiveCompletedFromISR(). If calling + * xStreamBufferReceiveCompletedFromISR() removes a task from the Blocked state, + * and the task has a priority above the priority of the currently running task, + * then *pxHigherPriorityTaskWoken will get set to pdTRUE indicating that a + * context switch should be performed before exiting the ISR. + * + * @return If a task was removed from the Blocked state then pdTRUE is returned. + * Otherwise pdFALSE is returned. + * + * \defgroup xStreamBufferReceiveCompletedFromISR xStreamBufferReceiveCompletedFromISR + * \ingroup StreamBufferManagement + */ +BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/* Functions below here are not part of the public API. */ +StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer ) PRIVILEGED_FUNCTION; + +StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer, + uint8_t * const pucStreamBufferStorageArea, + StaticStreamBuffer_t * const pxStaticStreamBuffer ) PRIVILEGED_FUNCTION; + +size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + +#if( configUSE_TRACE_FACILITY == 1 ) + void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) PRIVILEGED_FUNCTION; + UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; + uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) PRIVILEGED_FUNCTION; +#endif + +#if defined( __cplusplus ) +} +#endif + +#endif /* !defined( STREAM_BUFFER_H ) */ diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/task.h b/Middlewares/Third_Party/FreeRTOS/Source/include/task.h new file mode 100644 index 0000000..b0cc60b --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/task.h @@ -0,0 +1,2543 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef INC_TASK_H +#define INC_TASK_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include task.h" +#endif + +#include "list.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +#define tskKERNEL_VERSION_NUMBER "V10.3.1" +#define tskKERNEL_VERSION_MAJOR 10 +#define tskKERNEL_VERSION_MINOR 3 +#define tskKERNEL_VERSION_BUILD 1 + +/* MPU region parameters passed in ulParameters + * of MemoryRegion_t struct. */ +#define tskMPU_REGION_READ_ONLY ( 1UL << 0UL ) +#define tskMPU_REGION_READ_WRITE ( 1UL << 1UL ) +#define tskMPU_REGION_EXECUTE_NEVER ( 1UL << 2UL ) +#define tskMPU_REGION_NORMAL_MEMORY ( 1UL << 3UL ) +#define tskMPU_REGION_DEVICE_MEMORY ( 1UL << 4UL ) + +/** + * task. h + * + * Type by which tasks are referenced. For example, a call to xTaskCreate + * returns (via a pointer parameter) an TaskHandle_t variable that can then + * be used as a parameter to vTaskDelete to delete the task. + * + * \defgroup TaskHandle_t TaskHandle_t + * \ingroup Tasks + */ +struct tskTaskControlBlock; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +typedef struct tskTaskControlBlock* TaskHandle_t; + +/* + * Defines the prototype to which the application task hook function must + * conform. + */ +typedef BaseType_t (*TaskHookFunction_t)( void * ); + +/* Task states returned by eTaskGetState. */ +typedef enum +{ + eRunning = 0, /* A task is querying the state of itself, so must be running. */ + eReady, /* The task being queried is in a read or pending ready list. */ + eBlocked, /* The task being queried is in the Blocked state. */ + eSuspended, /* The task being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ + eDeleted, /* The task being queried has been deleted, but its TCB has not yet been freed. */ + eInvalid /* Used as an 'invalid state' value. */ +} eTaskState; + +/* Actions that can be performed when vTaskNotify() is called. */ +typedef enum +{ + eNoAction = 0, /* Notify the task without updating its notify value. */ + eSetBits, /* Set bits in the task's notification value. */ + eIncrement, /* Increment the task's notification value. */ + eSetValueWithOverwrite, /* Set the task's notification value to a specific value even if the previous value has not yet been read by the task. */ + eSetValueWithoutOverwrite /* Set the task's notification value if the previous value has been read by the task. */ +} eNotifyAction; + +/* + * Used internally only. + */ +typedef struct xTIME_OUT +{ + BaseType_t xOverflowCount; + TickType_t xTimeOnEntering; +} TimeOut_t; + +/* + * Defines the memory ranges allocated to the task when an MPU is used. + */ +typedef struct xMEMORY_REGION +{ + void *pvBaseAddress; + uint32_t ulLengthInBytes; + uint32_t ulParameters; +} MemoryRegion_t; + +/* + * Parameters required to create an MPU protected task. + */ +typedef struct xTASK_PARAMETERS +{ + TaskFunction_t pvTaskCode; + const char * const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + configSTACK_DEPTH_TYPE usStackDepth; + void *pvParameters; + UBaseType_t uxPriority; + StackType_t *puxStackBuffer; + MemoryRegion_t xRegions[ portNUM_CONFIGURABLE_REGIONS ]; + #if ( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + StaticTask_t * const pxTaskBuffer; + #endif +} TaskParameters_t; + +/* Used with the uxTaskGetSystemState() function to return the state of each task +in the system. */ +typedef struct xTASK_STATUS +{ + TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the structure relates. */ + const char *pcTaskName; /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + UBaseType_t xTaskNumber; /* A number unique to the task. */ + eTaskState eCurrentState; /* The state in which the task existed when the structure was populated. */ + UBaseType_t uxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure was populated. */ + UBaseType_t uxBasePriority; /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */ + uint32_t ulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */ + StackType_t *pxStackBase; /* Points to the lowest address of the task's stack area. */ + configSTACK_DEPTH_TYPE usStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task was created. The closer this value is to zero the closer the task has come to overflowing its stack. */ +} TaskStatus_t; + +/* Possible return values for eTaskConfirmSleepModeStatus(). */ +typedef enum +{ + eAbortSleep = 0, /* A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */ + eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */ + eNoTasksWaitingTimeout /* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */ +} eSleepModeStatus; + +/** + * Defines the priority used by the idle task. This must not be modified. + * + * \ingroup TaskUtils + */ +#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U ) + +/** + * task. h + * + * Macro for forcing a context switch. + * + * \defgroup taskYIELD taskYIELD + * \ingroup SchedulerControl + */ +#define taskYIELD() portYIELD() + +/** + * task. h + * + * Macro to mark the start of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskENTER_CRITICAL taskENTER_CRITICAL + * \ingroup SchedulerControl + */ +#define taskENTER_CRITICAL() portENTER_CRITICAL() +#define taskENTER_CRITICAL_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR() + +/** + * task. h + * + * Macro to mark the end of a critical code region. Preemptive context + * switches cannot occur when in a critical region. + * + * NOTE: This may alter the stack (depending on the portable implementation) + * so must be used with care! + * + * \defgroup taskEXIT_CRITICAL taskEXIT_CRITICAL + * \ingroup SchedulerControl + */ +#define taskEXIT_CRITICAL() portEXIT_CRITICAL() +#define taskEXIT_CRITICAL_FROM_ISR( x ) portCLEAR_INTERRUPT_MASK_FROM_ISR( x ) +/** + * task. h + * + * Macro to disable all maskable interrupts. + * + * \defgroup taskDISABLE_INTERRUPTS taskDISABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS() + +/** + * task. h + * + * Macro to enable microcontroller interrupts. + * + * \defgroup taskENABLE_INTERRUPTS taskENABLE_INTERRUPTS + * \ingroup SchedulerControl + */ +#define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS() + +/* Definitions returned by xTaskGetSchedulerState(). taskSCHEDULER_SUSPENDED is +0 to generate more optimal code when configASSERT() is defined as the constant +is used in assert() statements. */ +#define taskSCHEDULER_SUSPENDED ( ( BaseType_t ) 0 ) +#define taskSCHEDULER_NOT_STARTED ( ( BaseType_t ) 1 ) +#define taskSCHEDULER_RUNNING ( ( BaseType_t ) 2 ) + + +/*----------------------------------------------------------- + * TASK CREATION API + *----------------------------------------------------------*/ + +/** + * task. h + *+ BaseType_t xTaskCreate( + TaskFunction_t pvTaskCode, + const char * const pcName, + configSTACK_DEPTH_TYPE usStackDepth, + void *pvParameters, + UBaseType_t uxPriority, + TaskHandle_t *pvCreatedTask + );+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * See xTaskCreateStatic() for a version that does not use any dynamic memory + * allocation. + * + * xTaskCreate() can only be used to create a task that has unrestricted + * access to the entire microcontroller memory map. Systems that include MPU + * support can alternatively create an MPU constrained task using + * xTaskCreateRestricted(). + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default + * is 16. + * + * @param usStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task should run. Systems that + * include MPU support can optionally create tasks in a privileged (system) + * mode by setting bit portPRIVILEGE_BIT of the priority parameter. For + * example, to create a privileged task at priority 2 the uxPriority parameter + * should be set to ( 2 | portPRIVILEGE_BIT ). + * + * @param pvCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: ++ // Task to be created. + void vTaskCode( void * pvParameters ) + { + for( ;; ) + { + // Task code goes here. + } + } + + // Function that creates a task. + void vOtherFunction( void ) + { + static uint8_t ucParameterToPass; + TaskHandle_t xHandle = NULL; + + // Create the task, storing the handle. Note that the passed parameter ucParameterToPass + // must exist for the lifetime of the task, so in this case is declared static. If it was just an + // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time + // the new task attempts to access it. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle ); + configASSERT( xHandle ); + + // Use the handle to delete the task. + if( xHandle != NULL ) + { + vTaskDelete( xHandle ); + } + } ++ * \defgroup xTaskCreate xTaskCreate + * \ingroup Tasks + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const configSTACK_DEPTH_TYPE usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *+ TaskHandle_t xTaskCreateStatic( TaskFunction_t pvTaskCode, + const char * const pcName, + uint32_t ulStackDepth, + void *pvParameters, + UBaseType_t uxPriority, + StackType_t *pxStackBuffer, + StaticTask_t *pxTaskBuffer );+ * + * Create a new task and add it to the list of tasks that are ready to run. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreate() then both blocks of memory are automatically dynamically + * allocated inside the xTaskCreate() function. (see + * http://www.freertos.org/a00111.html). If a task is created using + * xTaskCreateStatic() then the application writer must provide the required + * memory. xTaskCreateStatic() therefore allows a task to be created without + * using any dynamic memory allocation. + * + * @param pvTaskCode Pointer to the task entry function. Tasks + * must be implemented to never return (i.e. continuous loop). + * + * @param pcName A descriptive name for the task. This is mainly used to + * facilitate debugging. The maximum length of the string is defined by + * configMAX_TASK_NAME_LEN in FreeRTOSConfig.h. + * + * @param ulStackDepth The size of the task stack specified as the number of + * variables the stack can hold - not the number of bytes. For example, if + * the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes + * will be allocated for stack storage. + * + * @param pvParameters Pointer that will be used as the parameter for the task + * being created. + * + * @param uxPriority The priority at which the task will run. + * + * @param pxStackBuffer Must point to a StackType_t array that has at least + * ulStackDepth indexes - the array will then be used as the task's stack, + * removing the need for the stack to be allocated dynamically. + * + * @param pxTaskBuffer Must point to a variable of type StaticTask_t, which will + * then be used to hold the task's data structures, removing the need for the + * memory to be allocated dynamically. + * + * @return If neither pxStackBuffer or pxTaskBuffer are NULL, then the task will + * be created and a handle to the created task is returned. If either + * pxStackBuffer or pxTaskBuffer are NULL then the task will not be created and + * NULL is returned. + * + * Example usage: ++ + // Dimensions the buffer that the task being created will use as its stack. + // NOTE: This is the number of words the stack will hold, not the number of + // bytes. For example, if each stack item is 32-bits, and this is set to 100, + // then 400 bytes (100 * 32-bits) will be allocated. + #define STACK_SIZE 200 + + // Structure that will hold the TCB of the task being created. + StaticTask_t xTaskBuffer; + + // Buffer that the task being created will use as its stack. Note this is + // an array of StackType_t variables. The size of StackType_t is dependent on + // the RTOS port. + StackType_t xStack[ STACK_SIZE ]; + + // Function that implements the task being created. + void vTaskCode( void * pvParameters ) + { + // The parameter value is expected to be 1 as 1 is passed in the + // pvParameters value in the call to xTaskCreateStatic(). + configASSERT( ( uint32_t ) pvParameters == 1UL ); + + for( ;; ) + { + // Task code goes here. + } + } + + // Function that creates a task. + void vOtherFunction( void ) + { + TaskHandle_t xHandle = NULL; + + // Create the task without using any dynamic memory allocation. + xHandle = xTaskCreateStatic( + vTaskCode, // Function that implements the task. + "NAME", // Text name for the task. + STACK_SIZE, // Stack size in words, not bytes. + ( void * ) 1, // Parameter passed into the task. + tskIDLE_PRIORITY,// Priority at which the task is created. + xStack, // Array to use as the task's stack. + &xTaskBuffer ); // Variable to hold the task's data structure. + + // puxStackBuffer and pxTaskBuffer were not NULL, so the task will have + // been created, and xHandle will be the task's handle. Use the handle + // to suspend the task. + vTaskSuspend( xHandle ); + } ++ * \defgroup xTaskCreateStatic xTaskCreateStatic + * \ingroup Tasks + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) PRIVILEGED_FUNCTION; +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * task. h + *+ BaseType_t xTaskCreateRestricted( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );+ * + * Only available when configSUPPORT_DYNAMIC_ALLOCATION is set to 1. + * + * xTaskCreateRestricted() should only be used in systems that include an MPU + * implementation. + * + * Create a new task and add it to the list of tasks that are ready to run. + * The function parameters define the memory regions and associated access + * permissions allocated to the task. + * + * See xTaskCreateRestrictedStatic() for a version that does not use any + * dynamic memory allocation. + * + * @param pxTaskDefinition Pointer to a structure that contains a member + * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API + * documentation) plus an optional stack buffer and the memory region + * definitions. + * + * @param pxCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: ++// Create an TaskParameters_t structure that defines the task to be created. +static const TaskParameters_t xCheckTaskParameters = +{ + vATask, // pvTaskCode - the function that implements the task. + "ATask", // pcName - just a text name for the task to assist debugging. + 100, // usStackDepth - the stack size DEFINED IN WORDS. + NULL, // pvParameters - passed into the task function as the function parameters. + ( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state. + cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack. + + // xRegions - Allocate up to three separate memory regions for access by + // the task, with appropriate access permissions. Different processors have + // different memory alignment requirements - refer to the FreeRTOS documentation + // for full information. + { + // Base address Length Parameters + { cReadWriteArray, 32, portMPU_REGION_READ_WRITE }, + { cReadOnlyArray, 32, portMPU_REGION_READ_ONLY }, + { cPrivilegedOnlyAccessArray, 128, portMPU_REGION_PRIVILEGED_READ_WRITE } + } +}; + +int main( void ) +{ +TaskHandle_t xHandle; + + // Create a task from the const structure defined above. The task handle + // is requested (the second parameter is not NULL) but in this case just for + // demonstration purposes as its not actually used. + xTaskCreateRestricted( &xRegTest1Parameters, &xHandle ); + + // Start the scheduler. + vTaskStartScheduler(); + + // Will only get here if there was insufficient memory to create the idle + // and/or timer task. + for( ;; ); +} ++ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +#if( portUSING_MPU_WRAPPERS == 1 ) + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *+ BaseType_t xTaskCreateRestrictedStatic( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );+ * + * Only available when configSUPPORT_STATIC_ALLOCATION is set to 1. + * + * xTaskCreateRestrictedStatic() should only be used in systems that include an + * MPU implementation. + * + * Internally, within the FreeRTOS implementation, tasks use two blocks of + * memory. The first block is used to hold the task's data structures. The + * second block is used by the task as its stack. If a task is created using + * xTaskCreateRestricted() then the stack is provided by the application writer, + * and the memory used to hold the task's data structure is automatically + * dynamically allocated inside the xTaskCreateRestricted() function. If a task + * is created using xTaskCreateRestrictedStatic() then the application writer + * must provide the memory used to hold the task's data structures too. + * xTaskCreateRestrictedStatic() therefore allows a memory protected task to be + * created without using any dynamic memory allocation. + * + * @param pxTaskDefinition Pointer to a structure that contains a member + * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API + * documentation) plus an optional stack buffer and the memory region + * definitions. If configSUPPORT_STATIC_ALLOCATION is set to 1 the structure + * contains an additional member, which is used to point to a variable of type + * StaticTask_t - which is then used to hold the task's data structure. + * + * @param pxCreatedTask Used to pass back a handle by which the created task + * can be referenced. + * + * @return pdPASS if the task was successfully created and added to a ready + * list, otherwise an error code defined in the file projdefs.h + * + * Example usage: ++// Create an TaskParameters_t structure that defines the task to be created. +// The StaticTask_t variable is only included in the structure when +// configSUPPORT_STATIC_ALLOCATION is set to 1. The PRIVILEGED_DATA macro can +// be used to force the variable into the RTOS kernel's privileged data area. +static PRIVILEGED_DATA StaticTask_t xTaskBuffer; +static const TaskParameters_t xCheckTaskParameters = +{ + vATask, // pvTaskCode - the function that implements the task. + "ATask", // pcName - just a text name for the task to assist debugging. + 100, // usStackDepth - the stack size DEFINED IN WORDS. + NULL, // pvParameters - passed into the task function as the function parameters. + ( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged state. + cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack. + + // xRegions - Allocate up to three separate memory regions for access by + // the task, with appropriate access permissions. Different processors have + // different memory alignment requirements - refer to the FreeRTOS documentation + // for full information. + { + // Base address Length Parameters + { cReadWriteArray, 32, portMPU_REGION_READ_WRITE }, + { cReadOnlyArray, 32, portMPU_REGION_READ_ONLY }, + { cPrivilegedOnlyAccessArray, 128, portMPU_REGION_PRIVILEGED_READ_WRITE } + } + + &xTaskBuffer; // Holds the task's data structure. +}; + +int main( void ) +{ +TaskHandle_t xHandle; + + // Create a task from the const structure defined above. The task handle + // is requested (the second parameter is not NULL) but in this case just for + // demonstration purposes as its not actually used. + xTaskCreateRestricted( &xRegTest1Parameters, &xHandle ); + + // Start the scheduler. + vTaskStartScheduler(); + + // Will only get here if there was insufficient memory to create the idle + // and/or timer task. + for( ;; ); +} ++ * \defgroup xTaskCreateRestrictedStatic xTaskCreateRestrictedStatic + * \ingroup Tasks + */ +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) PRIVILEGED_FUNCTION; +#endif + +/** + * task. h + *+ void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions );+ * + * Memory regions are assigned to a restricted task when the task is created by + * a call to xTaskCreateRestricted(). These regions can be redefined using + * vTaskAllocateMPURegions(). + * + * @param xTask The handle of the task being updated. + * + * @param xRegions A pointer to an MemoryRegion_t structure that contains the + * new memory region definitions. + * + * Example usage: ++// Define an array of MemoryRegion_t structures that configures an MPU region +// allowing read/write access for 1024 bytes starting at the beginning of the +// ucOneKByte array. The other two of the maximum 3 definable regions are +// unused so set to zero. +static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] = +{ + // Base address Length Parameters + { ucOneKByte, 1024, portMPU_REGION_READ_WRITE }, + { 0, 0, 0 }, + { 0, 0, 0 } +}; + +void vATask( void *pvParameters ) +{ + // This task was created such that it has access to certain regions of + // memory as defined by the MPU configuration. At some point it is + // desired that these MPU regions are replaced with that defined in the + // xAltRegions const struct above. Use a call to vTaskAllocateMPURegions() + // for this purpose. NULL is used as the task handle to indicate that this + // function should modify the MPU regions of the calling task. + vTaskAllocateMPURegions( NULL, xAltRegions ); + + // Now the task can continue its function, but from this point on can only + // access its stack and the ucOneKByte array (unless any other statically + // defined or shared regions have been declared elsewhere). +} ++ * \defgroup xTaskCreateRestricted xTaskCreateRestricted + * \ingroup Tasks + */ +void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskDelete( TaskHandle_t xTask );+ * + * INCLUDE_vTaskDelete must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Remove a task from the RTOS real time kernel's management. The task being + * deleted will be removed from all ready, blocked, suspended and event lists. + * + * NOTE: The idle task is responsible for freeing the kernel allocated + * memory from tasks that have been deleted. It is therefore important that + * the idle task is not starved of microcontroller processing time if your + * application makes any calls to vTaskDelete (). Memory allocated by the + * task code is not automatically freed, and should be freed before the task + * is deleted. + * + * See the demo application file death.c for sample code that utilises + * vTaskDelete (). + * + * @param xTask The handle of the task to be deleted. Passing NULL will + * cause the calling task to be deleted. + * + * Example usage: ++ void vOtherFunction( void ) + { + TaskHandle_t xHandle; + + // Create the task, storing the handle. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle ); + + // Use the handle to delete the task. + vTaskDelete( xHandle ); + } ++ * \defgroup vTaskDelete vTaskDelete + * \ingroup Tasks + */ +void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK CONTROL API + *----------------------------------------------------------*/ + +/** + * task. h + *void vTaskDelay( const TickType_t xTicksToDelay );+ * + * Delay a task for a given number of ticks. The actual time that the + * task remains blocked depends on the tick rate. The constant + * portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * INCLUDE_vTaskDelay must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * + * vTaskDelay() specifies a time at which the task wishes to unblock relative to + * the time at which vTaskDelay() is called. For example, specifying a block + * period of 100 ticks will cause the task to unblock 100 ticks after + * vTaskDelay() is called. vTaskDelay() does not therefore provide a good method + * of controlling the frequency of a periodic task as the path taken through the + * code, as well as other task and interrupt activity, will effect the frequency + * at which vTaskDelay() gets called and therefore the time at which the task + * next executes. See vTaskDelayUntil() for an alternative API function designed + * to facilitate fixed frequency execution. It does this by specifying an + * absolute time (rather than a relative time) at which the calling task should + * unblock. + * + * @param xTicksToDelay The amount of time, in tick periods, that + * the calling task should block. + * + * Example usage: + + void vTaskFunction( void * pvParameters ) + { + // Block for 500ms. + const TickType_t xDelay = 500 / portTICK_PERIOD_MS; + + for( ;; ) + { + // Simply toggle the LED every 500ms, blocking between each toggle. + vToggleLED(); + vTaskDelay( xDelay ); + } + } + + * \defgroup vTaskDelay vTaskDelay + * \ingroup TaskCtrl + */ +void vTaskDelay( const TickType_t xTicksToDelay ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskDelayUntil( TickType_t *pxPreviousWakeTime, const TickType_t xTimeIncrement );+ * + * INCLUDE_vTaskDelayUntil must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Delay a task until a specified time. This function can be used by periodic + * tasks to ensure a constant execution frequency. + * + * This function differs from vTaskDelay () in one important aspect: vTaskDelay () will + * cause a task to block for the specified number of ticks from the time vTaskDelay () is + * called. It is therefore difficult to use vTaskDelay () by itself to generate a fixed + * execution frequency as the time between a task starting to execute and that task + * calling vTaskDelay () may not be fixed [the task may take a different path though the + * code between calls, or may get interrupted or preempted a different number of times + * each time it executes]. + * + * Whereas vTaskDelay () specifies a wake time relative to the time at which the function + * is called, vTaskDelayUntil () specifies the absolute (exact) time at which it wishes to + * unblock. + * + * The constant portTICK_PERIOD_MS can be used to calculate real time from the tick + * rate - with the resolution of one tick period. + * + * @param pxPreviousWakeTime Pointer to a variable that holds the time at which the + * task was last unblocked. The variable must be initialised with the current time + * prior to its first use (see the example below). Following this the variable is + * automatically updated within vTaskDelayUntil (). + * + * @param xTimeIncrement The cycle time period. The task will be unblocked at + * time *pxPreviousWakeTime + xTimeIncrement. Calling vTaskDelayUntil with the + * same xTimeIncrement parameter value will cause the task to execute with + * a fixed interface period. + * + * Example usage: ++ // Perform an action every 10 ticks. + void vTaskFunction( void * pvParameters ) + { + TickType_t xLastWakeTime; + const TickType_t xFrequency = 10; + + // Initialise the xLastWakeTime variable with the current time. + xLastWakeTime = xTaskGetTickCount (); + for( ;; ) + { + // Wait for the next cycle. + vTaskDelayUntil( &xLastWakeTime, xFrequency ); + + // Perform action here. + } + } ++ * \defgroup vTaskDelayUntil vTaskDelayUntil + * \ingroup TaskCtrl + */ +void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) PRIVILEGED_FUNCTION; + +/** + * task. h + *BaseType_t xTaskAbortDelay( TaskHandle_t xTask );+ * + * INCLUDE_xTaskAbortDelay must be defined as 1 in FreeRTOSConfig.h for this + * function to be available. + * + * A task will enter the Blocked state when it is waiting for an event. The + * event it is waiting for can be a temporal event (waiting for a time), such + * as when vTaskDelay() is called, or an event on an object, such as when + * xQueueReceive() or ulTaskNotifyTake() is called. If the handle of a task + * that is in the Blocked state is used in a call to xTaskAbortDelay() then the + * task will leave the Blocked state, and return from whichever function call + * placed the task into the Blocked state. + * + * There is no 'FromISR' version of this function as an interrupt would need to + * know which object a task was blocked on in order to know which actions to + * take. For example, if the task was blocked on a queue the interrupt handler + * would then need to know if the queue was locked. + * + * @param xTask The handle of the task to remove from the Blocked state. + * + * @return If the task referenced by xTask was not in the Blocked state then + * pdFAIL is returned. Otherwise pdPASS is returned. + * + * \defgroup xTaskAbortDelay xTaskAbortDelay + * \ingroup TaskCtrl + */ +BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask );+ * + * INCLUDE_uxTaskPriorityGet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the priority of any task. + * + * @param xTask Handle of the task to be queried. Passing a NULL + * handle results in the priority of the calling task being returned. + * + * @return The priority of xTask. + * + * Example usage: ++ void vAFunction( void ) + { + TaskHandle_t xHandle; + + // Create a task, storing the handle. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle ); + + // ... + + // Use the handle to obtain the priority of the created task. + // It was created with tskIDLE_PRIORITY, but may have changed + // it itself. + if( uxTaskPriorityGet( xHandle ) != tskIDLE_PRIORITY ) + { + // The task has changed it's priority. + } + + // ... + + // Is our priority higher than the created task? + if( uxTaskPriorityGet( xHandle ) < uxTaskPriorityGet( NULL ) ) + { + // Our priority (obtained using NULL handle) is higher. + } + } ++ * \defgroup uxTaskPriorityGet uxTaskPriorityGet + * \ingroup TaskCtrl + */ +UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask );+ * + * A version of uxTaskPriorityGet() that can be used from an ISR. + */ +UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *eTaskState eTaskGetState( TaskHandle_t xTask );+ * + * INCLUDE_eTaskGetState must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Obtain the state of any task. States are encoded by the eTaskState + * enumerated type. + * + * @param xTask Handle of the task to be queried. + * + * @return The state of xTask at the time the function was called. Note the + * state of the task might change between the function being called, and the + * functions return value being tested by the calling task. + */ +eTaskState eTaskGetState( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState );+ * + * configUSE_TRACE_FACILITY must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * Populates a TaskStatus_t structure with information about a task. + * + * @param xTask Handle of the task being queried. If xTask is NULL then + * information will be returned about the calling task. + * + * @param pxTaskStatus A pointer to the TaskStatus_t structure that will be + * filled with information about the task referenced by the handle passed using + * the xTask parameter. + * + * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report + * the stack high water mark of the task being queried. Calculating the stack + * high water mark takes a relatively long time, and can make the system + * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to + * allow the high water mark checking to be skipped. The high watermark value + * will only be written to the TaskStatus_t structure if xGetFreeStackSpace is + * not set to pdFALSE; + * + * @param eState The TaskStatus_t structure contains a member to report the + * state of the task being queried. Obtaining the task state is not as fast as + * a simple assignment - so the eState parameter is provided to allow the state + * information to be omitted from the TaskStatus_t structure. To obtain state + * information then set eState to eInvalid - otherwise the value passed in + * eState will be reported as the task state in the TaskStatus_t structure. + * + * Example usage: ++ void vAFunction( void ) + { + TaskHandle_t xHandle; + TaskStatus_t xTaskDetails; + + // Obtain the handle of a task from its name. + xHandle = xTaskGetHandle( "Task_Name" ); + + // Check the handle is not NULL. + configASSERT( xHandle ); + + // Use the handle to obtain further information about the task. + vTaskGetInfo( xHandle, + &xTaskDetails, + pdTRUE, // Include the high water mark in xTaskDetails. + eInvalid ); // Include the task state in xTaskDetails. + } ++ * \defgroup vTaskGetInfo vTaskGetInfo + * \ingroup TaskCtrl + */ +void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority );+ * + * INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Set the priority of any task. + * + * A context switch will occur before the function returns if the priority + * being set is higher than the currently executing task. + * + * @param xTask Handle to the task for which the priority is being set. + * Passing a NULL handle results in the priority of the calling task being set. + * + * @param uxNewPriority The priority to which the task will be set. + * + * Example usage: ++ void vAFunction( void ) + { + TaskHandle_t xHandle; + + // Create a task, storing the handle. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle ); + + // ... + + // Use the handle to raise the priority of the created task. + vTaskPrioritySet( xHandle, tskIDLE_PRIORITY + 1 ); + + // ... + + // Use a NULL handle to raise our priority to the same value. + vTaskPrioritySet( NULL, tskIDLE_PRIORITY + 1 ); + } ++ * \defgroup vTaskPrioritySet vTaskPrioritySet + * \ingroup TaskCtrl + */ +void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskSuspend( TaskHandle_t xTaskToSuspend );+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Suspend any task. When suspended a task will never get any microcontroller + * processing time, no matter what its priority. + * + * Calls to vTaskSuspend are not accumulative - + * i.e. calling vTaskSuspend () twice on the same task still only requires one + * call to vTaskResume () to ready the suspended task. + * + * @param xTaskToSuspend Handle to the task being suspended. Passing a NULL + * handle will cause the calling task to be suspended. + * + * Example usage: ++ void vAFunction( void ) + { + TaskHandle_t xHandle; + + // Create a task, storing the handle. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle ); + + // ... + + // Use the handle to suspend the created task. + vTaskSuspend( xHandle ); + + // ... + + // The created task will not run during this period, unless + // another task calls vTaskResume( xHandle ). + + //... + + + // Suspend ourselves. + vTaskSuspend( NULL ); + + // We cannot get here unless another task calls vTaskResume + // with our handle as the parameter. + } ++ * \defgroup vTaskSuspend vTaskSuspend + * \ingroup TaskCtrl + */ +void vTaskSuspend( TaskHandle_t xTaskToSuspend ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskResume( TaskHandle_t xTaskToResume );+ * + * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. + * See the configuration section for more information. + * + * Resumes a suspended task. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * vTaskResume (). + * + * @param xTaskToResume Handle to the task being readied. + * + * Example usage: ++ void vAFunction( void ) + { + TaskHandle_t xHandle; + + // Create a task, storing the handle. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle ); + + // ... + + // Use the handle to suspend the created task. + vTaskSuspend( xHandle ); + + // ... + + // The created task will not run during this period, unless + // another task calls vTaskResume( xHandle ). + + //... + + + // Resume the suspended task ourselves. + vTaskResume( xHandle ); + + // The created task will once again get microcontroller processing + // time in accordance with its priority within the system. + } ++ * \defgroup vTaskResume vTaskResume + * \ingroup TaskCtrl + */ +void vTaskResume( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void xTaskResumeFromISR( TaskHandle_t xTaskToResume );+ * + * INCLUDE_xTaskResumeFromISR must be defined as 1 for this function to be + * available. See the configuration section for more information. + * + * An implementation of vTaskResume() that can be called from within an ISR. + * + * A task that has been suspended by one or more calls to vTaskSuspend () + * will be made available for running again by a single call to + * xTaskResumeFromISR (). + * + * xTaskResumeFromISR() should not be used to synchronise a task with an + * interrupt if there is a chance that the interrupt could arrive prior to the + * task being suspended - as this can lead to interrupts being missed. Use of a + * semaphore as a synchronisation mechanism would avoid this eventuality. + * + * @param xTaskToResume Handle to the task being readied. + * + * @return pdTRUE if resuming the task should result in a context switch, + * otherwise pdFALSE. This is used by the ISR to determine if a context switch + * may be required following the ISR. + * + * \defgroup vTaskResumeFromISR vTaskResumeFromISR + * \ingroup TaskCtrl + */ +BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * SCHEDULER CONTROL + *----------------------------------------------------------*/ + +/** + * task. h + *void vTaskStartScheduler( void );+ * + * Starts the real time kernel tick processing. After calling the kernel + * has control over which tasks are executed and when. + * + * See the demo application file main.c for an example of creating + * tasks and starting the kernel. + * + * Example usage: ++ void vAFunction( void ) + { + // Create at least one task before starting the kernel. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); + + // Start the real time kernel with preemption. + vTaskStartScheduler (); + + // Will not get here unless a task calls vTaskEndScheduler () + } ++ * + * \defgroup vTaskStartScheduler vTaskStartScheduler + * \ingroup SchedulerControl + */ +void vTaskStartScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskEndScheduler( void );+ * + * NOTE: At the time of writing only the x86 real mode port, which runs on a PC + * in place of DOS, implements this function. + * + * Stops the real time kernel tick. All created tasks will be automatically + * deleted and multitasking (either preemptive or cooperative) will + * stop. Execution then resumes from the point where vTaskStartScheduler () + * was called, as if vTaskStartScheduler () had just returned. + * + * See the demo application file main. c in the demo/PC directory for an + * example that uses vTaskEndScheduler (). + * + * vTaskEndScheduler () requires an exit function to be defined within the + * portable layer (see vPortEndScheduler () in port. c for the PC port). This + * performs hardware specific operations such as stopping the kernel tick. + * + * vTaskEndScheduler () will cause all of the resources allocated by the + * kernel to be freed - but will not free resources allocated by application + * tasks. + * + * Example usage: ++ void vTaskCode( void * pvParameters ) + { + for( ;; ) + { + // Task code goes here. + + // At some point we want to end the real time kernel processing + // so call ... + vTaskEndScheduler (); + } + } + + void vAFunction( void ) + { + // Create at least one task before starting the kernel. + xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL ); + + // Start the real time kernel with preemption. + vTaskStartScheduler (); + + // Will only get here when the vTaskCode () task has called + // vTaskEndScheduler (). When we get here we are back to single task + // execution. + } ++ * + * \defgroup vTaskEndScheduler vTaskEndScheduler + * \ingroup SchedulerControl + */ +void vTaskEndScheduler( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskSuspendAll( void );+ * + * Suspends the scheduler without disabling interrupts. Context switches will + * not occur while the scheduler is suspended. + * + * After calling vTaskSuspendAll () the calling task will continue to execute + * without risk of being swapped out until a call to xTaskResumeAll () has been + * made. + * + * API functions that have the potential to cause a context switch (for example, + * vTaskDelayUntil(), xQueueSend(), etc.) must not be called while the scheduler + * is suspended. + * + * Example usage: ++ void vTask1( void * pvParameters ) + { + for( ;; ) + { + // Task code goes here. + + // ... + + // At some point the task wants to perform a long operation during + // which it does not want to get swapped out. It cannot use + // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the + // operation may cause interrupts to be missed - including the + // ticks. + + // Prevent the real time kernel swapping out the task. + vTaskSuspendAll (); + + // Perform the operation here. There is no need to use critical + // sections as we have all the microcontroller processing time. + // During this time interrupts will still operate and the kernel + // tick count will be maintained. + + // ... + + // The operation is complete. Restart the kernel. + xTaskResumeAll (); + } + } ++ * \defgroup vTaskSuspendAll vTaskSuspendAll + * \ingroup SchedulerControl + */ +void vTaskSuspendAll( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *BaseType_t xTaskResumeAll( void );+ * + * Resumes scheduler activity after it was suspended by a call to + * vTaskSuspendAll(). + * + * xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks + * that were previously suspended by a call to vTaskSuspend(). + * + * @return If resuming the scheduler caused a context switch then pdTRUE is + * returned, otherwise pdFALSE is returned. + * + * Example usage: ++ void vTask1( void * pvParameters ) + { + for( ;; ) + { + // Task code goes here. + + // ... + + // At some point the task wants to perform a long operation during + // which it does not want to get swapped out. It cannot use + // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the + // operation may cause interrupts to be missed - including the + // ticks. + + // Prevent the real time kernel swapping out the task. + vTaskSuspendAll (); + + // Perform the operation here. There is no need to use critical + // sections as we have all the microcontroller processing time. + // During this time interrupts will still operate and the real + // time kernel tick count will be maintained. + + // ... + + // The operation is complete. Restart the kernel. We want to force + // a context switch - but there is no point if resuming the scheduler + // caused a context switch already. + if( !xTaskResumeAll () ) + { + taskYIELD (); + } + } + } ++ * \defgroup xTaskResumeAll xTaskResumeAll + * \ingroup SchedulerControl + */ +BaseType_t xTaskResumeAll( void ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * TASK UTILITIES + *----------------------------------------------------------*/ + +/** + * task. h + *TickType_t xTaskGetTickCount( void );+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * \defgroup xTaskGetTickCount xTaskGetTickCount + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCount( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *TickType_t xTaskGetTickCountFromISR( void );+ * + * @return The count of ticks since vTaskStartScheduler was called. + * + * This is a version of xTaskGetTickCount() that is safe to be called from an + * ISR - provided that TickType_t is the natural word size of the + * microcontroller being used or interrupt nesting is either not supported or + * not being used. + * + * \defgroup xTaskGetTickCountFromISR xTaskGetTickCountFromISR + * \ingroup TaskUtils + */ +TickType_t xTaskGetTickCountFromISR( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *uint16_t uxTaskGetNumberOfTasks( void );+ * + * @return The number of tasks that the real time kernel is currently managing. + * This includes all ready, blocked and suspended tasks. A task that + * has been deleted but not yet freed by the idle task will also be + * included in the count. + * + * \defgroup uxTaskGetNumberOfTasks uxTaskGetNumberOfTasks + * \ingroup TaskUtils + */ +UBaseType_t uxTaskGetNumberOfTasks( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *char *pcTaskGetName( TaskHandle_t xTaskToQuery );+ * + * @return The text (human readable) name of the task referenced by the handle + * xTaskToQuery. A task can query its own name by either passing in its own + * handle, or by setting xTaskToQuery to NULL. + * + * \defgroup pcTaskGetName pcTaskGetName + * \ingroup TaskUtils + */ +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *TaskHandle_t xTaskGetHandle( const char *pcNameToQuery );+ * + * NOTE: This function takes a relatively long time to complete and should be + * used sparingly. + * + * @return The handle of the task that has the human readable name pcNameToQuery. + * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle + * must be set to 1 in FreeRTOSConfig.h for pcTaskGetHandle() to be available. + * + * \defgroup pcTaskGetHandle pcTaskGetHandle + * \ingroup TaskUtils + */ +TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task.h + *UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask );+ * + * INCLUDE_uxTaskGetStackHighWaterMark must be set to 1 in FreeRTOSConfig.h for + * this function to be available. + * + * Returns the high water mark of the stack associated with xTask. That is, + * the minimum free stack space there has been (in words, so on a 32 bit machine + * a value of 1 means 4 bytes) since the task started. The smaller the returned + * number the closer the task has come to overflowing its stack. + * + * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + * same except for their return type. Using configSTACK_DEPTH_TYPE allows the + * user to determine the return type. It gets around the problem of the value + * overflowing on 8-bit types without breaking backward compatibility for + * applications that expect an 8-bit return type. + * + * @param xTask Handle of the task associated with the stack to be checked. + * Set xTask to NULL to check the stack of the calling task. + * + * @return The smallest amount of free stack space there has been (in words, so + * actual spaces on the stack rather than bytes) since the task referenced by + * xTask was created. + */ +UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/** + * task.h + *configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask );+ * + * INCLUDE_uxTaskGetStackHighWaterMark2 must be set to 1 in FreeRTOSConfig.h for + * this function to be available. + * + * Returns the high water mark of the stack associated with xTask. That is, + * the minimum free stack space there has been (in words, so on a 32 bit machine + * a value of 1 means 4 bytes) since the task started. The smaller the returned + * number the closer the task has come to overflowing its stack. + * + * uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + * same except for their return type. Using configSTACK_DEPTH_TYPE allows the + * user to determine the return type. It gets around the problem of the value + * overflowing on 8-bit types without breaking backward compatibility for + * applications that expect an 8-bit return type. + * + * @param xTask Handle of the task associated with the stack to be checked. + * Set xTask to NULL to check the stack of the calling task. + * + * @return The smallest amount of free stack space there has been (in words, so + * actual spaces on the stack rather than bytes) since the task referenced by + * xTask was created. + */ +configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* When using trace macros it is sometimes necessary to include task.h before +FreeRTOS.h. When this is done TaskHookFunction_t will not yet have been defined, +so the following two prototypes will cause a compilation error. This can be +fixed by simply guarding against the inclusion of these two prototypes unless +they are explicitly required by the configUSE_APPLICATION_TASK_TAG configuration +constant. */ +#ifdef configUSE_APPLICATION_TASK_TAG + #if configUSE_APPLICATION_TASK_TAG == 1 + /** + * task.h + *void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction );+ * + * Sets pxHookFunction to be the task hook function used by the task xTask. + * Passing xTask as NULL has the effect of setting the calling tasks hook + * function. + */ + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) PRIVILEGED_FUNCTION; + + /** + * task.h + *void xTaskGetApplicationTaskTag( TaskHandle_t xTask );+ * + * Returns the pxHookFunction value assigned to the task xTask. Do not + * call from an interrupt service routine - call + * xTaskGetApplicationTaskTagFromISR() instead. + */ + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + + /** + * task.h + *void xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask );+ * + * Returns the pxHookFunction value assigned to the task xTask. Can + * be called from an interrupt service routine. + */ + TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + #endif /* configUSE_APPLICATION_TASK_TAG ==1 */ +#endif /* ifdef configUSE_APPLICATION_TASK_TAG */ + +#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + + /* Each task contains an array of pointers that is dimensioned by the + configNUM_THREAD_LOCAL_STORAGE_POINTERS setting in FreeRTOSConfig.h. The + kernel does not use the pointers itself, so the application writer can use + the pointers for any purpose they wish. The following two functions are + used to set and query a pointer respectively. */ + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) PRIVILEGED_FUNCTION; + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) PRIVILEGED_FUNCTION; + +#endif + +/** + * task.h + *BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter );+ * + * Calls the hook function associated with xTask. Passing xTask as NULL has + * the effect of calling the Running tasks (the calling task) hook function. + * + * pvParameter is passed to the hook function for the task to interpret as it + * wants. The return value is the value returned by the task hook function + * registered by the user. + */ +BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) PRIVILEGED_FUNCTION; + +/** + * xTaskGetIdleTaskHandle() is only available if + * INCLUDE_xTaskGetIdleTaskHandle is set to 1 in FreeRTOSConfig.h. + * + * Simply returns the handle of the idle task. It is not valid to call + * xTaskGetIdleTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTaskGetIdleTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * configUSE_TRACE_FACILITY must be defined as 1 in FreeRTOSConfig.h for + * uxTaskGetSystemState() to be available. + * + * uxTaskGetSystemState() populates an TaskStatus_t structure for each task in + * the system. TaskStatus_t structures contain, among other things, members + * for the task handle, task name, task priority, task state, and total amount + * of run time consumed by the task. See the TaskStatus_t structure + * definition in this file for the full member list. + * + * NOTE: This function is intended for debugging use only as its use results in + * the scheduler remaining suspended for an extended period. + * + * @param pxTaskStatusArray A pointer to an array of TaskStatus_t structures. + * The array must contain at least one TaskStatus_t structure for each task + * that is under the control of the RTOS. The number of tasks under the control + * of the RTOS can be determined using the uxTaskGetNumberOfTasks() API function. + * + * @param uxArraySize The size of the array pointed to by the pxTaskStatusArray + * parameter. The size is specified as the number of indexes in the array, or + * the number of TaskStatus_t structures contained in the array, not by the + * number of bytes in the array. + * + * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in + * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the + * total run time (as defined by the run time stats clock, see + * http://www.freertos.org/rtos-run-time-stats.html) since the target booted. + * pulTotalRunTime can be set to NULL to omit the total run time information. + * + * @return The number of TaskStatus_t structures that were populated by + * uxTaskGetSystemState(). This should equal the number returned by the + * uxTaskGetNumberOfTasks() API function, but will be zero if the value passed + * in the uxArraySize parameter was too small. + * + * Example usage: ++ // This example demonstrates how a human readable table of run time stats + // information is generated from raw data provided by uxTaskGetSystemState(). + // The human readable table is written to pcWriteBuffer + void vTaskGetRunTimeStats( char *pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + volatile UBaseType_t uxArraySize, x; + uint32_t ulTotalRunTime, ulStatsAsPercentage; + + // Make sure the write buffer does not contain a string. + *pcWriteBuffer = 0x00; + + // Take a snapshot of the number of tasks in case it changes while this + // function is executing. + uxArraySize = uxTaskGetNumberOfTasks(); + + // Allocate a TaskStatus_t structure for each task. An array could be + // allocated statically at compile time. + pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) ); + + if( pxTaskStatusArray != NULL ) + { + // Generate raw status information about each task. + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime ); + + // For percentage calculations. + ulTotalRunTime /= 100UL; + + // Avoid divide by zero errors. + if( ulTotalRunTime > 0 ) + { + // For each populated position in the pxTaskStatusArray array, + // format the raw data as human readable ASCII data + for( x = 0; x < uxArraySize; x++ ) + { + // What percentage of the total run time has the task used? + // This will always be rounded down to the nearest integer. + // ulTotalRunTimeDiv100 has already been divided by 100. + ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime; + + if( ulStatsAsPercentage > 0UL ) + { + sprintf( pcWriteBuffer, "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); + } + else + { + // If the percentage is zero here then the task has + // consumed less than 1% of the total run time. + sprintf( pcWriteBuffer, "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName, pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + + pcWriteBuffer += strlen( ( char * ) pcWriteBuffer ); + } + } + + // The array is no longer needed, free the memory it consumes. + vPortFree( pxTaskStatusArray ); + } + } ++ */ +UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) PRIVILEGED_FUNCTION; + +/** + * task. h + *void vTaskList( char *pcWriteBuffer );+ * + * configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS must + * both be defined as 1 for this function to be available. See the + * configuration section of the FreeRTOS.org website for more information. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Lists all the current tasks, along with their current state and stack + * usage high water mark. + * + * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or + * suspended ('S'). + * + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays task + * names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that might + * bloat the code size, use a lot of stack, and provide different results on + * different platforms. An alternative, tiny, third party, and limited + * functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly through a + * call to vTaskList(). + * + * @param pcWriteBuffer A buffer into which the above mentioned details + * will be written, in ASCII form. This buffer is assumed to be large + * enough to contain the generated report. Approximately 40 bytes per + * task should be sufficient. + * + * \defgroup vTaskList vTaskList + * \ingroup TaskUtils + */ +void vTaskList( char * pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * task. h + *void vTaskGetRunTimeStats( char *pcWriteBuffer );+ * + * configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS + * must both be defined as 1 for this function to be available. The application + * must also then provide definitions for + * portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() + * to configure a peripheral timer/counter and return the timers current count + * value respectively. The counter should be at least 10 times the frequency of + * the tick count. + * + * NOTE 1: This function will disable interrupts for its duration. It is + * not intended for normal application runtime use but as a debug aid. + * + * Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total + * accumulated execution time being stored for each task. The resolution + * of the accumulated time value depends on the frequency of the timer + * configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. + * Calling vTaskGetRunTimeStats() writes the total execution time of each + * task into a buffer, both as an absolute count value and as a percentage + * of the total system execution time. + * + * NOTE 2: + * + * This function is provided for convenience only, and is used by many of the + * demo applications. Do not consider it to be part of the scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that displays the + * amount of time each task has spent in the Running state in both absolute and + * percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library function + * that might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, and + * limited functionality implementation of sprintf() is provided in many of the + * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note + * printf-stdarg.c does not provide a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() directly + * to get access to raw stats data, rather than indirectly through a call to + * vTaskGetRunTimeStats(). + * + * @param pcWriteBuffer A buffer into which the execution times will be + * written, in ASCII form. This buffer is assumed to be large enough to + * contain the generated report. Approximately 40 bytes per task should + * be sufficient. + * + * \defgroup vTaskGetRunTimeStats vTaskGetRunTimeStats + * \ingroup TaskUtils + */ +void vTaskGetRunTimeStats( char *pcWriteBuffer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** +* task. h +*uint32_t ulTaskGetIdleRunTimeCounter( void );+* +* configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS +* must both be defined as 1 for this function to be available. The application +* must also then provide definitions for +* portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE() +* to configure a peripheral timer/counter and return the timers current count +* value respectively. The counter should be at least 10 times the frequency of +* the tick count. +* +* Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total +* accumulated execution time being stored for each task. The resolution +* of the accumulated time value depends on the frequency of the timer +* configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro. +* While uxTaskGetSystemState() and vTaskGetRunTimeStats() writes the total +* execution time of each task into a buffer, ulTaskGetIdleRunTimeCounter() +* returns the total execution time of just the idle task. +* +* @return The total run time of the idle task. This is the amount of time the +* idle task has actually been executing. The unit of time is dependent on the +* frequency configured using the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and +* portGET_RUN_TIME_COUNTER_VALUE() macros. +* +* \defgroup ulTaskGetIdleRunTimeCounter ulTaskGetIdleRunTimeCounter +* \ingroup TaskUtils +*/ +uint32_t ulTaskGetIdleRunTimeCounter( void ) PRIVILEGED_FUNCTION; + +/** + * task. h + *BaseType_t xTaskNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction );+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * pulPreviousNotificationValue - + * Can be used to pass out the subject task's notification value before any + * bits are modified by the notify function. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) PRIVILEGED_FUNCTION; +#define xTaskNotify( xTaskToNotify, ulValue, eAction ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL ) +#define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) xTaskGenericNotify( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotifyValue ) ) + +/** + * task. h + *BaseType_t xTaskNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, BaseType_t *pxHigherPriorityTaskWoken );+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * A version of xTaskNotify() that can be used from an interrupt service routine + * (ISR). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param ulValue Data that can be sent with the notification. How the data is + * used depends on the value of the eAction parameter. + * + * @param eAction Specifies how the notification updates the task's notification + * value, if at all. Valid values for eAction are as follows: + * + * eSetBits - + * The task's notification value is bitwise ORed with ulValue. xTaskNofify() + * always returns pdPASS in this case. + * + * eIncrement - + * The task's notification value is incremented. ulValue is not used and + * xTaskNotify() always returns pdPASS in this case. + * + * eSetValueWithOverwrite - + * The task's notification value is set to the value of ulValue, even if the + * task being notified had not yet processed the previous notification (the + * task already had a notification pending). xTaskNotify() always returns + * pdPASS in this case. + * + * eSetValueWithoutOverwrite - + * If the task being notified did not already have a notification pending then + * the task's notification value is set to ulValue and xTaskNotify() will + * return pdPASS. If the task being notified already had a notification + * pending then no action is performed and pdFAIL is returned. + * + * eNoAction - + * The task receives a notification without its notification value being + * updated. ulValue is not used and xTaskNotify() always returns pdPASS in + * this case. + * + * @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the + * task to which the notification was sent to leave the Blocked state, and the + * unblocked task has a priority higher than the currently running task. If + * xTaskNotifyFromISR() sets this value to pdTRUE then a context switch should + * be requested before the interrupt is exited. How a context switch is + * requested from an ISR is dependent on the port - see the documentation page + * for the port in use. + * + * @return Dependent on the value of eAction. See the description of the + * eAction parameter. + * + * \defgroup xTaskNotify xTaskNotify + * \ingroup TaskNotifications + */ +BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; +#define xTaskNotifyFromISR( xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), NULL, ( pxHigherPriorityTaskWoken ) ) +#define xTaskNotifyAndQueryFromISR( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue, pxHigherPriorityTaskWoken ) xTaskGenericNotifyFromISR( ( xTaskToNotify ), ( ulValue ), ( eAction ), ( pulPreviousNotificationValue ), ( pxHigherPriorityTaskWoken ) ) + +/** + * task. h + *BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait );+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * A notification sent to a task will remain pending until it is cleared by the + * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was + * already in the Blocked state to wait for a notification when the notification + * arrives then the task will automatically be removed from the Blocked state + * (unblocked) and the notification cleared. + * + * A task can use xTaskNotifyWait() to [optionally] block to wait for a + * notification to be pending, or ulTaskNotifyTake() to [optionally] block + * to wait for its notification value to have a non-zero value. The task does + * not consume any CPU time while it is in the Blocked state. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param ulBitsToClearOnEntry Bits that are set in ulBitsToClearOnEntry value + * will be cleared in the calling task's notification value before the task + * checks to see if any notifications are pending, and optionally blocks if no + * notifications are pending. Setting ulBitsToClearOnEntry to ULONG_MAX (if + * limits.h is included) or 0xffffffffUL (if limits.h is not included) will have + * the effect of resetting the task's notification value to 0. Setting + * ulBitsToClearOnEntry to 0 will leave the task's notification value unchanged. + * + * @param ulBitsToClearOnExit If a notification is pending or received before + * the calling task exits the xTaskNotifyWait() function then the task's + * notification value (see the xTaskNotify() API function) is passed out using + * the pulNotificationValue parameter. Then any bits that are set in + * ulBitsToClearOnExit will be cleared in the task's notification value (note + * *pulNotificationValue is set before any bits are cleared). Setting + * ulBitsToClearOnExit to ULONG_MAX (if limits.h is included) or 0xffffffffUL + * (if limits.h is not included) will have the effect of resetting the task's + * notification value to 0 before the function exits. Setting + * ulBitsToClearOnExit to 0 will leave the task's notification value unchanged + * when the function exits (in which case the value passed out in + * pulNotificationValue will match the task's notification value). + * + * @param pulNotificationValue Used to pass the task's notification value out + * of the function. Note the value passed out will not be effected by the + * clearing of any bits caused by ulBitsToClearOnExit being non-zero. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for a notification to be received, should a notification + * not already be pending when xTaskNotifyWait() was called. The task + * will not consume any processing time while it is in the Blocked state. This + * is specified in kernel ticks, the macro pdMS_TO_TICSK( value_in_ms ) can be + * used to convert a time specified in milliseconds to a time specified in + * ticks. + * + * @return If a notification was received (including notifications that were + * already pending when xTaskNotifyWait was called) then pdPASS is + * returned. Otherwise pdFAIL is returned. + * + * \defgroup xTaskNotifyWait xTaskNotifyWait + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *BaseType_t xTaskNotifyGive( TaskHandle_t xTaskToNotify );+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro + * to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * xTaskNotifyGive() is a helper macro intended for use when task notifications + * are used as light weight and faster binary or counting semaphore equivalents. + * Actual FreeRTOS semaphores are given using the xSemaphoreGive() API function, + * the equivalent action that instead uses a task notification is + * xTaskNotifyGive(). + * + * When task notifications are being used as a binary or counting semaphore + * equivalent then the task being notified should wait for the notification + * using the ulTaskNotificationTake() API function rather than the + * xTaskNotifyWait() API function. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @return xTaskNotifyGive() is a macro that calls xTaskNotify() with the + * eAction parameter set to eIncrement - so pdPASS is always returned. + * + * \defgroup xTaskNotifyGive xTaskNotifyGive + * \ingroup TaskNotifications + */ +#define xTaskNotifyGive( xTaskToNotify ) xTaskGenericNotify( ( xTaskToNotify ), ( 0 ), eIncrement, NULL ) + +/** + * task. h + *void vTaskNotifyGiveFromISR( TaskHandle_t xTaskHandle, BaseType_t *pxHigherPriorityTaskWoken ); + * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro + * to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * A version of xTaskNotifyGive() that can be called from an interrupt service + * routine (ISR). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * vTaskNotifyGiveFromISR() is intended for use when task notifications are + * used as light weight and faster binary or counting semaphore equivalents. + * Actual FreeRTOS semaphores are given from an ISR using the + * xSemaphoreGiveFromISR() API function, the equivalent action that instead uses + * a task notification is vTaskNotifyGiveFromISR(). + * + * When task notifications are being used as a binary or counting semaphore + * equivalent then the task being notified should wait for the notification + * using the ulTaskNotificationTake() API function rather than the + * xTaskNotifyWait() API function. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details. + * + * @param xTaskToNotify The handle of the task being notified. The handle to a + * task can be returned from the xTaskCreate() API function used to create the + * task, and the handle of the currently running task can be obtained by calling + * xTaskGetCurrentTaskHandle(). + * + * @param pxHigherPriorityTaskWoken vTaskNotifyGiveFromISR() will set + * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the + * task to which the notification was sent to leave the Blocked state, and the + * unblocked task has a priority higher than the currently running task. If + * vTaskNotifyGiveFromISR() sets this value to pdTRUE then a context switch + * should be requested before the interrupt is exited. How a context switch is + * requested from an ISR is dependent on the port - see the documentation page + * for the port in use. + * + * \defgroup xTaskNotifyWait xTaskNotifyWait + * \ingroup TaskNotifications + */ +void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + +/** + * task. h + *uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait );+ * + * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this + * function to be available. + * + * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private + * "notification value", which is a 32-bit unsigned integer (uint32_t). + * + * Events can be sent to a task using an intermediary object. Examples of such + * objects are queues, semaphores, mutexes and event groups. Task notifications + * are a method of sending an event directly to a task without the need for such + * an intermediary object. + * + * A notification sent to a task can optionally perform an action, such as + * update, overwrite or increment the task's notification value. In that way + * task notifications can be used to send data to a task, or be used as light + * weight and fast binary or counting semaphores. + * + * ulTaskNotifyTake() is intended for use when a task notification is used as a + * faster and lighter weight binary or counting semaphore alternative. Actual + * FreeRTOS semaphores are taken using the xSemaphoreTake() API function, the + * equivalent action that instead uses a task notification is + * ulTaskNotifyTake(). + * + * When a task is using its notification value as a binary or counting semaphore + * other tasks should send notifications to it using the xTaskNotifyGive() + * macro, or xTaskNotify() function with the eAction parameter set to + * eIncrement. + * + * ulTaskNotifyTake() can either clear the task's notification value to + * zero on exit, in which case the notification value acts like a binary + * semaphore, or decrement the task's notification value on exit, in which case + * the notification value acts like a counting semaphore. + * + * A task can use ulTaskNotifyTake() to [optionally] block to wait for a + * the task's notification value to be non-zero. The task does not consume any + * CPU time while it is in the Blocked state. + * + * Where as xTaskNotifyWait() will return when a notification is pending, + * ulTaskNotifyTake() will return when the task's notification value is + * not zero. + * + * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details. + * + * @param xClearCountOnExit if xClearCountOnExit is pdFALSE then the task's + * notification value is decremented when the function exits. In this way the + * notification value acts like a counting semaphore. If xClearCountOnExit is + * not pdFALSE then the task's notification value is cleared to zero when the + * function exits. In this way the notification value acts like a binary + * semaphore. + * + * @param xTicksToWait The maximum amount of time that the task should wait in + * the Blocked state for the task's notification value to be greater than zero, + * should the count not already be greater than zero when + * ulTaskNotifyTake() was called. The task will not consume any processing + * time while it is in the Blocked state. This is specified in kernel ticks, + * the macro pdMS_TO_TICSK( value_in_ms ) can be used to convert a time + * specified in milliseconds to a time specified in ticks. + * + * @return The task's notification count before it is either cleared to zero or + * decremented (see the xClearCountOnExit parameter). + * + * \defgroup ulTaskNotifyTake ulTaskNotifyTake + * \ingroup TaskNotifications + */ +uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * task. h + *BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask );+ * + * If the notification state of the task referenced by the handle xTask is + * eNotified, then set the task's notification state to eNotWaitingNotification. + * The task's notification value is not altered. Set xTask to NULL to clear the + * notification state of the calling task. + * + * @return pdTRUE if the task's notification state was set to + * eNotWaitingNotification, otherwise pdFALSE. + * \defgroup xTaskNotifyStateClear xTaskNotifyStateClear + * \ingroup TaskNotifications + */ +BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ); + +/** +* task. h +*uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear );+* +* Clears the bits specified by the ulBitsToClear bit mask in the notification +* value of the task referenced by xTask. +* +* Set ulBitsToClear to 0xffffffff (UINT_MAX on 32-bit architectures) to clear +* the notification value to 0. Set ulBitsToClear to 0 to query the task's +* notification value without clearing any bits. +* +* @return The value of the target task's notification value before the bits +* specified by ulBitsToClear were cleared. +* \defgroup ulTaskNotifyValueClear ulTaskNotifyValueClear +* \ingroup TaskNotifications +*/ +uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) PRIVILEGED_FUNCTION; + +/** + * task.h + *void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )+ * + * Capture the current time for future use with xTaskCheckForTimeOut(). + * + * @param pxTimeOut Pointer to a timeout object into which the current time + * is to be captured. The captured time includes the tick count and the number + * of times the tick count has overflowed since the system first booted. + * \defgroup vTaskSetTimeOutState vTaskSetTimeOutState + * \ingroup TaskCtrl + */ +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; + +/** + * task.h + *BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait );+ * + * Determines if pxTicksToWait ticks has passed since a time was captured + * using a call to vTaskSetTimeOutState(). The captured time includes the tick + * count and the number of times the tick count has overflowed. + * + * @param pxTimeOut The time status as captured previously using + * vTaskSetTimeOutState. If the timeout has not yet occurred, it is updated + * to reflect the current time status. + * @param pxTicksToWait The number of ticks to check for timeout i.e. if + * pxTicksToWait ticks have passed since pxTimeOut was last updated (either by + * vTaskSetTimeOutState() or xTaskCheckForTimeOut()), the timeout has occurred. + * If the timeout has not occurred, pxTIcksToWait is updated to reflect the + * number of remaining ticks. + * + * @return If timeout has occurred, pdTRUE is returned. Otherwise pdFALSE is + * returned and pxTicksToWait is updated to reflect the number of remaining + * ticks. + * + * @see https://www.freertos.org/xTaskCheckForTimeOut.html + * + * Example Usage: + *+ // Driver library function used to receive uxWantedBytes from an Rx buffer + // that is filled by a UART interrupt. If there are not enough bytes in the + // Rx buffer then the task enters the Blocked state until it is notified that + // more data has been placed into the buffer. If there is still not enough + // data then the task re-enters the Blocked state, and xTaskCheckForTimeOut() + // is used to re-calculate the Block time to ensure the total amount of time + // spent in the Blocked state does not exceed MAX_TIME_TO_WAIT. This + // continues until either the buffer contains at least uxWantedBytes bytes, + // or the total amount of time spent in the Blocked state reaches + // MAX_TIME_TO_WAIT – at which point the task reads however many bytes are + // available up to a maximum of uxWantedBytes. + + size_t xUART_Receive( uint8_t *pucBuffer, size_t uxWantedBytes ) + { + size_t uxReceived = 0; + TickType_t xTicksToWait = MAX_TIME_TO_WAIT; + TimeOut_t xTimeOut; + + // Initialize xTimeOut. This records the time at which this function + // was entered. + vTaskSetTimeOutState( &xTimeOut ); + + // Loop until the buffer contains the wanted number of bytes, or a + // timeout occurs. + while( UART_bytes_in_rx_buffer( pxUARTInstance ) < uxWantedBytes ) + { + // The buffer didn't contain enough data so this task is going to + // enter the Blocked state. Adjusting xTicksToWait to account for + // any time that has been spent in the Blocked state within this + // function so far to ensure the total amount of time spent in the + // Blocked state does not exceed MAX_TIME_TO_WAIT. + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) != pdFALSE ) + { + //Timed out before the wanted number of bytes were available, + // exit the loop. + break; + } + + // Wait for a maximum of xTicksToWait ticks to be notified that the + // receive interrupt has placed more data into the buffer. + ulTaskNotifyTake( pdTRUE, xTicksToWait ); + } + + // Attempt to read uxWantedBytes from the receive buffer into pucBuffer. + // The actual number of bytes read (which might be less than + // uxWantedBytes) is returned. + uxReceived = UART_read_from_receive_buffer( pxUARTInstance, + pucBuffer, + uxWantedBytes ); + + return uxReceived; + } ++ * \defgroup xTaskCheckForTimeOut xTaskCheckForTimeOut + * \ingroup TaskCtrl + */ +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) PRIVILEGED_FUNCTION; + +/*----------------------------------------------------------- + * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES + *----------------------------------------------------------*/ + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Called from the real time kernel tick (either preemptive or cooperative), + * this increments the tick count and checks if any tasks that are blocked + * for a finite period required removing from a blocked list and placing on + * a ready list. If a non-zero value is returned then a context switch is + * required because either: + * + A task was removed from a blocked list because its timeout had expired, + * or + * + Time slicing is in use and there is a task of equal priority to the + * currently running task. + */ +BaseType_t xTaskIncrementTick( void ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes the calling task from the ready list and places it both + * on the list of tasks waiting for a particular event, and the + * list of delayed tasks. The task will be removed from both lists + * and replaced on the ready list should either the event occur (and + * there be no higher priority tasks waiting on the same event) or + * the delay period expires. + * + * The 'unordered' version replaces the event list item value with the + * xItemValue value, and inserts the list item at the end of the list. + * + * The 'ordered' version uses the existing event list item value (which is the + * owning tasks priority) to insert the list item into the event list is task + * priority order. + * + * @param pxEventList The list containing tasks that are blocked waiting + * for the event to occur. + * + * @param xItemValue The item value to use for the event list item when the + * event list is not ordered by task priority. + * + * @param xTicksToWait The maximum amount of time that the task should wait + * for the event to occur. This is specified in kernel ticks,the constant + * portTICK_PERIOD_MS can be used to convert kernel ticks into a real time + * period. + */ +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * This function performs nearly the same function as vTaskPlaceOnEventList(). + * The difference being that this function does not permit tasks to block + * indefinitely, whereas vTaskPlaceOnEventList() does. + * + */ +void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN + * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED. + * + * Removes a task from both the specified event list and the list of blocked + * tasks, and places it on a ready queue. + * + * xTaskRemoveFromEventList()/vTaskRemoveFromUnorderedEventList() will be called + * if either an event occurs to unblock a task, or the block timeout period + * expires. + * + * xTaskRemoveFromEventList() is used when the event list is in task priority + * order. It removes the list item from the head of the event list as that will + * have the highest priority owning task of all the tasks on the event list. + * vTaskRemoveFromUnorderedEventList() is used when the event list is not + * ordered and the event list items hold something other than the owning tasks + * priority. In this case the event list item value is updated to the value + * passed in the xItemValue parameter. + * + * @return pdTRUE if the task being removed has a higher priority than the task + * making the call, otherwise pdFALSE. + */ +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION; +void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) PRIVILEGED_FUNCTION; + +/* + * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY + * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS + * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER. + * + * Sets the pointer to the current TCB to the TCB of the highest priority task + * that is ready to run. + */ +portDONT_DISCARD void vTaskSwitchContext( void ) PRIVILEGED_FUNCTION; + +/* + * THESE FUNCTIONS MUST NOT BE USED FROM APPLICATION CODE. THEY ARE USED BY + * THE EVENT BITS MODULE. + */ +TickType_t uxTaskResetEventItemValue( void ) PRIVILEGED_FUNCTION; + +/* + * Return the handle of the calling task. + */ +TaskHandle_t xTaskGetCurrentTaskHandle( void ) PRIVILEGED_FUNCTION; + +/* + * Shortcut used by the queue implementation to prevent unnecessary call to + * taskYIELD(); + */ +void vTaskMissedYield( void ) PRIVILEGED_FUNCTION; + +/* + * Returns the scheduler state as taskSCHEDULER_RUNNING, + * taskSCHEDULER_NOT_STARTED or taskSCHEDULER_SUSPENDED. + */ +BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION; + +/* + * Raises the priority of the mutex holder to that of the calling task should + * the mutex holder have a priority less than the calling task. + */ +BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * Set the priority of a task back to its proper priority in the case that it + * inherited a higher priority while it was holding a semaphore. + */ +BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) PRIVILEGED_FUNCTION; + +/* + * If a higher priority task attempting to obtain a mutex caused a lower + * priority task to inherit the higher priority task's priority - but the higher + * priority task then timed out without obtaining the mutex, then the lower + * priority task will disinherit the priority again - but only down as far as + * the highest priority task that is still waiting for the mutex (if there were + * more than one task waiting for the mutex). + */ +void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) PRIVILEGED_FUNCTION; + +/* + * Get the uxTCBNumber assigned to the task referenced by the xTask parameter. + */ +UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +/* + * Set the uxTaskNumber of the task referenced by the xTask parameter to + * uxHandle. + */ +void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) PRIVILEGED_FUNCTION; + +/* + * Only available when configUSE_TICKLESS_IDLE is set to 1. + * If tickless mode is being used, or a low power mode is implemented, then + * the tick interrupt will not execute during idle periods. When this is the + * case, the tick count value maintained by the scheduler needs to be kept up + * to date with the actual execution time by being skipped forward by a time + * equal to the idle period. + */ +void vTaskStepTick( const TickType_t xTicksToJump ) PRIVILEGED_FUNCTION; + +/* Correct the tick count value after the application code has held +interrupts disabled for an extended period. xTicksToCatchUp is the number +of tick interrupts that have been missed due to interrupts being disabled. +Its value is not computed automatically, so must be computed by the +application writer. + +This function is similar to vTaskStepTick(), however, unlike +vTaskStepTick(), xTaskCatchUpTicks() may move the tick count forward past a +time at which a task should be removed from the blocked state. That means +tasks may have to be removed from the blocked state as the tick count is +moved. */ +BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) PRIVILEGED_FUNCTION; + +/* + * Only available when configUSE_TICKLESS_IDLE is set to 1. + * Provided for use within portSUPPRESS_TICKS_AND_SLEEP() to allow the port + * specific sleep function to determine if it is ok to proceed with the sleep, + * and if it is ok to proceed, if it is ok to sleep indefinitely. + * + * This function is necessary because portSUPPRESS_TICKS_AND_SLEEP() is only + * called with the scheduler suspended, not from within a critical section. It + * is therefore possible for an interrupt to request a context switch between + * portSUPPRESS_TICKS_AND_SLEEP() and the low power mode actually being + * entered. eTaskConfirmSleepModeStatus() should be called from a short + * critical section between the timer being stopped and the sleep mode being + * entered to ensure it is ok to proceed into the sleep mode. + */ +eSleepModeStatus eTaskConfirmSleepModeStatus( void ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Increment the mutex held count when a mutex is + * taken and return the handle of the task that has taken the mutex. + */ +TaskHandle_t pvTaskIncrementMutexHeldCount( void ) PRIVILEGED_FUNCTION; + +/* + * For internal use only. Same as vTaskSetTimeOutState(), but without a critial + * section. + */ +void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION; + + +#ifdef __cplusplus +} +#endif +#endif /* INC_TASK_H */ + + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h b/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h new file mode 100644 index 0000000..307ea1f --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h @@ -0,0 +1,1309 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef TIMERS_H +#define TIMERS_H + +#ifndef INC_FREERTOS_H + #error "include FreeRTOS.h must appear in source files before include timers.h" +#endif + +/*lint -save -e537 This headers are only multiply included if the application code +happens to also be including task.h. */ +#include "task.h" +/*lint -restore */ + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * MACROS AND DEFINITIONS + *----------------------------------------------------------*/ + +/* IDs for commands that can be sent/received on the timer queue. These are to +be used solely through the macros that make up the public software timer API, +as defined below. The commands that are sent from interrupts must use the +highest numbers as tmrFIRST_FROM_ISR_COMMAND is used to determine if the task +or interrupt version of the queue send function should be used. */ +#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ( ( BaseType_t ) -2 ) +#define tmrCOMMAND_EXECUTE_CALLBACK ( ( BaseType_t ) -1 ) +#define tmrCOMMAND_START_DONT_TRACE ( ( BaseType_t ) 0 ) +#define tmrCOMMAND_START ( ( BaseType_t ) 1 ) +#define tmrCOMMAND_RESET ( ( BaseType_t ) 2 ) +#define tmrCOMMAND_STOP ( ( BaseType_t ) 3 ) +#define tmrCOMMAND_CHANGE_PERIOD ( ( BaseType_t ) 4 ) +#define tmrCOMMAND_DELETE ( ( BaseType_t ) 5 ) + +#define tmrFIRST_FROM_ISR_COMMAND ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_START_FROM_ISR ( ( BaseType_t ) 6 ) +#define tmrCOMMAND_RESET_FROM_ISR ( ( BaseType_t ) 7 ) +#define tmrCOMMAND_STOP_FROM_ISR ( ( BaseType_t ) 8 ) +#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ( ( BaseType_t ) 9 ) + + +/** + * Type by which software timers are referenced. For example, a call to + * xTimerCreate() returns an TimerHandle_t variable that can then be used to + * reference the subject timer in calls to other software timer API functions + * (for example, xTimerStart(), xTimerReset(), etc.). + */ +struct tmrTimerControl; /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +typedef struct tmrTimerControl * TimerHandle_t; + +/* + * Defines the prototype to which timer callback functions must conform. + */ +typedef void (*TimerCallbackFunction_t)( TimerHandle_t xTimer ); + +/* + * Defines the prototype to which functions used with the + * xTimerPendFunctionCallFromISR() function must conform. + */ +typedef void (*PendedFunction_t)( void *, uint32_t ); + +/** + * TimerHandle_t xTimerCreate( const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. Time timer period must be greater than 0. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @return If the timer is successfully created then a handle to the newly + * created timer is returned. If the timer cannot be created because there is + * insufficient FreeRTOS heap remaining to allocate the timer + * structures then NULL is returned. + * + * Example usage: + * @verbatim + * #define NUM_TIMERS 5 + * + * // An array to hold handles to the created timers. + * TimerHandle_t xTimers[ NUM_TIMERS ]; + * + * // An array to hold a count of the number of times each timer expires. + * int32_t lExpireCounters[ NUM_TIMERS ] = { 0 }; + * + * // Define a callback function that will be used by multiple timer instances. + * // The callback function does nothing but count the number of times the + * // associated timer expires, and stop the timer once the timer has expired + * // 10 times. + * void vTimerCallback( TimerHandle_t pxTimer ) + * { + * int32_t lArrayIndex; + * const int32_t xMaxExpiryCountBeforeStopping = 10; + * + * // Optionally do something if the pxTimer parameter is NULL. + * configASSERT( pxTimer ); + * + * // Which timer expired? + * lArrayIndex = ( int32_t ) pvTimerGetTimerID( pxTimer ); + * + * // Increment the number of times that pxTimer has expired. + * lExpireCounters[ lArrayIndex ] += 1; + * + * // If the timer has expired 10 times then stop it from running. + * if( lExpireCounters[ lArrayIndex ] == xMaxExpiryCountBeforeStopping ) + * { + * // Do not use a block time if calling a timer API function from a + * // timer callback function, as doing so could cause a deadlock! + * xTimerStop( pxTimer, 0 ); + * } + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start some timers. Starting the timers before the scheduler + * // has been started means the timers will start running immediately that + * // the scheduler starts. + * for( x = 0; x < NUM_TIMERS; x++ ) + * { + * xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by the kernel. + * ( 100 * x ), // The timer period in ticks. + * pdTRUE, // The timers will auto-reload themselves when they expire. + * ( void * ) x, // Assign each timer a unique id equal to its array index. + * vTimerCallback // Each timer calls the same callback when it expires. + * ); + * + * if( xTimers[ x ] == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xTimers[ x ], 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) PRIVILEGED_FUNCTION; +#endif + +/** + * TimerHandle_t xTimerCreateStatic(const char * const pcTimerName, + * TickType_t xTimerPeriodInTicks, + * UBaseType_t uxAutoReload, + * void * pvTimerID, + * TimerCallbackFunction_t pxCallbackFunction, + * StaticTimer_t *pxTimerBuffer ); + * + * Creates a new software timer instance, and returns a handle by which the + * created software timer can be referenced. + * + * Internally, within the FreeRTOS implementation, software timers use a block + * of memory, in which the timer data structure is stored. If a software timer + * is created using xTimerCreate() then the required memory is automatically + * dynamically allocated inside the xTimerCreate() function. (see + * http://www.freertos.org/a00111.html). If a software timer is created using + * xTimerCreateStatic() then the application writer must provide the memory that + * will get used by the software timer. xTimerCreateStatic() therefore allows a + * software timer to be created without using any dynamic memory allocation. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a + * timer into the active state. + * + * @param pcTimerName A text name that is assigned to the timer. This is done + * purely to assist debugging. The kernel itself only ever references a timer + * by its handle, and never by its name. + * + * @param xTimerPeriodInTicks The timer period. The time is defined in tick + * periods so the constant portTICK_PERIOD_MS can be used to convert a time that + * has been specified in milliseconds. For example, if the timer must expire + * after 100 ticks, then xTimerPeriodInTicks should be set to 100. + * Alternatively, if the timer must expire after 500ms, then xPeriod can be set + * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or + * equal to 1000. The timer period must be greater than 0. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter. + * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + * + * @param pvTimerID An identifier that is assigned to the timer being created. + * Typically this would be used in the timer callback function to identify which + * timer expired when the same callback function is assigned to more than one + * timer. + * + * @param pxCallbackFunction The function to call when the timer expires. + * Callback functions must have the prototype defined by TimerCallbackFunction_t, + * which is "void vCallbackFunction( TimerHandle_t xTimer );". + * + * @param pxTimerBuffer Must point to a variable of type StaticTimer_t, which + * will be then be used to hold the software timer's data structures, removing + * the need for the memory to be allocated dynamically. + * + * @return If the timer is created then a handle to the created timer is + * returned. If pxTimerBuffer was NULL then NULL is returned. + * + * Example usage: + * @verbatim + * + * // The buffer used to hold the software timer's data structure. + * static StaticTimer_t xTimerBuffer; + * + * // A variable that will be incremented by the software timer's callback + * // function. + * UBaseType_t uxVariableToIncrement = 0; + * + * // A software timer callback function that increments a variable passed to + * // it when the software timer was created. After the 5th increment the + * // callback function stops the software timer. + * static void prvTimerCallback( TimerHandle_t xExpiredTimer ) + * { + * UBaseType_t *puxVariableToIncrement; + * BaseType_t xReturned; + * + * // Obtain the address of the variable to increment from the timer ID. + * puxVariableToIncrement = ( UBaseType_t * ) pvTimerGetTimerID( xExpiredTimer ); + * + * // Increment the variable to show the timer callback has executed. + * ( *puxVariableToIncrement )++; + * + * // If this callback has executed the required number of times, stop the + * // timer. + * if( *puxVariableToIncrement == 5 ) + * { + * // This is called from a timer callback so must not block. + * xTimerStop( xExpiredTimer, staticDONT_BLOCK ); + * } + * } + * + * + * void main( void ) + * { + * // Create the software time. xTimerCreateStatic() has an extra parameter + * // than the normal xTimerCreate() API function. The parameter is a pointer + * // to the StaticTimer_t structure that will hold the software timer + * // structure. If the parameter is passed as NULL then the structure will be + * // allocated dynamically, just as if xTimerCreate() had been called. + * xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging only. Not used by FreeRTOS. + * xTimerPeriod, // The period of the timer in ticks. + * pdTRUE, // This is an auto-reload timer. + * ( void * ) &uxVariableToIncrement, // A variable incremented by the software timer's callback function + * prvTimerCallback, // The function to execute when the timer expires. + * &xTimerBuffer ); // The buffer that will hold the software timer structure. + * + * // The scheduler has not started yet so a block time is not used. + * xReturned = xTimerStart( xTimer, 0 ); + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timers running as they have already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) PRIVILEGED_FUNCTION; +#endif /* configSUPPORT_STATIC_ALLOCATION */ + +/** + * void *pvTimerGetTimerID( TimerHandle_t xTimer ); + * + * Returns the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer, and by calling the + * vTimerSetTimerID() API function. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being queried. + * + * @return The ID assigned to the timer being queried. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ); + * + * Sets the ID assigned to the timer. + * + * IDs are assigned to timers using the pvTimerID parameter of the call to + * xTimerCreated() that was used to create the timer. + * + * If the same callback function is assigned to multiple timers then the timer + * ID can be used as time specific (timer local) storage. + * + * @param xTimer The timer being updated. + * + * @param pvNewID The ID to assign to the timer. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + */ +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ); + * + * Queries a timer to see if it is active or dormant. + * + * A timer will be dormant if: + * 1) It has been created but not started, or + * 2) It is an expired one-shot timer that has not been restarted. + * + * Timers are created in the dormant state. The xTimerStart(), xTimerReset(), + * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and + * xTimerChangePeriodFromISR() API functions can all be used to transition a timer into the + * active state. + * + * @param xTimer The timer being queried. + * + * @return pdFALSE will be returned if the timer is dormant. A value other than + * pdFALSE will be returned if the timer is active. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is active, do something. + * } + * else + * { + * // xTimer is not active, do something else. + * } + * } + * @endverbatim + */ +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ); + * + * Simply returns the handle of the timer service/daemon task. It it not valid + * to call xTimerGetTimerDaemonTaskHandle() before the scheduler has been started. + */ +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION; + +/** + * BaseType_t xTimerStart( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStart() starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerStart() has equivalent functionality + * to the xTimerReset() API function. + * + * Starting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerStart() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerStart() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerStart() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStart() + * to be available. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the start command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStart() was called. xTicksToWait is ignored if xTimerStart() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStart( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStop( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerStop() stops a timer that was previously started using either of the + * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(), + * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions. + * + * Stopping a timer ensures the timer is not in the active state. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStop() + * to be available. + * + * @param xTimer The handle of the timer being stopped. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the stop command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerStop() was called. xTicksToWait is ignored if xTimerStop() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerCreate() API function example usage scenario. + * + */ +#define xTimerStop( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerChangePeriod( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerChangePeriod() changes the period of a timer that was previously + * created using the xTimerCreate() API function. + * + * xTimerChangePeriod() can be called to change the period of an active or + * dormant state timer. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerChangePeriod() to be available. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the change period command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerChangePeriod() was called. xTicksToWait is ignored if + * xTimerChangePeriod() is called before the scheduler is started. + * + * @return pdFAIL will be returned if the change period command could not be + * sent to the timer command queue even after xTicksToWait ticks had passed. + * pdPASS will be returned if the command was successfully sent to the timer + * command queue. When the command is actually processed will depend on the + * priority of the timer service/daemon task relative to other tasks in the + * system. The timer service/daemon task priority is set by the + * configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This function assumes xTimer has already been created. If the timer + * // referenced by xTimer is already active when it is called, then the timer + * // is deleted. If the timer referenced by xTimer is not active when it is + * // called, then the period of the timer is set to 500ms and the timer is + * // started. + * void vAFunction( TimerHandle_t xTimer ) + * { + * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive( xTimer ) )" + * { + * // xTimer is already active - delete it. + * xTimerDelete( xTimer ); + * } + * else + * { + * // xTimer is not active, change its period to 500ms. This will also + * // cause the timer to start. Block for a maximum of 100 ticks if the + * // change period command cannot immediately be sent to the timer + * // command queue. + * if( xTimerChangePeriod( xTimer, 500 / portTICK_PERIOD_MS, 100 ) == pdPASS ) + * { + * // The command was successfully sent. + * } + * else + * { + * // The command could not be sent, even after waiting for 100 ticks + * // to pass. Take appropriate action here. + * } + * } + * } + * @endverbatim + */ + #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerDelete( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerDelete() deletes a timer that was previously created using the + * xTimerCreate() API function. + * + * The configUSE_TIMERS configuration constant must be set to 1 for + * xTimerDelete() to be available. + * + * @param xTimer The handle of the timer being deleted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the delete command to be + * successfully sent to the timer command queue, should the queue already be + * full when xTimerDelete() was called. xTicksToWait is ignored if xTimerDelete() + * is called before the scheduler is started. + * + * @return pdFAIL will be returned if the delete command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * + * See the xTimerChangePeriod() API function example usage scenario. + */ +#define xTimerDelete( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerReset( TimerHandle_t xTimer, TickType_t xTicksToWait ); + * + * Timer functionality is provided by a timer service/daemon task. Many of the + * public FreeRTOS timer API functions send commands to the timer service task + * through a queue called the timer command queue. The timer command queue is + * private to the kernel itself and is not directly accessible to application + * code. The length of the timer command queue is set by the + * configTIMER_QUEUE_LENGTH configuration constant. + * + * xTimerReset() re-starts a timer that was previously created using the + * xTimerCreate() API function. If the timer had already been started and was + * already in the active state, then xTimerReset() will cause the timer to + * re-evaluate its expiry time so that it is relative to when xTimerReset() was + * called. If the timer was in the dormant state then xTimerReset() has + * equivalent functionality to the xTimerStart() API function. + * + * Resetting a timer ensures the timer is in the active state. If the timer + * is not stopped, deleted, or reset in the mean time, the callback function + * associated with the timer will get called 'n' ticks after xTimerReset() was + * called, where 'n' is the timers defined period. + * + * It is valid to call xTimerReset() before the scheduler has been started, but + * when this is done the timer will not actually start until the scheduler is + * started, and the timers expiry time will be relative to when the scheduler is + * started, not relative to when xTimerReset() was called. + * + * The configUSE_TIMERS configuration constant must be set to 1 for xTimerReset() + * to be available. + * + * @param xTimer The handle of the timer being reset/started/restarted. + * + * @param xTicksToWait Specifies the time, in ticks, that the calling task should + * be held in the Blocked state to wait for the reset command to be successfully + * sent to the timer command queue, should the queue already be full when + * xTimerReset() was called. xTicksToWait is ignored if xTimerReset() is called + * before the scheduler is started. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue even after xTicksToWait ticks had passed. pdPASS will + * be returned if the command was successfully sent to the timer command queue. + * When the command is actually processed will depend on the priority of the + * timer service/daemon task relative to other tasks in the system, although the + * timers expiry time is relative to when xTimerStart() is actually called. The + * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // When a key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer. + * + * TimerHandle_t xBacklightTimer = NULL; + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press event handler. + * void vKeyPressEventHandler( char cKey ) + * { + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. Wait 10 ticks for the command to be successfully sent + * // if it cannot be sent immediately. + * vSetBacklightState( BACKLIGHT_ON ); + * if( xTimerReset( xBacklightTimer, 100 ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * } + * + * void main( void ) + * { + * int32_t x; + * + * // Create then start the one-shot timer that is responsible for turning + * // the back-light off if no keys are pressed within a 5 second period. + * xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by the kernel. + * ( 5000 / portTICK_PERIOD_MS), // The timer period in ticks. + * pdFALSE, // The timer is a one-shot timer. + * 0, // The id is not used by the callback so can take any value. + * vBacklightTimerCallback // The callback function that switches the LCD back-light off. + * ); + * + * if( xBacklightTimer == NULL ) + * { + * // The timer was not created. + * } + * else + * { + * // Start the timer. No block time is specified, and even if one was + * // it would be ignored because the scheduler has not yet been + * // started. + * if( xTimerStart( xBacklightTimer, 0 ) != pdPASS ) + * { + * // The timer could not be set into the Active state. + * } + * } + * + * // ... + * // Create tasks here. + * // ... + * + * // Starting the scheduler will start the timer running as it has already + * // been set into the active state. + * vTaskStartScheduler(); + * + * // Should not reach here. + * for( ;; ); + * } + * @endverbatim + */ +#define xTimerReset( xTimer, xTicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) ) + +/** + * BaseType_t xTimerStartFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStart() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being started/restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStartFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStartFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStartFromISR() function. If + * xTimerStartFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the start command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerStartFromISR() is actually called. The timer + * service/daemon task priority is set by the configTIMER_TASK_PRIORITY + * configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then restart the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerStartFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The start command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerStopFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerStop() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer being stopped. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerStopFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerStopFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerStopFromISR() function. If + * xTimerStopFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the stop command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the timer should be simply stopped. + * + * // The interrupt service routine that stops the timer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - simply stop the timer. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerStopFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The stop command was not executed successfully. Take appropriate + * // action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP_FROM_ISR, 0, ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerChangePeriodFromISR( TimerHandle_t xTimer, + * TickType_t xNewPeriod, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerChangePeriod() that can be called from an interrupt + * service routine. + * + * @param xTimer The handle of the timer that is having its period changed. + * + * @param xNewPeriod The new period for xTimer. Timer periods are specified in + * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time + * that has been specified in milliseconds. For example, if the timer must + * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively, + * if the timer must expire after 500ms, then xNewPeriod can be set to + * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than + * or equal to 1000. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerChangePeriodFromISR() writes a message to the + * timer command queue, so has the potential to transition the timer service/ + * daemon task out of the Blocked state. If calling xTimerChangePeriodFromISR() + * causes the timer service/daemon task to leave the Blocked state, and the + * timer service/daemon task has a priority equal to or greater than the + * currently executing task (the task that was interrupted), then + * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the + * xTimerChangePeriodFromISR() function. If xTimerChangePeriodFromISR() sets + * this value to pdTRUE then a context switch should be performed before the + * interrupt exits. + * + * @return pdFAIL will be returned if the command to change the timers period + * could not be sent to the timer command queue. pdPASS will be returned if the + * command was successfully sent to the timer command queue. When the command + * is actually processed will depend on the priority of the timer service/daemon + * task relative to other tasks in the system. The timer service/daemon task + * priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xTimer has already been created and started. When + * // an interrupt occurs, the period of xTimer should be changed to 500ms. + * + * // The interrupt service routine that changes the period of xTimer. + * void vAnExampleInterruptServiceRoutine( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // The interrupt has occurred - change the period of xTimer to 500ms. + * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined + * // (within this function). As this is an interrupt service routine, only + * // FreeRTOS API functions that end in "FromISR" can be used. + * if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The command to change the timers period was not executed + * // successfully. Take appropriate action here. + * } + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, ( xNewPeriod ), ( pxHigherPriorityTaskWoken ), 0U ) + +/** + * BaseType_t xTimerResetFromISR( TimerHandle_t xTimer, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * A version of xTimerReset() that can be called from an interrupt service + * routine. + * + * @param xTimer The handle of the timer that is to be started, reset, or + * restarted. + * + * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most + * of its time in the Blocked state, waiting for messages to arrive on the timer + * command queue. Calling xTimerResetFromISR() writes a message to the timer + * command queue, so has the potential to transition the timer service/daemon + * task out of the Blocked state. If calling xTimerResetFromISR() causes the + * timer service/daemon task to leave the Blocked state, and the timer service/ + * daemon task has a priority equal to or greater than the currently executing + * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will + * get set to pdTRUE internally within the xTimerResetFromISR() function. If + * xTimerResetFromISR() sets this value to pdTRUE then a context switch should + * be performed before the interrupt exits. + * + * @return pdFAIL will be returned if the reset command could not be sent to + * the timer command queue. pdPASS will be returned if the command was + * successfully sent to the timer command queue. When the command is actually + * processed will depend on the priority of the timer service/daemon task + * relative to other tasks in the system, although the timers expiry time is + * relative to when xTimerResetFromISR() is actually called. The timer service/daemon + * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. + * + * Example usage: + * @verbatim + * // This scenario assumes xBacklightTimer has already been created. When a + * // key is pressed, an LCD back-light is switched on. If 5 seconds pass + * // without a key being pressed, then the LCD back-light is switched off. In + * // this case, the timer is a one-shot timer, and unlike the example given for + * // the xTimerReset() function, the key press event handler is an interrupt + * // service routine. + * + * // The callback function assigned to the one-shot timer. In this case the + * // parameter is not used. + * void vBacklightTimerCallback( TimerHandle_t pxTimer ) + * { + * // The timer expired, therefore 5 seconds must have passed since a key + * // was pressed. Switch off the LCD back-light. + * vSetBacklightState( BACKLIGHT_OFF ); + * } + * + * // The key press interrupt service routine. + * void vKeyPressEventInterruptHandler( void ) + * { + * BaseType_t xHigherPriorityTaskWoken = pdFALSE; + * + * // Ensure the LCD back-light is on, then reset the timer that is + * // responsible for turning the back-light off after 5 seconds of + * // key inactivity. This is an interrupt service routine so can only + * // call FreeRTOS API functions that end in "FromISR". + * vSetBacklightState( BACKLIGHT_ON ); + * + * // xTimerStartFromISR() or xTimerResetFromISR() could be called here + * // as both cause the timer to re-calculate its expiry time. + * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was + * // declared (in this function). + * if( xTimerResetFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS ) + * { + * // The reset command was not executed successfully. Take appropriate + * // action here. + * } + * + * // Perform the rest of the key processing here. + * + * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch + * // should be performed. The syntax required to perform a context switch + * // from inside an ISR varies from port to port, and from compiler to + * // compiler. Inspect the demos for the port you are using to find the + * // actual syntax required. + * if( xHigherPriorityTaskWoken != pdFALSE ) + * { + * // Call the interrupt safe yield function here (actual function + * // depends on the FreeRTOS port being used). + * } + * } + * @endverbatim + */ +#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET_FROM_ISR, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U ) + + +/** + * BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * BaseType_t *pxHigherPriorityTaskWoken ); + * + * + * Used from application interrupt service routines to defer the execution of a + * function to the RTOS daemon task (the timer service task, hence this function + * is implemented in timers.c and is prefixed with 'Timer'). + * + * Ideally an interrupt service routine (ISR) is kept as short as possible, but + * sometimes an ISR either has a lot of processing to do, or needs to perform + * processing that is not deterministic. In these cases + * xTimerPendFunctionCallFromISR() can be used to defer processing of a function + * to the RTOS daemon task. + * + * A mechanism is provided that allows the interrupt to return directly to the + * task that will subsequently execute the pended callback function. This + * allows the callback function to execute contiguously in time with the + * interrupt - just as if the callback had executed in the interrupt itself. + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param pxHigherPriorityTaskWoken As mentioned above, calling this function + * will result in a message being sent to the timer daemon task. If the + * priority of the timer daemon task (which is set using + * configTIMER_TASK_PRIORITY in FreeRTOSConfig.h) is higher than the priority of + * the currently running task (the task the interrupt interrupted) then + * *pxHigherPriorityTaskWoken will be set to pdTRUE within + * xTimerPendFunctionCallFromISR(), indicating that a context switch should be + * requested before the interrupt exits. For that reason + * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the + * example code below. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + * Example usage: + * @verbatim + * + * // The callback function that will execute in the context of the daemon task. + * // Note callback functions must all use this same prototype. + * void vProcessInterface( void *pvParameter1, uint32_t ulParameter2 ) + * { + * BaseType_t xInterfaceToService; + * + * // The interface that requires servicing is passed in the second + * // parameter. The first parameter is not used in this case. + * xInterfaceToService = ( BaseType_t ) ulParameter2; + * + * // ...Perform the processing here... + * } + * + * // An ISR that receives data packets from multiple interfaces + * void vAnISR( void ) + * { + * BaseType_t xInterfaceToService, xHigherPriorityTaskWoken; + * + * // Query the hardware to determine which interface needs processing. + * xInterfaceToService = prvCheckInterfaces(); + * + * // The actual processing is to be deferred to a task. Request the + * // vProcessInterface() callback function is executed, passing in the + * // number of the interface that needs processing. The interface to + * // service is passed in the second parameter. The first parameter is + * // not used in this case. + * xHigherPriorityTaskWoken = pdFALSE; + * xTimerPendFunctionCallFromISR( vProcessInterface, NULL, ( uint32_t ) xInterfaceToService, &xHigherPriorityTaskWoken ); + * + * // If xHigherPriorityTaskWoken is now set to pdTRUE then a context + * // switch should be requested. The macro used is port specific and will + * // be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - refer to + * // the documentation page for the port being used. + * portYIELD_FROM_ISR( xHigherPriorityTaskWoken ); + * + * } + * @endverbatim + */ +BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) PRIVILEGED_FUNCTION; + + /** + * BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, + * void *pvParameter1, + * uint32_t ulParameter2, + * TickType_t xTicksToWait ); + * + * + * Used to defer the execution of a function to the RTOS daemon task (the timer + * service task, hence this function is implemented in timers.c and is prefixed + * with 'Timer'). + * + * @param xFunctionToPend The function to execute from the timer service/ + * daemon task. The function must conform to the PendedFunction_t + * prototype. + * + * @param pvParameter1 The value of the callback function's first parameter. + * The parameter has a void * type to allow it to be used to pass any type. + * For example, unsigned longs can be cast to a void *, or the void * can be + * used to point to a structure. + * + * @param ulParameter2 The value of the callback function's second parameter. + * + * @param xTicksToWait Calling this function will result in a message being + * sent to the timer daemon task on a queue. xTicksToWait is the amount of + * time the calling task should remain in the Blocked state (so not using any + * processing time) for space to become available on the timer queue if the + * queue is found to be full. + * + * @return pdPASS is returned if the message was successfully sent to the + * timer daemon task, otherwise pdFALSE is returned. + * + */ +BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +/** + * const char * const pcTimerGetName( TimerHandle_t xTimer ); + * + * Returns the name that was assigned to a timer when the timer was created. + * + * @param xTimer The handle of the timer being queried. + * + * @return The name assigned to the timer specified by the xTimer parameter. + */ +const char * pcTimerGetName( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + +/** + * void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ); + * + * Updates a timer to be either an auto-reload timer, in which case the timer + * automatically resets itself each time it expires, or a one-shot timer, in + * which case the timer will only expire once unless it is manually restarted. + * + * @param xTimer The handle of the timer being updated. + * + * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will + * expire repeatedly with a frequency set by the timer's period (see the + * xTimerPeriodInTicks parameter of the xTimerCreate() API function). If + * uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and + * enter the dormant state after it expires. + */ +void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) PRIVILEGED_FUNCTION; + +/** +* UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ); +* +* Queries a timer to determine if it is an auto-reload timer, in which case the timer +* automatically resets itself each time it expires, or a one-shot timer, in +* which case the timer will only expire once unless it is manually restarted. +* +* @param xTimer The handle of the timer being queried. +* +* @return If the timer is an auto-reload timer then pdTRUE is returned, otherwise +* pdFALSE is returned. +*/ +UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** + * TickType_t xTimerGetPeriod( TimerHandle_t xTimer ); + * + * Returns the period of a timer. + * + * @param xTimer The handle of the timer being queried. + * + * @return The period of the timer in ticks. + */ +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/** +* TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ); +* +* Returns the time in ticks at which the timer will expire. If this is less +* than the current tick count then the expiry time has overflowed from the +* current time. +* +* @param xTimer The handle of the timer being queried. +* +* @return If the timer is running then the time in ticks at which the timer +* will next expire is returned. If the timer is not running then the return +* value is undefined. +*/ +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; + +/* + * Functions beyond this part are not part of the public API and are intended + * for use by the kernel only. + */ +BaseType_t xTimerCreateTimerTask( void ) PRIVILEGED_FUNCTION; +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION; + +#if( configUSE_TRACE_FACILITY == 1 ) + void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) PRIVILEGED_FUNCTION; + UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) PRIVILEGED_FUNCTION; +#endif + +#ifdef __cplusplus +} +#endif +#endif /* TIMERS_H */ + + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/list.c b/Middlewares/Third_Party/FreeRTOS/Source/list.c new file mode 100644 index 0000000..7618ee8 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/list.c @@ -0,0 +1,198 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#include+#include "FreeRTOS.h" +#include "list.h" + +/*----------------------------------------------------------- + * PUBLIC LIST API documented in list.h + *----------------------------------------------------------*/ + +void vListInitialise( List_t * const pxList ) +{ + /* The list structure contains a list item which is used to mark the + end of the list. To initialise the list the list end is inserted + as the only list entry. */ + pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + /* The list end value is the highest possible value in the list to + ensure it remains at the end of the list. */ + pxList->xListEnd.xItemValue = portMAX_DELAY; + + /* The list end next and previous pointers point to itself so we know + when the list is empty. */ + pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ + + pxList->uxNumberOfItems = ( UBaseType_t ) 0U; + + /* Write known values into the list if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); + listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); +} +/*-----------------------------------------------------------*/ + +void vListInitialiseItem( ListItem_t * const pxItem ) +{ + /* Make sure the list item is not recorded as being on a list. */ + pxItem->pxContainer = NULL; + + /* Write known values into the list item if + configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ + listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); + listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); +} +/*-----------------------------------------------------------*/ + +void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t * const pxIndex = pxList->pxIndex; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert a new list item into pxList, but rather than sort the list, + makes the new list item the last item to be removed by a call to + listGET_OWNER_OF_NEXT_ENTRY(). */ + pxNewListItem->pxNext = pxIndex; + pxNewListItem->pxPrevious = pxIndex->pxPrevious; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + pxIndex->pxPrevious->pxNext = pxNewListItem; + pxIndex->pxPrevious = pxNewListItem; + + /* Remember which list the item is in. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) +{ +ListItem_t *pxIterator; +const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; + + /* Only effective when configASSERT() is also defined, these tests may catch + the list data structures being overwritten in memory. They will not catch + data errors caused by incorrect configuration or use of FreeRTOS. */ + listTEST_LIST_INTEGRITY( pxList ); + listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); + + /* Insert the new list item into the list, sorted in xItemValue order. + + If the list already contains a list item with the same item value then the + new list item should be placed after it. This ensures that TCBs which are + stored in ready lists (all of which have the same xItemValue value) get a + share of the CPU. However, if the xItemValue is the same as the back marker + the iteration loop below will not end. Therefore the value is checked + first, and the algorithm slightly modified if necessary. */ + if( xValueOfInsertion == portMAX_DELAY ) + { + pxIterator = pxList->xListEnd.pxPrevious; + } + else + { + /* *** NOTE *********************************************************** + If you find your application is crashing here then likely causes are + listed below. In addition see https://www.freertos.org/FAQHelp.html for + more tips, and ensure configASSERT() is defined! + https://www.freertos.org/a00110.html#configASSERT + + 1) Stack overflow - + see https://www.freertos.org/Stacks-and-stack-overflow-checking.html + 2) Incorrect interrupt priority assignment, especially on Cortex-M + parts where numerically high priority values denote low actual + interrupt priorities, which can seem counter intuitive. See + https://www.freertos.org/RTOS-Cortex-M3-M4.html and the definition + of configMAX_SYSCALL_INTERRUPT_PRIORITY on + https://www.freertos.org/a00110.html + 3) Calling an API function from within a critical section or when + the scheduler is suspended, or calling an API function that does + not end in "FromISR" from an interrupt. + 4) Using a queue or semaphore before it has been initialised or + before the scheduler has been started (are interrupts firing + before vTaskStartScheduler() has been called?). + **********************************************************************/ + + for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ + { + /* There is nothing to do here, just iterating to the wanted + insertion position. */ + } + } + + pxNewListItem->pxNext = pxIterator->pxNext; + pxNewListItem->pxNext->pxPrevious = pxNewListItem; + pxNewListItem->pxPrevious = pxIterator; + pxIterator->pxNext = pxNewListItem; + + /* Remember which list the item is in. This allows fast removal of the + item later. */ + pxNewListItem->pxContainer = pxList; + + ( pxList->uxNumberOfItems )++; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) +{ +/* The list item knows which list it is in. Obtain the list from the list +item. */ +List_t * const pxList = pxItemToRemove->pxContainer; + + pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; + pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; + + /* Only used during decision coverage testing. */ + mtCOVERAGE_TEST_DELAY(); + + /* Make sure the index is left pointing to a valid item. */ + if( pxList->pxIndex == pxItemToRemove ) + { + pxList->pxIndex = pxItemToRemove->pxPrevious; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxItemToRemove->pxContainer = NULL; + ( pxList->uxNumberOfItems )--; + + return pxList->uxNumberOfItems; +} +/*-----------------------------------------------------------*/ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c b/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c new file mode 100644 index 0000000..89a912c --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c @@ -0,0 +1,775 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/*----------------------------------------------------------- + * Implementation of functions defined in portable.h for the ARM CM4F port. + *----------------------------------------------------------*/ + +/* Scheduler includes. */ +#include "FreeRTOS.h" +#include "task.h" + +#ifndef __VFP_FP__ + #error This port can only be used when the project options are configured to enable hardware floating point support. +#endif + +#ifndef configSYSTICK_CLOCK_HZ + #define configSYSTICK_CLOCK_HZ configCPU_CLOCK_HZ + /* Ensure the SysTick is clocked at the same frequency as the core. */ + #define portNVIC_SYSTICK_CLK_BIT ( 1UL << 2UL ) +#else + /* The way the SysTick is clocked is not modified in case it is not the same + as the core. */ + #define portNVIC_SYSTICK_CLK_BIT ( 0 ) +#endif + +/* Constants required to manipulate the core. Registers first... */ +#define portNVIC_SYSTICK_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000e010 ) ) +#define portNVIC_SYSTICK_LOAD_REG ( * ( ( volatile uint32_t * ) 0xe000e014 ) ) +#define portNVIC_SYSTICK_CURRENT_VALUE_REG ( * ( ( volatile uint32_t * ) 0xe000e018 ) ) +#define portNVIC_SYSPRI2_REG ( * ( ( volatile uint32_t * ) 0xe000ed20 ) ) +/* ...then bits in the registers. */ +#define portNVIC_SYSTICK_INT_BIT ( 1UL << 1UL ) +#define portNVIC_SYSTICK_ENABLE_BIT ( 1UL << 0UL ) +#define portNVIC_SYSTICK_COUNT_FLAG_BIT ( 1UL << 16UL ) +#define portNVIC_PENDSVCLEAR_BIT ( 1UL << 27UL ) +#define portNVIC_PEND_SYSTICK_CLEAR_BIT ( 1UL << 25UL ) + +/* Constants used to detect a Cortex-M7 r0p1 core, which should use the ARM_CM7 +r0p1 port. */ +#define portCPUID ( * ( ( volatile uint32_t * ) 0xE000ed00 ) ) +#define portCORTEX_M7_r0p1_ID ( 0x410FC271UL ) +#define portCORTEX_M7_r0p0_ID ( 0x410FC270UL ) + +#define portNVIC_PENDSV_PRI ( ( ( uint32_t ) configKERNEL_INTERRUPT_PRIORITY ) << 16UL ) +#define portNVIC_SYSTICK_PRI ( ( ( uint32_t ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL ) + +/* Constants required to check the validity of an interrupt priority. */ +#define portFIRST_USER_INTERRUPT_NUMBER ( 16 ) +#define portNVIC_IP_REGISTERS_OFFSET_16 ( 0xE000E3F0 ) +#define portAIRCR_REG ( * ( ( volatile uint32_t * ) 0xE000ED0C ) ) +#define portMAX_8_BIT_VALUE ( ( uint8_t ) 0xff ) +#define portTOP_BIT_OF_BYTE ( ( uint8_t ) 0x80 ) +#define portMAX_PRIGROUP_BITS ( ( uint8_t ) 7 ) +#define portPRIORITY_GROUP_MASK ( 0x07UL << 8UL ) +#define portPRIGROUP_SHIFT ( 8UL ) + +/* Masks off all bits but the VECTACTIVE bits in the ICSR register. */ +#define portVECTACTIVE_MASK ( 0xFFUL ) + +/* Constants required to manipulate the VFP. */ +#define portFPCCR ( ( volatile uint32_t * ) 0xe000ef34 ) /* Floating point context control register. */ +#define portASPEN_AND_LSPEN_BITS ( 0x3UL << 30UL ) + +/* Constants required to set up the initial stack. */ +#define portINITIAL_XPSR ( 0x01000000 ) +#define portINITIAL_EXC_RETURN ( 0xfffffffd ) + +/* The systick is a 24-bit counter. */ +#define portMAX_24_BIT_NUMBER ( 0xffffffUL ) + +/* For strict compliance with the Cortex-M spec the task start address should +have bit-0 clear, as it is loaded into the PC on exit from an ISR. */ +#define portSTART_ADDRESS_MASK ( ( StackType_t ) 0xfffffffeUL ) + +/* A fiddle factor to estimate the number of SysTick counts that would have +occurred while the SysTick counter is stopped during tickless idle +calculations. */ +#define portMISSED_COUNTS_FACTOR ( 45UL ) + +/* Let the user override the pre-loading of the initial LR with the address of +prvTaskExitError() in case it messes up unwinding of the stack in the +debugger. */ +#ifdef configTASK_RETURN_ADDRESS + #define portTASK_RETURN_ADDRESS configTASK_RETURN_ADDRESS +#else + #define portTASK_RETURN_ADDRESS prvTaskExitError +#endif + +/* + * Setup the timer to generate the tick interrupts. The implementation in this + * file is weak to allow application writers to change the timer used to + * generate the tick interrupt. + */ +void vPortSetupTimerInterrupt( void ); + +/* + * Exception handlers. + */ +void xPortPendSVHandler( void ) __attribute__ (( naked )); +void xPortSysTickHandler( void ); +void vPortSVCHandler( void ) __attribute__ (( naked )); + +/* + * Start first task is a separate function so it can be tested in isolation. + */ +static void prvPortStartFirstTask( void ) __attribute__ (( naked )); + +/* + * Function to enable the VFP. + */ +static void vPortEnableVFP( void ) __attribute__ (( naked )); + +/* + * Used to catch tasks that attempt to return from their implementing function. + */ +static void prvTaskExitError( void ); + +/*-----------------------------------------------------------*/ + +/* Each task maintains its own interrupt status in the critical nesting +variable. */ +static UBaseType_t uxCriticalNesting = 0xaaaaaaaa; + +/* + * The number of SysTick increments that make up one tick period. + */ +#if( configUSE_TICKLESS_IDLE == 1 ) + static uint32_t ulTimerCountsForOneTick = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/* + * The maximum number of tick periods that can be suppressed is limited by the + * 24 bit resolution of the SysTick timer. + */ +#if( configUSE_TICKLESS_IDLE == 1 ) + static uint32_t xMaximumPossibleSuppressedTicks = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/* + * Compensate for the CPU cycles that pass while the SysTick is stopped (low + * power functionality only. + */ +#if( configUSE_TICKLESS_IDLE == 1 ) + static uint32_t ulStoppedTimerCompensation = 0; +#endif /* configUSE_TICKLESS_IDLE */ + +/* + * Used by the portASSERT_IF_INTERRUPT_PRIORITY_INVALID() macro to ensure + * FreeRTOS API functions are not called from interrupts that have been assigned + * a priority above configMAX_SYSCALL_INTERRUPT_PRIORITY. + */ +#if( configASSERT_DEFINED == 1 ) + static uint8_t ucMaxSysCallPriority = 0; + static uint32_t ulMaxPRIGROUPValue = 0; + static const volatile uint8_t * const pcInterruptPriorityRegisters = ( const volatile uint8_t * const ) portNVIC_IP_REGISTERS_OFFSET_16; +#endif /* configASSERT_DEFINED */ + +/*-----------------------------------------------------------*/ + +/* + * See header file for description. + */ +StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) +{ + /* Simulate the stack frame as it would be created by a context switch + interrupt. */ + + /* Offset added to account for the way the MCU uses the stack on entry/exit + of interrupts, and to ensure alignment. */ + pxTopOfStack--; + + *pxTopOfStack = portINITIAL_XPSR; /* xPSR */ + pxTopOfStack--; + *pxTopOfStack = ( ( StackType_t ) pxCode ) & portSTART_ADDRESS_MASK; /* PC */ + pxTopOfStack--; + *pxTopOfStack = ( StackType_t ) portTASK_RETURN_ADDRESS; /* LR */ + + /* Save code space by skipping register initialisation. */ + pxTopOfStack -= 5; /* R12, R3, R2 and R1. */ + *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */ + + /* A save method is being used that requires each task to maintain its + own exec return value. */ + pxTopOfStack--; + *pxTopOfStack = portINITIAL_EXC_RETURN; + + pxTopOfStack -= 8; /* R11, R10, R9, R8, R7, R6, R5 and R4. */ + + return pxTopOfStack; +} +/*-----------------------------------------------------------*/ + +static void prvTaskExitError( void ) +{ +volatile uint32_t ulDummy = 0; + + /* A function that implements a task must not exit or attempt to return to + its caller as there is nothing to return to. If a task wants to exit it + should instead call vTaskDelete( NULL ). + + Artificially force an assert() to be triggered if configASSERT() is + defined, then stop here so application writers can catch the error. */ + configASSERT( uxCriticalNesting == ~0UL ); + portDISABLE_INTERRUPTS(); + while( ulDummy == 0 ) + { + /* This file calls prvTaskExitError() after the scheduler has been + started to remove a compiler warning about the function being defined + but never called. ulDummy is used purely to quieten other warnings + about code appearing after this function is called - making ulDummy + volatile makes the compiler think the function could return and + therefore not output an 'unreachable code' warning for code that appears + after it. */ + } +} +/*-----------------------------------------------------------*/ + +void vPortSVCHandler( void ) +{ + __asm volatile ( + " ldr r3, pxCurrentTCBConst2 \n" /* Restore the context. */ + " ldr r1, [r3] \n" /* Use pxCurrentTCBConst to get the pxCurrentTCB address. */ + " ldr r0, [r1] \n" /* The first item in pxCurrentTCB is the task top of stack. */ + " ldmia r0!, {r4-r11, r14} \n" /* Pop the registers that are not automatically saved on exception entry and the critical nesting count. */ + " msr psp, r0 \n" /* Restore the task stack pointer. */ + " isb \n" + " mov r0, #0 \n" + " msr basepri, r0 \n" + " bx r14 \n" + " \n" + " .align 4 \n" + "pxCurrentTCBConst2: .word pxCurrentTCB \n" + ); +} +/*-----------------------------------------------------------*/ + +static void prvPortStartFirstTask( void ) +{ + /* Start the first task. This also clears the bit that indicates the FPU is + in use in case the FPU was used before the scheduler was started - which + would otherwise result in the unnecessary leaving of space in the SVC stack + for lazy saving of FPU registers. */ + __asm volatile( + " ldr r0, =0xE000ED08 \n" /* Use the NVIC offset register to locate the stack. */ + " ldr r0, [r0] \n" + " ldr r0, [r0] \n" + " msr msp, r0 \n" /* Set the msp back to the start of the stack. */ + " mov r0, #0 \n" /* Clear the bit that indicates the FPU is in use, see comment above. */ + " msr control, r0 \n" + " cpsie i \n" /* Globally enable interrupts. */ + " cpsie f \n" + " dsb \n" + " isb \n" + " svc 0 \n" /* System call to start first task. */ + " nop \n" + ); +} +/*-----------------------------------------------------------*/ + +/* + * See header file for description. + */ +BaseType_t xPortStartScheduler( void ) +{ + /* configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to 0. + See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */ + configASSERT( configMAX_SYSCALL_INTERRUPT_PRIORITY ); + + /* This port can be used on all revisions of the Cortex-M7 core other than + the r0p1 parts. r0p1 parts should use the port from the + /source/portable/GCC/ARM_CM7/r0p1 directory. */ + configASSERT( portCPUID != portCORTEX_M7_r0p1_ID ); + configASSERT( portCPUID != portCORTEX_M7_r0p0_ID ); + + #if( configASSERT_DEFINED == 1 ) + { + volatile uint32_t ulOriginalPriority; + volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER ); + volatile uint8_t ucMaxPriorityValue; + + /* Determine the maximum priority from which ISR safe FreeRTOS API + functions can be called. ISR safe functions are those that end in + "FromISR". FreeRTOS maintains separate thread and ISR API functions to + ensure interrupt entry is as fast and simple as possible. + + Save the interrupt priority value that is about to be clobbered. */ + ulOriginalPriority = *pucFirstUserPriorityRegister; + + /* Determine the number of priority bits available. First write to all + possible bits. */ + *pucFirstUserPriorityRegister = portMAX_8_BIT_VALUE; + + /* Read the value back to see how many bits stuck. */ + ucMaxPriorityValue = *pucFirstUserPriorityRegister; + + /* Use the same mask on the maximum system call priority. */ + ucMaxSysCallPriority = configMAX_SYSCALL_INTERRUPT_PRIORITY & ucMaxPriorityValue; + + /* Calculate the maximum acceptable priority group value for the number + of bits read back. */ + ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS; + while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE ) + { + ulMaxPRIGROUPValue--; + ucMaxPriorityValue <<= ( uint8_t ) 0x01; + } + + #ifdef __NVIC_PRIO_BITS + { + /* Check the CMSIS configuration that defines the number of + priority bits matches the number of priority bits actually queried + from the hardware. */ + configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == __NVIC_PRIO_BITS ); + } + #endif + + #ifdef configPRIO_BITS + { + /* Check the FreeRTOS configuration that defines the number of + priority bits matches the number of priority bits actually queried + from the hardware. */ + configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == configPRIO_BITS ); + } + #endif + + /* Shift the priority group value back to its position within the AIRCR + register. */ + ulMaxPRIGROUPValue <<= portPRIGROUP_SHIFT; + ulMaxPRIGROUPValue &= portPRIORITY_GROUP_MASK; + + /* Restore the clobbered interrupt priority register to its original + value. */ + *pucFirstUserPriorityRegister = ulOriginalPriority; + } + #endif /* conifgASSERT_DEFINED */ + + /* Make PendSV and SysTick the lowest priority interrupts. */ + portNVIC_SYSPRI2_REG |= portNVIC_PENDSV_PRI; + portNVIC_SYSPRI2_REG |= portNVIC_SYSTICK_PRI; + + /* Start the timer that generates the tick ISR. Interrupts are disabled + here already. */ + vPortSetupTimerInterrupt(); + + /* Initialise the critical nesting count ready for the first task. */ + uxCriticalNesting = 0; + + /* Ensure the VFP is enabled - it should be anyway. */ + vPortEnableVFP(); + + /* Lazy save always. */ + *( portFPCCR ) |= portASPEN_AND_LSPEN_BITS; + + /* Start the first task. */ + prvPortStartFirstTask(); + + /* Should never get here as the tasks will now be executing! Call the task + exit error function to prevent compiler warnings about a static function + not being called in the case that the application writer overrides this + functionality by defining configTASK_RETURN_ADDRESS. Call + vTaskSwitchContext() so link time optimisation does not remove the + symbol. */ + vTaskSwitchContext(); + prvTaskExitError(); + + /* Should not get here! */ + return 0; +} +/*-----------------------------------------------------------*/ + +void vPortEndScheduler( void ) +{ + /* Not implemented in ports where there is nothing to return to. + Artificially force an assert. */ + configASSERT( uxCriticalNesting == 1000UL ); +} +/*-----------------------------------------------------------*/ + +void vPortEnterCritical( void ) +{ + portDISABLE_INTERRUPTS(); + uxCriticalNesting++; + + /* This is not the interrupt safe version of the enter critical function so + assert() if it is being called from an interrupt context. Only API + functions that end in "FromISR" can be used in an interrupt. Only assert if + the critical nesting count is 1 to protect against recursive calls if the + assert function also uses a critical section. */ + if( uxCriticalNesting == 1 ) + { + configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 ); + } +} +/*-----------------------------------------------------------*/ + +void vPortExitCritical( void ) +{ + configASSERT( uxCriticalNesting ); + uxCriticalNesting--; + if( uxCriticalNesting == 0 ) + { + portENABLE_INTERRUPTS(); + } +} +/*-----------------------------------------------------------*/ + +void xPortPendSVHandler( void ) +{ + /* This is a naked function. */ + + __asm volatile + ( + " mrs r0, psp \n" + " isb \n" + " \n" + " ldr r3, pxCurrentTCBConst \n" /* Get the location of the current TCB. */ + " ldr r2, [r3] \n" + " \n" + " tst r14, #0x10 \n" /* Is the task using the FPU context? If so, push high vfp registers. */ + " it eq \n" + " vstmdbeq r0!, {s16-s31} \n" + " \n" + " stmdb r0!, {r4-r11, r14} \n" /* Save the core registers. */ + " str r0, [r2] \n" /* Save the new top of stack into the first member of the TCB. */ + " \n" + " stmdb sp!, {r0, r3} \n" + " mov r0, %0 \n" + " msr basepri, r0 \n" + " dsb \n" + " isb \n" + " bl vTaskSwitchContext \n" + " mov r0, #0 \n" + " msr basepri, r0 \n" + " ldmia sp!, {r0, r3} \n" + " \n" + " ldr r1, [r3] \n" /* The first item in pxCurrentTCB is the task top of stack. */ + " ldr r0, [r1] \n" + " \n" + " ldmia r0!, {r4-r11, r14} \n" /* Pop the core registers. */ + " \n" + " tst r14, #0x10 \n" /* Is the task using the FPU context? If so, pop the high vfp registers too. */ + " it eq \n" + " vldmiaeq r0!, {s16-s31} \n" + " \n" + " msr psp, r0 \n" + " isb \n" + " \n" + #ifdef WORKAROUND_PMU_CM001 /* XMC4000 specific errata workaround. */ + #if WORKAROUND_PMU_CM001 == 1 + " push { r14 } \n" + " pop { pc } \n" + #endif + #endif + " \n" + " bx r14 \n" + " \n" + " .align 4 \n" + "pxCurrentTCBConst: .word pxCurrentTCB \n" + ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY) + ); +} +/*-----------------------------------------------------------*/ + +void xPortSysTickHandler( void ) +{ + /* The SysTick runs at the lowest interrupt priority, so when this interrupt + executes all interrupts must be unmasked. There is therefore no need to + save and then restore the interrupt mask value as its value is already + known. */ + portDISABLE_INTERRUPTS(); + { + /* Increment the RTOS tick. */ + if( xTaskIncrementTick() != pdFALSE ) + { + /* A context switch is required. Context switching is performed in + the PendSV interrupt. Pend the PendSV interrupt. */ + portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; + } + } + portENABLE_INTERRUPTS(); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TICKLESS_IDLE == 1 ) + + __attribute__((weak)) void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime ) + { + uint32_t ulReloadValue, ulCompleteTickPeriods, ulCompletedSysTickDecrements; + TickType_t xModifiableIdleTime; + + /* Make sure the SysTick reload value does not overflow the counter. */ + if( xExpectedIdleTime > xMaximumPossibleSuppressedTicks ) + { + xExpectedIdleTime = xMaximumPossibleSuppressedTicks; + } + + /* Stop the SysTick momentarily. The time the SysTick is stopped for + is accounted for as best it can be, but using the tickless mode will + inevitably result in some tiny drift of the time maintained by the + kernel with respect to calendar time. */ + portNVIC_SYSTICK_CTRL_REG &= ~portNVIC_SYSTICK_ENABLE_BIT; + + /* Calculate the reload value required to wait xExpectedIdleTime + tick periods. -1 is used because this code will execute part way + through one of the tick periods. */ + ulReloadValue = portNVIC_SYSTICK_CURRENT_VALUE_REG + ( ulTimerCountsForOneTick * ( xExpectedIdleTime - 1UL ) ); + if( ulReloadValue > ulStoppedTimerCompensation ) + { + ulReloadValue -= ulStoppedTimerCompensation; + } + + /* Enter a critical section but don't use the taskENTER_CRITICAL() + method as that will mask interrupts that should exit sleep mode. */ + __asm volatile( "cpsid i" ::: "memory" ); + __asm volatile( "dsb" ); + __asm volatile( "isb" ); + + /* If a context switch is pending or a task is waiting for the scheduler + to be unsuspended then abandon the low power entry. */ + if( eTaskConfirmSleepModeStatus() == eAbortSleep ) + { + /* Restart from whatever is left in the count register to complete + this tick period. */ + portNVIC_SYSTICK_LOAD_REG = portNVIC_SYSTICK_CURRENT_VALUE_REG; + + /* Restart SysTick. */ + portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT; + + /* Reset the reload register to the value required for normal tick + periods. */ + portNVIC_SYSTICK_LOAD_REG = ulTimerCountsForOneTick - 1UL; + + /* Re-enable interrupts - see comments above the cpsid instruction() + above. */ + __asm volatile( "cpsie i" ::: "memory" ); + } + else + { + /* Set the new reload value. */ + portNVIC_SYSTICK_LOAD_REG = ulReloadValue; + + /* Clear the SysTick count flag and set the count value back to + zero. */ + portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL; + + /* Restart SysTick. */ + portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT; + + /* Sleep until something happens. configPRE_SLEEP_PROCESSING() can + set its parameter to 0 to indicate that its implementation contains + its own wait for interrupt or wait for event instruction, and so wfi + should not be executed again. However, the original expected idle + time variable must remain unmodified, so a copy is taken. */ + xModifiableIdleTime = xExpectedIdleTime; + configPRE_SLEEP_PROCESSING( xModifiableIdleTime ); + if( xModifiableIdleTime > 0 ) + { + __asm volatile( "dsb" ::: "memory" ); + __asm volatile( "wfi" ); + __asm volatile( "isb" ); + } + configPOST_SLEEP_PROCESSING( xExpectedIdleTime ); + + /* Re-enable interrupts to allow the interrupt that brought the MCU + out of sleep mode to execute immediately. see comments above + __disable_interrupt() call above. */ + __asm volatile( "cpsie i" ::: "memory" ); + __asm volatile( "dsb" ); + __asm volatile( "isb" ); + + /* Disable interrupts again because the clock is about to be stopped + and interrupts that execute while the clock is stopped will increase + any slippage between the time maintained by the RTOS and calendar + time. */ + __asm volatile( "cpsid i" ::: "memory" ); + __asm volatile( "dsb" ); + __asm volatile( "isb" ); + + /* Disable the SysTick clock without reading the + portNVIC_SYSTICK_CTRL_REG register to ensure the + portNVIC_SYSTICK_COUNT_FLAG_BIT is not cleared if it is set. Again, + the time the SysTick is stopped for is accounted for as best it can + be, but using the tickless mode will inevitably result in some tiny + drift of the time maintained by the kernel with respect to calendar + time*/ + portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT ); + + /* Determine if the SysTick clock has already counted to zero and + been set back to the current reload value (the reload back being + correct for the entire expected idle time) or if the SysTick is yet + to count to zero (in which case an interrupt other than the SysTick + must have brought the system out of sleep mode). */ + if( ( portNVIC_SYSTICK_CTRL_REG & portNVIC_SYSTICK_COUNT_FLAG_BIT ) != 0 ) + { + uint32_t ulCalculatedLoadValue; + + /* The tick interrupt is already pending, and the SysTick count + reloaded with ulReloadValue. Reset the + portNVIC_SYSTICK_LOAD_REG with whatever remains of this tick + period. */ + ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL ) - ( ulReloadValue - portNVIC_SYSTICK_CURRENT_VALUE_REG ); + + /* Don't allow a tiny value, or values that have somehow + underflowed because the post sleep hook did something + that took too long. */ + if( ( ulCalculatedLoadValue < ulStoppedTimerCompensation ) || ( ulCalculatedLoadValue > ulTimerCountsForOneTick ) ) + { + ulCalculatedLoadValue = ( ulTimerCountsForOneTick - 1UL ); + } + + portNVIC_SYSTICK_LOAD_REG = ulCalculatedLoadValue; + + /* As the pending tick will be processed as soon as this + function exits, the tick value maintained by the tick is stepped + forward by one less than the time spent waiting. */ + ulCompleteTickPeriods = xExpectedIdleTime - 1UL; + } + else + { + /* Something other than the tick interrupt ended the sleep. + Work out how long the sleep lasted rounded to complete tick + periods (not the ulReload value which accounted for part + ticks). */ + ulCompletedSysTickDecrements = ( xExpectedIdleTime * ulTimerCountsForOneTick ) - portNVIC_SYSTICK_CURRENT_VALUE_REG; + + /* How many complete tick periods passed while the processor + was waiting? */ + ulCompleteTickPeriods = ulCompletedSysTickDecrements / ulTimerCountsForOneTick; + + /* The reload value is set to whatever fraction of a single tick + period remains. */ + portNVIC_SYSTICK_LOAD_REG = ( ( ulCompleteTickPeriods + 1UL ) * ulTimerCountsForOneTick ) - ulCompletedSysTickDecrements; + } + + /* Restart SysTick so it runs from portNVIC_SYSTICK_LOAD_REG + again, then set portNVIC_SYSTICK_LOAD_REG back to its standard + value. */ + portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL; + portNVIC_SYSTICK_CTRL_REG |= portNVIC_SYSTICK_ENABLE_BIT; + vTaskStepTick( ulCompleteTickPeriods ); + portNVIC_SYSTICK_LOAD_REG = ulTimerCountsForOneTick - 1UL; + + /* Exit with interrupts enabled. */ + __asm volatile( "cpsie i" ::: "memory" ); + } + } + +#endif /* #if configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +/* + * Setup the systick timer to generate the tick interrupts at the required + * frequency. + */ +__attribute__(( weak )) void vPortSetupTimerInterrupt( void ) +{ + /* Calculate the constants required to configure the tick interrupt. */ + #if( configUSE_TICKLESS_IDLE == 1 ) + { + ulTimerCountsForOneTick = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ); + xMaximumPossibleSuppressedTicks = portMAX_24_BIT_NUMBER / ulTimerCountsForOneTick; + ulStoppedTimerCompensation = portMISSED_COUNTS_FACTOR / ( configCPU_CLOCK_HZ / configSYSTICK_CLOCK_HZ ); + } + #endif /* configUSE_TICKLESS_IDLE */ + + /* Stop and clear the SysTick. */ + portNVIC_SYSTICK_CTRL_REG = 0UL; + portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL; + + /* Configure SysTick to interrupt at the requested rate. */ + portNVIC_SYSTICK_LOAD_REG = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL; + portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT ); +} +/*-----------------------------------------------------------*/ + +/* This is a naked function. */ +static void vPortEnableVFP( void ) +{ + __asm volatile + ( + " ldr.w r0, =0xE000ED88 \n" /* The FPU enable bits are in the CPACR. */ + " ldr r1, [r0] \n" + " \n" + " orr r1, r1, #( 0xf << 20 ) \n" /* Enable CP10 and CP11 coprocessors, then save back. */ + " str r1, [r0] \n" + " bx r14 " + ); +} +/*-----------------------------------------------------------*/ + +#if( configASSERT_DEFINED == 1 ) + + void vPortValidateInterruptPriority( void ) + { + uint32_t ulCurrentInterrupt; + uint8_t ucCurrentPriority; + + /* Obtain the number of the currently executing interrupt. */ + __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) :: "memory" ); + + /* Is the interrupt number a user defined interrupt? */ + if( ulCurrentInterrupt >= portFIRST_USER_INTERRUPT_NUMBER ) + { + /* Look up the interrupt's priority. */ + ucCurrentPriority = pcInterruptPriorityRegisters[ ulCurrentInterrupt ]; + + /* The following assertion will fail if a service routine (ISR) for + an interrupt that has been assigned a priority above + configMAX_SYSCALL_INTERRUPT_PRIORITY calls an ISR safe FreeRTOS API + function. ISR safe FreeRTOS API functions must *only* be called + from interrupts that have been assigned a priority at or below + configMAX_SYSCALL_INTERRUPT_PRIORITY. + + Numerically low interrupt priority numbers represent logically high + interrupt priorities, therefore the priority of the interrupt must + be set to a value equal to or numerically *higher* than + configMAX_SYSCALL_INTERRUPT_PRIORITY. + + Interrupts that use the FreeRTOS API must not be left at their + default priority of zero as that is the highest possible priority, + which is guaranteed to be above configMAX_SYSCALL_INTERRUPT_PRIORITY, + and therefore also guaranteed to be invalid. + + FreeRTOS maintains separate thread and ISR API functions to ensure + interrupt entry is as fast and simple as possible. + + The following links provide detailed information: + http://www.freertos.org/RTOS-Cortex-M3-M4.html + http://www.freertos.org/FAQHelp.html */ + configASSERT( ucCurrentPriority >= ucMaxSysCallPriority ); + } + + /* Priority grouping: The interrupt controller (NVIC) allows the bits + that define each interrupt's priority to be split between bits that + define the interrupt's pre-emption priority bits and bits that define + the interrupt's sub-priority. For simplicity all bits must be defined + to be pre-emption priority bits. The following assertion will fail if + this is not the case (if some bits represent a sub-priority). + + If the application only uses CMSIS libraries for interrupt + configuration then the correct setting can be achieved on all Cortex-M + devices by calling NVIC_SetPriorityGrouping( 0 ); before starting the + scheduler. Note however that some vendor specific peripheral libraries + assume a non-zero priority group setting, in which cases using a value + of zero will result in unpredictable behaviour. */ + configASSERT( ( portAIRCR_REG & portPRIORITY_GROUP_MASK ) <= ulMaxPRIGROUPValue ); + } + +#endif /* configASSERT_DEFINED */ + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h b/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h new file mode 100644 index 0000000..d0a566a --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h @@ -0,0 +1,243 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + + +#ifndef PORTMACRO_H +#define PORTMACRO_H + +#ifdef __cplusplus +extern "C" { +#endif + +/*----------------------------------------------------------- + * Port specific definitions. + * + * The settings in this file configure FreeRTOS correctly for the + * given hardware and compiler. + * + * These settings should not be altered. + *----------------------------------------------------------- + */ + +/* Type definitions. */ +#define portCHAR char +#define portFLOAT float +#define portDOUBLE double +#define portLONG long +#define portSHORT short +#define portSTACK_TYPE uint32_t +#define portBASE_TYPE long + +typedef portSTACK_TYPE StackType_t; +typedef long BaseType_t; +typedef unsigned long UBaseType_t; + +#if( configUSE_16_BIT_TICKS == 1 ) + typedef uint16_t TickType_t; + #define portMAX_DELAY ( TickType_t ) 0xffff +#else + typedef uint32_t TickType_t; + #define portMAX_DELAY ( TickType_t ) 0xffffffffUL + + /* 32-bit tick type on a 32-bit architecture, so reads of the tick count do + not need to be guarded with a critical section. */ + #define portTICK_TYPE_IS_ATOMIC 1 +#endif +/*-----------------------------------------------------------*/ + +/* Architecture specifics. */ +#define portSTACK_GROWTH ( -1 ) +#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ ) +#define portBYTE_ALIGNMENT 8 +/*-----------------------------------------------------------*/ + +/* Scheduler utilities. */ +#define portYIELD() \ +{ \ + /* Set a PendSV to request a context switch. */ \ + portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; \ + \ + /* Barriers are normally not required but do ensure the code is completely \ + within the specified behaviour for the architecture. */ \ + __asm volatile( "dsb" ::: "memory" ); \ + __asm volatile( "isb" ); \ +} + +#define portNVIC_INT_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000ed04 ) ) +#define portNVIC_PENDSVSET_BIT ( 1UL << 28UL ) +#define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired != pdFALSE ) portYIELD() +#define portYIELD_FROM_ISR( x ) portEND_SWITCHING_ISR( x ) +/*-----------------------------------------------------------*/ + +/* Critical section management. */ +extern void vPortEnterCritical( void ); +extern void vPortExitCritical( void ); +#define portSET_INTERRUPT_MASK_FROM_ISR() ulPortRaiseBASEPRI() +#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) vPortSetBASEPRI(x) +#define portDISABLE_INTERRUPTS() vPortRaiseBASEPRI() +#define portENABLE_INTERRUPTS() vPortSetBASEPRI(0) +#define portENTER_CRITICAL() vPortEnterCritical() +#define portEXIT_CRITICAL() vPortExitCritical() + +/*-----------------------------------------------------------*/ + +/* Task function macros as described on the FreeRTOS.org WEB site. These are +not necessary for to use this port. They are defined so the common demo files +(which build with all the ports) will build. */ +#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters ) +#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters ) +/*-----------------------------------------------------------*/ + +/* Tickless idle/low power functionality. */ +#ifndef portSUPPRESS_TICKS_AND_SLEEP + extern void vPortSuppressTicksAndSleep( TickType_t xExpectedIdleTime ); + #define portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ) vPortSuppressTicksAndSleep( xExpectedIdleTime ) +#endif +/*-----------------------------------------------------------*/ + +/* Architecture specific optimisations. */ +#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION + #define configUSE_PORT_OPTIMISED_TASK_SELECTION 1 +#endif + +#if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1 + + /* Generic helper function. */ + __attribute__( ( always_inline ) ) static inline uint8_t ucPortCountLeadingZeros( uint32_t ulBitmap ) + { + uint8_t ucReturn; + + __asm volatile ( "clz %0, %1" : "=r" ( ucReturn ) : "r" ( ulBitmap ) : "memory" ); + return ucReturn; + } + + /* Check the configuration. */ + #if( configMAX_PRIORITIES > 32 ) + #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32. It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice. + #endif + + /* Store/clear the ready priorities in a bit map. */ + #define portRECORD_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) |= ( 1UL << ( uxPriority ) ) + #define portRESET_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) &= ~( 1UL << ( uxPriority ) ) + + /*-----------------------------------------------------------*/ + + #define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities ) uxTopPriority = ( 31UL - ( uint32_t ) ucPortCountLeadingZeros( ( uxReadyPriorities ) ) ) + +#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + +/*-----------------------------------------------------------*/ + +#ifdef configASSERT + void vPortValidateInterruptPriority( void ); + #define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() vPortValidateInterruptPriority() +#endif + +/* portNOP() is not required by this port. */ +#define portNOP() + +#define portINLINE __inline + +#ifndef portFORCE_INLINE + #define portFORCE_INLINE inline __attribute__(( always_inline)) +#endif + +portFORCE_INLINE static BaseType_t xPortIsInsideInterrupt( void ) +{ +uint32_t ulCurrentInterrupt; +BaseType_t xReturn; + + /* Obtain the number of the currently executing interrupt. */ + __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) :: "memory" ); + + if( ulCurrentInterrupt == 0 ) + { + xReturn = pdFALSE; + } + else + { + xReturn = pdTRUE; + } + + return xReturn; +} + +/*-----------------------------------------------------------*/ + +portFORCE_INLINE static void vPortRaiseBASEPRI( void ) +{ +uint32_t ulNewBASEPRI; + + __asm volatile + ( + " mov %0, %1 \n" \ + " msr basepri, %0 \n" \ + " isb \n" \ + " dsb \n" \ + :"=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" + ); +} + +/*-----------------------------------------------------------*/ + +portFORCE_INLINE static uint32_t ulPortRaiseBASEPRI( void ) +{ +uint32_t ulOriginalBASEPRI, ulNewBASEPRI; + + __asm volatile + ( + " mrs %0, basepri \n" \ + " mov %1, %2 \n" \ + " msr basepri, %1 \n" \ + " isb \n" \ + " dsb \n" \ + :"=r" (ulOriginalBASEPRI), "=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" + ); + + /* This return will not be reached but is necessary to prevent compiler + warnings. */ + return ulOriginalBASEPRI; +} +/*-----------------------------------------------------------*/ + +portFORCE_INLINE static void vPortSetBASEPRI( uint32_t ulNewMaskValue ) +{ + __asm volatile + ( + " msr basepri, %0 " :: "r" ( ulNewMaskValue ) : "memory" + ); +} +/*-----------------------------------------------------------*/ + +#define portMEMORY_BARRIER() __asm volatile( "" ::: "memory" ) + +#ifdef __cplusplus +} +#endif + +#endif /* PORTMACRO_H */ + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c b/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c new file mode 100644 index 0000000..eaf443f --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c @@ -0,0 +1,492 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* + * A sample implementation of pvPortMalloc() and vPortFree() that combines + * (coalescences) adjacent memory blocks as they are freed, and in so doing + * limits memory fragmentation. + * + * See heap_1.c, heap_2.c and heap_3.c for alternative implementations, and the + * memory management pages of http://www.FreeRTOS.org for more information. + */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" + +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 0 ) + #error This file must not be used if configSUPPORT_DYNAMIC_ALLOCATION is 0 +#endif + +/* Block sizes must not get too small. */ +#define heapMINIMUM_BLOCK_SIZE ( ( size_t ) ( xHeapStructSize << 1 ) ) + +/* Assumes 8bit bytes! */ +#define heapBITS_PER_BYTE ( ( size_t ) 8 ) + +/* Allocate the memory for the heap. */ +#if( configAPPLICATION_ALLOCATED_HEAP == 1 ) + /* The application writer has already defined the array used for the RTOS + heap - probably so it can be placed in a special segment or address. */ + extern uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; +#else + static uint8_t ucHeap[ configTOTAL_HEAP_SIZE ]; +#endif /* configAPPLICATION_ALLOCATED_HEAP */ + +/* Define the linked list structure. This is used to link free blocks in order +of their memory address. */ +typedef struct A_BLOCK_LINK +{ + struct A_BLOCK_LINK *pxNextFreeBlock; /*<< The next free block in the list. */ + size_t xBlockSize; /*<< The size of the free block. */ +} BlockLink_t; + +/*-----------------------------------------------------------*/ + +/* + * Inserts a block of memory that is being freed into the correct position in + * the list of free memory blocks. The block being freed will be merged with + * the block in front it and/or the block behind it if the memory blocks are + * adjacent to each other. + */ +static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ); + +/* + * Called automatically to setup the required heap structures the first time + * pvPortMalloc() is called. + */ +static void prvHeapInit( void ); + +/*-----------------------------------------------------------*/ + +/* The size of the structure placed at the beginning of each allocated memory +block must by correctly byte aligned. */ +static const size_t xHeapStructSize = ( sizeof( BlockLink_t ) + ( ( size_t ) ( portBYTE_ALIGNMENT - 1 ) ) ) & ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + +/* Create a couple of list links to mark the start and end of the list. */ +static BlockLink_t xStart, *pxEnd = NULL; + +/* Keeps track of the number of calls to allocate and free memory as well as the +number of free bytes remaining, but says nothing about fragmentation. */ +static size_t xFreeBytesRemaining = 0U; +static size_t xMinimumEverFreeBytesRemaining = 0U; +static size_t xNumberOfSuccessfulAllocations = 0; +static size_t xNumberOfSuccessfulFrees = 0; + +/* Gets set to the top bit of an size_t type. When this bit in the xBlockSize +member of an BlockLink_t structure is set then the block belongs to the +application. When the bit is free the block is still part of the free heap +space. */ +static size_t xBlockAllocatedBit = 0; + +/*-----------------------------------------------------------*/ + +void *pvPortMalloc( size_t xWantedSize ) +{ +BlockLink_t *pxBlock, *pxPreviousBlock, *pxNewBlockLink; +void *pvReturn = NULL; + + vTaskSuspendAll(); + { + /* If this is the first call to malloc then the heap will require + initialisation to setup the list of free blocks. */ + if( pxEnd == NULL ) + { + prvHeapInit(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Check the requested block size is not so large that the top bit is + set. The top bit of the block size member of the BlockLink_t structure + is used to determine who owns the block - the application or the + kernel, so it must be free. */ + if( ( xWantedSize & xBlockAllocatedBit ) == 0 ) + { + /* The wanted size is increased so it can contain a BlockLink_t + structure in addition to the requested amount of bytes. */ + if( xWantedSize > 0 ) + { + xWantedSize += xHeapStructSize; + + /* Ensure that blocks are always aligned to the required number + of bytes. */ + if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 ) + { + /* Byte alignment required. */ + xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ); + configASSERT( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) == 0 ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) ) + { + /* Traverse the list from the start (lowest address) block until + one of adequate size is found. */ + pxPreviousBlock = &xStart; + pxBlock = xStart.pxNextFreeBlock; + while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) + { + pxPreviousBlock = pxBlock; + pxBlock = pxBlock->pxNextFreeBlock; + } + + /* If the end marker was reached then a block of adequate size + was not found. */ + if( pxBlock != pxEnd ) + { + /* Return the memory space pointed to - jumping over the + BlockLink_t structure at its start. */ + pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + xHeapStructSize ); + + /* This block is being returned for use so must be taken out + of the list of free blocks. */ + pxPreviousBlock->pxNextFreeBlock = pxBlock->pxNextFreeBlock; + + /* If the block is larger than required it can be split into + two. */ + if( ( pxBlock->xBlockSize - xWantedSize ) > heapMINIMUM_BLOCK_SIZE ) + { + /* This block is to be split into two. Create a new + block following the number of bytes requested. The void + cast is used to prevent byte alignment warnings from the + compiler. */ + pxNewBlockLink = ( void * ) ( ( ( uint8_t * ) pxBlock ) + xWantedSize ); + configASSERT( ( ( ( size_t ) pxNewBlockLink ) & portBYTE_ALIGNMENT_MASK ) == 0 ); + + /* Calculate the sizes of two blocks split from the + single block. */ + pxNewBlockLink->xBlockSize = pxBlock->xBlockSize - xWantedSize; + pxBlock->xBlockSize = xWantedSize; + + /* Insert the new block into the list of free blocks. */ + prvInsertBlockIntoFreeList( pxNewBlockLink ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xFreeBytesRemaining -= pxBlock->xBlockSize; + + if( xFreeBytesRemaining < xMinimumEverFreeBytesRemaining ) + { + xMinimumEverFreeBytesRemaining = xFreeBytesRemaining; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The block is being returned - it is allocated and owned + by the application and has no "next" block. */ + pxBlock->xBlockSize |= xBlockAllocatedBit; + pxBlock->pxNextFreeBlock = NULL; + xNumberOfSuccessfulAllocations++; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceMALLOC( pvReturn, xWantedSize ); + } + ( void ) xTaskResumeAll(); + + #if( configUSE_MALLOC_FAILED_HOOK == 1 ) + { + if( pvReturn == NULL ) + { + extern void vApplicationMallocFailedHook( void ); + vApplicationMallocFailedHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif + + configASSERT( ( ( ( size_t ) pvReturn ) & ( size_t ) portBYTE_ALIGNMENT_MASK ) == 0 ); + return pvReturn; +} +/*-----------------------------------------------------------*/ + +void vPortFree( void *pv ) +{ +uint8_t *puc = ( uint8_t * ) pv; +BlockLink_t *pxLink; + + if( pv != NULL ) + { + /* The memory being freed will have an BlockLink_t structure immediately + before it. */ + puc -= xHeapStructSize; + + /* This casting is to keep the compiler from issuing warnings. */ + pxLink = ( void * ) puc; + + /* Check the block is actually allocated. */ + configASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); + configASSERT( pxLink->pxNextFreeBlock == NULL ); + + if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) + { + if( pxLink->pxNextFreeBlock == NULL ) + { + /* The block is being returned to the heap - it is no longer + allocated. */ + pxLink->xBlockSize &= ~xBlockAllocatedBit; + + vTaskSuspendAll(); + { + /* Add this block to the list of free blocks. */ + xFreeBytesRemaining += pxLink->xBlockSize; + traceFREE( pv, pxLink->xBlockSize ); + prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); + xNumberOfSuccessfulFrees++; + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } +} +/*-----------------------------------------------------------*/ + +size_t xPortGetFreeHeapSize( void ) +{ + return xFreeBytesRemaining; +} +/*-----------------------------------------------------------*/ + +size_t xPortGetMinimumEverFreeHeapSize( void ) +{ + return xMinimumEverFreeBytesRemaining; +} +/*-----------------------------------------------------------*/ + +void vPortInitialiseBlocks( void ) +{ + /* This just exists to keep the linker quiet. */ +} +/*-----------------------------------------------------------*/ + +static void prvHeapInit( void ) +{ +BlockLink_t *pxFirstFreeBlock; +uint8_t *pucAlignedHeap; +size_t uxAddress; +size_t xTotalHeapSize = configTOTAL_HEAP_SIZE; + + /* Ensure the heap starts on a correctly aligned boundary. */ + uxAddress = ( size_t ) ucHeap; + + if( ( uxAddress & portBYTE_ALIGNMENT_MASK ) != 0 ) + { + uxAddress += ( portBYTE_ALIGNMENT - 1 ); + uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + xTotalHeapSize -= uxAddress - ( size_t ) ucHeap; + } + + pucAlignedHeap = ( uint8_t * ) uxAddress; + + /* xStart is used to hold a pointer to the first item in the list of free + blocks. The void cast is used to prevent compiler warnings. */ + xStart.pxNextFreeBlock = ( void * ) pucAlignedHeap; + xStart.xBlockSize = ( size_t ) 0; + + /* pxEnd is used to mark the end of the list of free blocks and is inserted + at the end of the heap space. */ + uxAddress = ( ( size_t ) pucAlignedHeap ) + xTotalHeapSize; + uxAddress -= xHeapStructSize; + uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); + pxEnd = ( void * ) uxAddress; + pxEnd->xBlockSize = 0; + pxEnd->pxNextFreeBlock = NULL; + + /* To start with there is a single free block that is sized to take up the + entire heap space, minus the space taken by pxEnd. */ + pxFirstFreeBlock = ( void * ) pucAlignedHeap; + pxFirstFreeBlock->xBlockSize = uxAddress - ( size_t ) pxFirstFreeBlock; + pxFirstFreeBlock->pxNextFreeBlock = pxEnd; + + /* Only one block exists - and it covers the entire usable heap space. */ + xMinimumEverFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; + xFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; + + /* Work out the position of the top bit in a size_t variable. */ + xBlockAllocatedBit = ( ( size_t ) 1 ) << ( ( sizeof( size_t ) * heapBITS_PER_BYTE ) - 1 ); +} +/*-----------------------------------------------------------*/ + +static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ) +{ +BlockLink_t *pxIterator; +uint8_t *puc; + + /* Iterate through the list until a block is found that has a higher address + than the block being inserted. */ + for( pxIterator = &xStart; pxIterator->pxNextFreeBlock < pxBlockToInsert; pxIterator = pxIterator->pxNextFreeBlock ) + { + /* Nothing to do here, just iterate to the right position. */ + } + + /* Do the block being inserted, and the block it is being inserted after + make a contiguous block of memory? */ + puc = ( uint8_t * ) pxIterator; + if( ( puc + pxIterator->xBlockSize ) == ( uint8_t * ) pxBlockToInsert ) + { + pxIterator->xBlockSize += pxBlockToInsert->xBlockSize; + pxBlockToInsert = pxIterator; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Do the block being inserted, and the block it is being inserted before + make a contiguous block of memory? */ + puc = ( uint8_t * ) pxBlockToInsert; + if( ( puc + pxBlockToInsert->xBlockSize ) == ( uint8_t * ) pxIterator->pxNextFreeBlock ) + { + if( pxIterator->pxNextFreeBlock != pxEnd ) + { + /* Form one big block from the two blocks. */ + pxBlockToInsert->xBlockSize += pxIterator->pxNextFreeBlock->xBlockSize; + pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock->pxNextFreeBlock; + } + else + { + pxBlockToInsert->pxNextFreeBlock = pxEnd; + } + } + else + { + pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock; + } + + /* If the block being inserted plugged a gab, so was merged with the block + before and the block after, then it's pxNextFreeBlock pointer will have + already been set, and should not be set here as that would make it point + to itself. */ + if( pxIterator != pxBlockToInsert ) + { + pxIterator->pxNextFreeBlock = pxBlockToInsert; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +void vPortGetHeapStats( HeapStats_t *pxHeapStats ) +{ +BlockLink_t *pxBlock; +size_t xBlocks = 0, xMaxSize = 0, xMinSize = portMAX_DELAY; /* portMAX_DELAY used as a portable way of getting the maximum value. */ + + vTaskSuspendAll(); + { + pxBlock = xStart.pxNextFreeBlock; + + /* pxBlock will be NULL if the heap has not been initialised. The heap + is initialised automatically when the first allocation is made. */ + if( pxBlock != NULL ) + { + do + { + /* Increment the number of blocks and record the largest block seen + so far. */ + xBlocks++; + + if( pxBlock->xBlockSize > xMaxSize ) + { + xMaxSize = pxBlock->xBlockSize; + } + + if( pxBlock->xBlockSize < xMinSize ) + { + xMinSize = pxBlock->xBlockSize; + } + + /* Move to the next block in the chain until the last block is + reached. */ + pxBlock = pxBlock->pxNextFreeBlock; + } while( pxBlock != pxEnd ); + } + } + xTaskResumeAll(); + + pxHeapStats->xSizeOfLargestFreeBlockInBytes = xMaxSize; + pxHeapStats->xSizeOfSmallestFreeBlockInBytes = xMinSize; + pxHeapStats->xNumberOfFreeBlocks = xBlocks; + + taskENTER_CRITICAL(); + { + pxHeapStats->xAvailableHeapSpaceInBytes = xFreeBytesRemaining; + pxHeapStats->xNumberOfSuccessfulAllocations = xNumberOfSuccessfulAllocations; + pxHeapStats->xNumberOfSuccessfulFrees = xNumberOfSuccessfulFrees; + pxHeapStats->xMinimumEverFreeBytesRemaining = xMinimumEverFreeBytesRemaining; + } + taskEXIT_CRITICAL(); +} + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/queue.c b/Middlewares/Third_Party/FreeRTOS/Source/queue.c new file mode 100644 index 0000000..b3203b8 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/queue.c @@ -0,0 +1,2945 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" + +#if ( configUSE_CO_ROUTINES == 1 ) + #include "croutine.h" +#endif + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + + +/* Constants used with the cRxLock and cTxLock structure members. */ +#define queueUNLOCKED ( ( int8_t ) -1 ) +#define queueLOCKED_UNMODIFIED ( ( int8_t ) 0 ) + +/* When the Queue_t structure is used to represent a base queue its pcHead and +pcTail members are used as pointers into the queue storage area. When the +Queue_t structure is used to represent a mutex pcHead and pcTail pointers are +not necessary, and the pcHead pointer is set to NULL to indicate that the +structure instead holds a pointer to the mutex holder (if any). Map alternative +names to the pcHead and structure member to ensure the readability of the code +is maintained. The QueuePointers_t and SemaphoreData_t types are used to form +a union as their usage is mutually exclusive dependent on what the queue is +being used for. */ +#define uxQueueType pcHead +#define queueQUEUE_IS_MUTEX NULL + +typedef struct QueuePointers +{ + int8_t *pcTail; /*< Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker. */ + int8_t *pcReadFrom; /*< Points to the last place that a queued item was read from when the structure is used as a queue. */ +} QueuePointers_t; + +typedef struct SemaphoreData +{ + TaskHandle_t xMutexHolder; /*< The handle of the task that holds the mutex. */ + UBaseType_t uxRecursiveCallCount;/*< Maintains a count of the number of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */ +} SemaphoreData_t; + +/* Semaphores do not actually store or copy data, so have an item size of +zero. */ +#define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( UBaseType_t ) 0 ) +#define queueMUTEX_GIVE_BLOCK_TIME ( ( TickType_t ) 0U ) + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define queueYIELD_IF_USING_PREEMPTION() +#else + #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* + * Definition of the queue used by the scheduler. + * Items are queued by copy, not reference. See the following link for the + * rationale: https://www.freertos.org/Embedded-RTOS-Queues.html + */ +typedef struct QueueDefinition /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + int8_t *pcHead; /*< Points to the beginning of the queue storage area. */ + int8_t *pcWriteTo; /*< Points to the free next place in the storage area. */ + + union + { + QueuePointers_t xQueue; /*< Data required exclusively when this structure is used as a queue. */ + SemaphoreData_t xSemaphore; /*< Data required exclusively when this structure is used as a semaphore. */ + } u; + + List_t xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto this queue. Stored in priority order. */ + List_t xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from this queue. Stored in priority order. */ + + volatile UBaseType_t uxMessagesWaiting;/*< The number of items currently in the queue. */ + UBaseType_t uxLength; /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */ + UBaseType_t uxItemSize; /*< The size of each items that the queue will hold. */ + + volatile int8_t cRxLock; /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */ + + #if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the memory used by the queue was statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if ( configUSE_QUEUE_SETS == 1 ) + struct QueueDefinition *pxQueueSetContainer; + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxQueueNumber; + uint8_t ucQueueType; + #endif + +} xQUEUE; + +/* The old xQUEUE name is maintained above then typedefed to the new Queue_t +name below to enable the use of older kernel aware debuggers. */ +typedef xQUEUE Queue_t; + +/*-----------------------------------------------------------*/ + +/* + * The queue registry is just a means for kernel aware debuggers to locate + * queue structures. It has no other purpose so is an optional component. + */ +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + /* The type stored within the queue registry array. This allows a name + to be assigned to each queue making kernel aware debugging a little + more user friendly. */ + typedef struct QUEUE_REGISTRY_ITEM + { + const char *pcQueueName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + QueueHandle_t xHandle; + } xQueueRegistryItem; + + /* The old xQueueRegistryItem name is maintained above then typedefed to the + new xQueueRegistryItem name below to enable the use of older kernel aware + debuggers. */ + typedef xQueueRegistryItem QueueRegistryItem_t; + + /* The queue registry is simply an array of QueueRegistryItem_t structures. + The pcQueueName member of a structure being NULL is indicative of the + array position being vacant. */ + PRIVILEGED_DATA QueueRegistryItem_t xQueueRegistry[ configQUEUE_REGISTRY_SIZE ]; + +#endif /* configQUEUE_REGISTRY_SIZE */ + +/* + * Unlocks a queue locked by a call to prvLockQueue. Locking a queue does not + * prevent an ISR from adding or removing items to the queue, but does prevent + * an ISR from removing tasks from the queue event lists. If an ISR finds a + * queue is locked it will instead increment the appropriate queue lock count + * to indicate that a task may require unblocking. When the queue in unlocked + * these lock counts are inspected, and the appropriate action taken. + */ +static void prvUnlockQueue( Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any data in a queue. + * + * @return pdTRUE if the queue contains no items, otherwise pdFALSE. + */ +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Uses a critical section to determine if there is any space in a queue. + * + * @return pdTRUE if there is no space, otherwise pdFALSE; + */ +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) PRIVILEGED_FUNCTION; + +/* + * Copies an item into the queue, either at the front of the queue or the + * back of the queue. + */ +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) PRIVILEGED_FUNCTION; + +/* + * Copies an item out of a queue. + */ +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION; + +#if ( configUSE_QUEUE_SETS == 1 ) + /* + * Checks to see if a queue is a member of a queue set, and if so, notifies + * the queue set that the queue contains data. + */ + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; +#endif + +/* + * Called after a Queue_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; + +/* + * Mutexes are a special type of queue. When a mutex is created, first the + * queue is created, then prvInitialiseMutex() is called to configure the queue + * as a mutex. + */ +#if( configUSE_MUTEXES == 1 ) + static void prvInitialiseMutex( Queue_t *pxNewQueue ) PRIVILEGED_FUNCTION; +#endif + +#if( configUSE_MUTEXES == 1 ) + /* + * If a task waiting for a mutex causes the mutex holder to inherit a + * priority, but the waiting task times out, then the holder should + * disinherit the priority - but only down to the highest priority of any + * other tasks that are waiting for the same mutex. This function returns + * that priority. + */ + static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) PRIVILEGED_FUNCTION; +#endif +/*-----------------------------------------------------------*/ + +/* + * Macro to mark a queue as locked. Locking a queue prevents an ISR from + * accessing the queue event lists. + */ +#define prvLockQueue( pxQueue ) \ + taskENTER_CRITICAL(); \ + { \ + if( ( pxQueue )->cRxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \ + } \ + if( ( pxQueue )->cTxLock == queueUNLOCKED ) \ + { \ + ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \ + } \ + } \ + taskEXIT_CRITICAL() +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) +{ +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; + pxQueue->pcWriteTo = pxQueue->pcHead; + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + pxQueue->cRxLock = queueUNLOCKED; + pxQueue->cTxLock = queueUNLOCKED; + + if( xNewQueue == pdFALSE ) + { + /* If there are tasks blocked waiting to read from the queue, then + the tasks will remain blocked as after this function exits the queue + will still be empty. If there are tasks blocked waiting to write to + the queue, then one should be unblocked as after this function exits + it will be possible to write to it. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Ensure the event queues start in the correct state. */ + vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); + vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); + } + } + taskEXIT_CRITICAL(); + + /* A value is returned for calling semantic consistency with previous + versions. */ + return pdPASS; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + /* The StaticQueue_t structure and the queue storage area must be + supplied. */ + configASSERT( pxStaticQueue != NULL ); + + /* A queue storage area should be provided if the item size is not 0, and + should not be provided if the item size is 0. */ + configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); + configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticQueue_t or StaticSemaphore_t equals the size of + the real queue and semaphore structures. */ + volatile size_t xSize = sizeof( StaticQueue_t ); + configASSERT( xSize == sizeof( Queue_t ) ); + ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ + } + #endif /* configASSERT_DEFINED */ + + /* The address of a statically allocated queue was passed in, use it. + The address of a statically allocated storage area was also passed in + but is already set. */ + pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + + if( pxNewQueue != NULL ) + { + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Queues can be allocated wither statically or dynamically, so + note this queue was allocated statically in case the queue is + later deleted. */ + pxNewQueue->ucStaticallyAllocated = pdTRUE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + else + { + traceQUEUE_CREATE_FAILED( ucQueueType ); + mtCOVERAGE_TEST_MARKER(); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, const uint8_t ucQueueType ) + { + Queue_t *pxNewQueue; + size_t xQueueSizeInBytes; + uint8_t *pucQueueStorage; + + configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); + + /* Allocate enough space to hold the maximum number of items that + can be in the queue at any time. It is valid for uxItemSize to be + zero in the case the queue is used as a semaphore. */ + xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Allocate the queue and storage area. Justification for MISRA + deviation as follows: pvPortMalloc() always ensures returned memory + blocks are aligned per the requirements of the MCU stack. In this case + pvPortMalloc() must return a pointer that is guaranteed to meet the + alignment requirements of the Queue_t structure - which in this case + is an int8_t *. Therefore, whenever the stack alignment requirements + are greater than or equal to the pointer to char requirements the cast + is safe. In other cases alignment requirements are not strict (one or + two bytes). */ + pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e9079 see comment above. */ + + if( pxNewQueue != NULL ) + { + /* Jump past the queue structure to find the location of the queue + storage area. */ + pucQueueStorage = ( uint8_t * ) pxNewQueue; + pucQueueStorage += sizeof( Queue_t ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* Queues can be created either statically or dynamically, so + note this task was created dynamically in case it is later + deleted. */ + pxNewQueue->ucStaticallyAllocated = pdFALSE; + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); + } + else + { + traceQUEUE_CREATE_FAILED( ucQueueType ); + mtCOVERAGE_TEST_MARKER(); + } + + return pxNewQueue; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) +{ + /* Remove compiler warnings about unused parameters should + configUSE_TRACE_FACILITY not be set to 1. */ + ( void ) ucQueueType; + + if( uxItemSize == ( UBaseType_t ) 0 ) + { + /* No RAM was allocated for the queue storage area, but PC head cannot + be set to NULL because NULL is used as a key to say the queue is used as + a mutex. Therefore just set pcHead to point to the queue as a benign + value that is known to be within the memory map. */ + pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; + } + else + { + /* Set the head to the start of the queue storage area. */ + pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; + } + + /* Initialise the queue members as described where the queue type is + defined. */ + pxNewQueue->uxLength = uxQueueLength; + pxNewQueue->uxItemSize = uxItemSize; + ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + pxNewQueue->ucQueueType = ucQueueType; + } + #endif /* configUSE_TRACE_FACILITY */ + + #if( configUSE_QUEUE_SETS == 1 ) + { + pxNewQueue->pxQueueSetContainer = NULL; + } + #endif /* configUSE_QUEUE_SETS */ + + traceQUEUE_CREATE( pxNewQueue ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_MUTEXES == 1 ) + + static void prvInitialiseMutex( Queue_t *pxNewQueue ) + { + if( pxNewQueue != NULL ) + { + /* The queue create function will set all the queue structure members + correctly for a generic queue, but this function is creating a + mutex. Overwrite those members that need to be set differently - + in particular the information required for priority inheritance. */ + pxNewQueue->u.xSemaphore.xMutexHolder = NULL; + pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX; + + /* In case this is a recursive mutex. */ + pxNewQueue->u.xSemaphore.uxRecursiveCallCount = 0; + + traceCREATE_MUTEX( pxNewQueue ); + + /* Start with the semaphore in the expected state. */ + ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); + } + else + { + traceCREATE_MUTEX_FAILED(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) + { + QueueHandle_t xNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); + prvInitialiseMutex( ( Queue_t * ) xNewQueue ); + + return xNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) + { + QueueHandle_t xNewQueue; + const UBaseType_t uxMutexLength = ( UBaseType_t ) 1, uxMutexSize = ( UBaseType_t ) 0; + + /* Prevent compiler warnings about unused parameters if + configUSE_TRACE_FACILITY does not equal 1. */ + ( void ) ucQueueType; + + xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueType ); + prvInitialiseMutex( ( Queue_t * ) xNewQueue ); + + return xNewQueue; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) + + TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) + { + TaskHandle_t pxReturn; + Queue_t * const pxSemaphore = ( Queue_t * ) xSemaphore; + + /* This function is called by xSemaphoreGetMutexHolder(), and should not + be called directly. Note: This is a good way of determining if the + calling task is the mutex holder, but not a good way of determining the + identity of the mutex holder, as the holder may change between the + following critical section exiting and the function returning. */ + taskENTER_CRITICAL(); + { + if( pxSemaphore->uxQueueType == queueQUEUE_IS_MUTEX ) + { + pxReturn = pxSemaphore->u.xSemaphore.xMutexHolder; + } + else + { + pxReturn = NULL; + } + } + taskEXIT_CRITICAL(); + + return pxReturn; + } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ + +#endif +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) ) + + TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) + { + TaskHandle_t pxReturn; + + configASSERT( xSemaphore ); + + /* Mutexes cannot be used in interrupt service routines, so the mutex + holder should not change in an ISR, and therefore a critical section is + not required here. */ + if( ( ( Queue_t * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX ) + { + pxReturn = ( ( Queue_t * ) xSemaphore )->u.xSemaphore.xMutexHolder; + } + else + { + pxReturn = NULL; + } + + return pxReturn; + } /*lint !e818 xSemaphore cannot be a pointer to const because it is a typedef. */ + +#endif +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* If this is the task that holds the mutex then xMutexHolder will not + change outside of this task. If this task does not hold the mutex then + pxMutexHolder can never coincidentally equal the tasks handle, and as + this is the only condition we are interested in it does not matter if + pxMutexHolder is accessed simultaneously by another task. Therefore no + mutual exclusion is required to test the pxMutexHolder variable. */ + if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) + { + traceGIVE_MUTEX_RECURSIVE( pxMutex ); + + /* uxRecursiveCallCount cannot be zero if xMutexHolder is equal to + the task handle, therefore no underflow check is required. Also, + uxRecursiveCallCount is only modified by the mutex holder, and as + there can only be one, no mutual exclusion is required to modify the + uxRecursiveCallCount member. */ + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )--; + + /* Has the recursive call count unwound to 0? */ + if( pxMutex->u.xSemaphore.uxRecursiveCallCount == ( UBaseType_t ) 0 ) + { + /* Return the mutex. This will automatically unblock any other + task that might be waiting to access the mutex. */ + ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + /* The mutex cannot be given because the calling task is not the + holder. */ + xReturn = pdFAIL; + + traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_RECURSIVE_MUTEXES == 1 ) + + BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxMutex = ( Queue_t * ) xMutex; + + configASSERT( pxMutex ); + + /* Comments regarding mutual exclusion as per those within + xQueueGiveMutexRecursive(). */ + + traceTAKE_MUTEX_RECURSIVE( pxMutex ); + + if( pxMutex->u.xSemaphore.xMutexHolder == xTaskGetCurrentTaskHandle() ) + { + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; + xReturn = pdPASS; + } + else + { + xReturn = xQueueSemaphoreTake( pxMutex, xTicksToWait ); + + /* pdPASS will only be returned if the mutex was successfully + obtained. The calling task may have entered the Blocked state + before reaching here. */ + if( xReturn != pdFAIL ) + { + ( pxMutex->u.xSemaphore.uxRecursiveCallCount )++; + } + else + { + traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex ); + } + } + + return xReturn; + } + +#endif /* configUSE_RECURSIVE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQueue, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount ) + { + QueueHandle_t xHandle; + + configASSERT( uxMaxCount != 0 ); + configASSERT( uxInitialCount <= uxMaxCount ); + + xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE ); + + if( xHandle != NULL ) + { + ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; + + traceCREATE_COUNTING_SEMAPHORE(); + } + else + { + traceCREATE_COUNTING_SEMAPHORE_FAILED(); + } + + return xHandle; + } + +#endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) +{ +BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + /* Is there room on the queue now? The running task must be the + highest priority task wanting to access the queue. If the head item + in the queue is to be overwritten then it does not matter if the + queue is full. */ + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + traceQUEUE_SEND( pxQueue ); + + #if ( configUSE_QUEUE_SETS == 1 ) + { + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; + + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) + { + /* Do not notify the queue set as an existing item + was overwritten in the queue so the number of items + in the queue has not changed. */ + mtCOVERAGE_TEST_MARKER(); + } + else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to + do this from within the critical section - the + kernel takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes + and the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + /* If there was a task waiting for data to arrive on the + queue then unblock it now. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The unblocked task has a priority higher than + our own so yield immediately. Yes it is ok to do + this from within the critical section - the kernel + takes care of that. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else if( xYieldRequired != pdFALSE ) + { + /* This path is a special case that will only get + executed if the task was holding multiple mutexes and + the mutexes were given back in an order that is + different to that in which they were taken. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was full and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + + /* Return to the original privilege level before exiting + the function. */ + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was full and a block time was specified so + configure the timeout structure. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_SEND( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); + + /* Unlocking the queue means queue events can effect the + event list. It is possible that interrupts occurring now + remove this task from the event list again - but as the + scheduler is suspended the task will go onto the pending + ready last instead of the actual ready list. */ + prvUnlockQueue( pxQueue ); + + /* Resuming the scheduler will move tasks from the pending + ready list into the ready list - so it is feasible that this + task is already in a ready list before it yields - in which + case the yield will not cause a context switch unless there + is also a higher priority task in the pending ready list. */ + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + } + else + { + /* Try again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* The timeout has expired. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + traceQUEUE_SEND_FAILED( pxQueue ); + return errQUEUE_FULL; + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + /* Similar to xQueueGenericSend, except without blocking if there is no room + in the queue. Also don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) + { + const int8_t cTxLock = pxQueue->cTxLock; + const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a + semaphore or mutex. That means prvCopyDataToQueue() cannot result + in a task disinheriting a priority and prvCopyDataToQueue() can be + called here even though the disinherit function does not check if + the scheduler is suspended before accessing the ready lists. */ + ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( ( xCopyPosition == queueOVERWRITE ) && ( uxPreviousMessagesWaiting != ( UBaseType_t ) 0 ) ) + { + /* Do not notify the queue set as an existing item + was overwritten in the queue so the number of items + in the queue has not changed. */ + mtCOVERAGE_TEST_MARKER(); + } + else if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting + to the queue set caused a higher priority task to + unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Not used in this path. */ + ( void ) uxPreviousMessagesWaiting; + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + /* Similar to xQueueGenericSendFromISR() but used with semaphores where the + item size is 0. Don't directly wake a task that was blocked on a queue + read, instead return a flag to say whether a context switch is required or + not (i.e. has a task with a higher priority than us been woken by this + post). */ + + configASSERT( pxQueue ); + + /* xQueueGenericSendFromISR() should be used instead of xQueueGiveFromISR() + if the item size is not 0. */ + configASSERT( pxQueue->uxItemSize == 0 ); + + /* Normally a mutex would not be given from an interrupt, especially if + there is a mutex holder, as priority inheritance makes no sense for an + interrupts, only tasks. */ + configASSERT( !( ( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) && ( pxQueue->u.xSemaphore.xMutexHolder != NULL ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* When the queue is used to implement a semaphore no data is ever + moved through the queue but it is still valid to see if the queue 'has + space'. */ + if( uxMessagesWaiting < pxQueue->uxLength ) + { + const int8_t cTxLock = pxQueue->cTxLock; + + traceQUEUE_SEND_FROM_ISR( pxQueue ); + + /* A task can only have an inherited priority if it is a mutex + holder - and if there is a mutex holder then the mutex cannot be + given from an ISR. As this is the ISR version of the function it + can be assumed there is no mutex holder and no need to determine if + priority disinheritance is needed. Simply increase the count of + messages (semaphores) available. */ + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; + + /* The event list is not altered if the queue is locked. This will + be done when the queue is unlocked later. */ + if( cTxLock == queueUNLOCKED ) + { + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The semaphore is a member of a queue set, and + posting to the queue set caused a higher priority + task to unblock. A context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so + record that a context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_QUEUE_SETS */ + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was posted while it was locked. */ + pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); + xReturn = errQUEUE_FULL; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + + /* Check the pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* The buffer into which data is received can only be NULL if the data size + is zero (so no data is copied into the buffer. */ + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Data available, remove one item. */ + prvCopyDataFromQueue( pxQueue, pvBuffer ); + traceQUEUE_RECEIVE( pxQueue ); + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; + + /* There is now space in the queue, were any tasks waiting to + post to the queue? If so, unblock the highest priority waiting + task. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was empty and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was empty and a block time was specified so + configure the timeout structure. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* The timeout has not expired. If the queue is still empty place + the task on the list of tasks waiting to receive from the queue. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The queue contains data again. Loop back to try and read the + data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* Timed out. If there is no data in the queue exit, otherwise loop + back and attempt to read the data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +Queue_t * const pxQueue = xQueue; + +#if( configUSE_MUTEXES == 1 ) + BaseType_t xInheritanceOccurred = pdFALSE; +#endif + + /* Check the queue pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* Check this really is a semaphore, in which case the item size will be + 0. */ + configASSERT( pxQueue->uxItemSize == 0 ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to allow return + statements within the function itself. This is done in the interest + of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + /* Semaphores are queues with an item size of 0, and where the + number of messages in the queue is the semaphore's count value. */ + const UBaseType_t uxSemaphoreCount = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxSemaphoreCount > ( UBaseType_t ) 0 ) + { + traceQUEUE_RECEIVE( pxQueue ); + + /* Semaphores are queues with a data size of zero and where the + messages waiting is the semaphore's count. Reduce the count. */ + pxQueue->uxMessagesWaiting = uxSemaphoreCount - ( UBaseType_t ) 1; + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* Record the information required to implement + priority inheritance should it become necessary. */ + pxQueue->u.xSemaphore.xMutexHolder = pvTaskIncrementMutexHeldCount(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + + /* Check to see if other tasks are blocked waiting to give the + semaphore, and if so, unblock the highest priority such task. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* For inheritance to have occurred there must have been an + initial timeout, and an adjusted timeout cannot become 0, as + if it were 0 the function would have exited. */ + #if( configUSE_MUTEXES == 1 ) + { + configASSERT( xInheritanceOccurred == pdFALSE ); + } + #endif /* configUSE_MUTEXES */ + + /* The semaphore count was 0 and no block time is specified + (or the block time has expired) so exit now. */ + taskEXIT_CRITICAL(); + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The semaphore count was 0 and a block time was specified + so configure the timeout structure ready to block. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can give to and take from the semaphore + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* A block time is specified and not expired. If the semaphore + count is 0 then enter the Blocked state to wait for a semaphore to + become available. As semaphores are implemented with queues the + queue being empty is equivalent to the semaphore count being 0. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); + + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + taskENTER_CRITICAL(); + { + xInheritanceOccurred = xTaskPriorityInherit( pxQueue->u.xSemaphore.xMutexHolder ); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif + + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* There was no timeout and the semaphore count was not 0, so + attempt to take the semaphore again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* Timed out. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + /* If the semaphore count is 0 exit now as the timeout has + expired. Otherwise return to attempt to take the semaphore that is + known to be available. As semaphores are implemented by queues the + queue being empty is equivalent to the semaphore count being 0. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + #if ( configUSE_MUTEXES == 1 ) + { + /* xInheritanceOccurred could only have be set if + pxQueue->uxQueueType == queueQUEUE_IS_MUTEX so no need to + test the mutex type again to check it is actually a mutex. */ + if( xInheritanceOccurred != pdFALSE ) + { + taskENTER_CRITICAL(); + { + UBaseType_t uxHighestWaitingPriority; + + /* This task blocking on the mutex caused another + task to inherit this task's priority. Now this task + has timed out the priority should be disinherited + again, but only as low as the next highest priority + task that is waiting for the same mutex. */ + uxHighestWaitingPriority = prvGetDisinheritPriorityAfterTimeout( pxQueue ); + vTaskPriorityDisinheritAfterTimeout( pxQueue->u.xSemaphore.xMutexHolder, uxHighestWaitingPriority ); + } + taskEXIT_CRITICAL(); + } + } + #endif /* configUSE_MUTEXES */ + + traceQUEUE_RECEIVE_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueuePeek( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) +{ +BaseType_t xEntryTimeSet = pdFALSE; +TimeOut_t xTimeOut; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = xQueue; + + /* Check the pointer is not NULL. */ + configASSERT( ( pxQueue ) ); + + /* The buffer into which data is received can only be NULL if the data size + is zero (so no data is copied into the buffer. */ + configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* Cannot block if the scheduler is suspended. */ + #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + { + configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); + } + #endif + + + /*lint -save -e904 This function relaxes the coding standard somewhat to + allow return statements within the function itself. This is done in the + interest of execution time efficiency. */ + for( ;; ) + { + taskENTER_CRITICAL(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Is there data in the queue now? To be running the calling task + must be the highest priority task wanting to access the queue. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Remember the read position so it can be reset after the data + is read from the queue as this function is only peeking the + data, not removing it. */ + pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + traceQUEUE_PEEK( pxQueue ); + + /* The data is not being removed, so reset the read pointer. */ + pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; + + /* The data is being left in the queue, so see if there are + any other tasks waiting for the data. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than this task. */ + queueYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskEXIT_CRITICAL(); + return pdPASS; + } + else + { + if( xTicksToWait == ( TickType_t ) 0 ) + { + /* The queue was empty and no block time is specified (or + the block time has expired) so leave now. */ + taskEXIT_CRITICAL(); + traceQUEUE_PEEK_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else if( xEntryTimeSet == pdFALSE ) + { + /* The queue was empty and a block time was specified so + configure the timeout structure ready to enter the blocked + state. */ + vTaskInternalSetTimeOutState( &xTimeOut ); + xEntryTimeSet = pdTRUE; + } + else + { + /* Entry time was already set. */ + mtCOVERAGE_TEST_MARKER(); + } + } + } + taskEXIT_CRITICAL(); + + /* Interrupts and other tasks can send to and receive from the queue + now the critical section has been exited. */ + + vTaskSuspendAll(); + prvLockQueue( pxQueue ); + + /* Update the timeout state to see if it has expired yet. */ + if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) + { + /* Timeout has not expired yet, check to see if there is data in the + queue now, and if not enter the Blocked state to wait for data. */ + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceBLOCKING_ON_QUEUE_PEEK( pxQueue ); + vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); + prvUnlockQueue( pxQueue ); + if( xTaskResumeAll() == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* There is data in the queue now, so don't enter the blocked + state, instead return to try and obtain the data. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + } + } + else + { + /* The timeout has expired. If there is still no data in the queue + exit, otherwise go back and try to read the data again. */ + prvUnlockQueue( pxQueue ); + ( void ) xTaskResumeAll(); + + if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) + { + traceQUEUE_PEEK_FAILED( pxQueue ); + return errQUEUE_EMPTY; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } /*lint -restore */ +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue, void * const pvBuffer, BaseType_t * const pxHigherPriorityTaskWoken ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + /* Cannot block in an ISR, so check there is data available. */ + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + const int8_t cRxLock = pxQueue->cRxLock; + + traceQUEUE_RECEIVE_FROM_ISR( pxQueue ); + + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; + + /* If the queue is locked the event list will not be modified. + Instead update the lock count so the task that unlocks the queue + will know that an ISR has removed data while the queue was + locked. */ + if( cRxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + /* The task waiting has a higher priority than us so + force a context switch. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Increment the lock count so the task that unlocks the queue + knows that data was removed while it was locked. */ + pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void * const pvBuffer ) +{ +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; +int8_t *pcOriginalReadPosition; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); + configASSERT( pxQueue->uxItemSize != 0 ); /* Can't peek a semaphore. */ + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* Cannot block in an ISR, so check there is data available. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + traceQUEUE_PEEK_FROM_ISR( pxQueue ); + + /* Remember the read position so it can be reset as nothing is + actually being removed from the queue. */ + pcOriginalReadPosition = pxQueue->u.xQueue.pcReadFrom; + prvCopyDataFromQueue( pxQueue, pvBuffer ); + pxQueue->u.xQueue.pcReadFrom = pcOriginalReadPosition; + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue ); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; + + configASSERT( xQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = ( ( Queue_t * ) xQueue )->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + + taskENTER_CRITICAL(); + { + uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting; + } + taskEXIT_CRITICAL(); + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) +{ +UBaseType_t uxReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + uxReturn = pxQueue->uxMessagesWaiting; + + return uxReturn; +} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */ +/*-----------------------------------------------------------*/ + +void vQueueDelete( QueueHandle_t xQueue ) +{ +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + traceQUEUE_DELETE( pxQueue ); + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + vQueueUnregisterQueue( pxQueue ); + } + #endif + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) ) + { + /* The queue can only have been allocated dynamically - free it + again. */ + vPortFree( pxQueue ); + } + #elif( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + { + /* The queue could have been allocated statically or dynamically, so + check before attempting to free the memory. */ + if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) + { + vPortFree( pxQueue ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #else + { + /* The queue must have been statically allocated, so is not going to be + deleted. Avoid compiler warnings about the unused parameter. */ + ( void ) pxQueue; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxQueueGetQueueNumber( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vQueueSetQueueNumber( QueueHandle_t xQueue, UBaseType_t uxQueueNumber ) + { + ( ( Queue_t * ) xQueue )->uxQueueNumber = uxQueueNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + uint8_t ucQueueGetQueueType( QueueHandle_t xQueue ) + { + return ( ( Queue_t * ) xQueue )->ucQueueType; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if( configUSE_MUTEXES == 1 ) + + static UBaseType_t prvGetDisinheritPriorityAfterTimeout( const Queue_t * const pxQueue ) + { + UBaseType_t uxHighestPriorityOfWaitingTasks; + + /* If a task waiting for a mutex causes the mutex holder to inherit a + priority, but the waiting task times out, then the holder should + disinherit the priority - but only down to the highest priority of any + other tasks that are waiting for the same mutex. For this purpose, + return the priority of the highest priority task that is waiting for the + mutex. */ + if( listCURRENT_LIST_LENGTH( &( pxQueue->xTasksWaitingToReceive ) ) > 0U ) + { + uxHighestPriorityOfWaitingTasks = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) listGET_ITEM_VALUE_OF_HEAD_ENTRY( &( pxQueue->xTasksWaitingToReceive ) ); + } + else + { + uxHighestPriorityOfWaitingTasks = tskIDLE_PRIORITY; + } + + return uxHighestPriorityOfWaitingTasks; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) +{ +BaseType_t xReturn = pdFALSE; +UBaseType_t uxMessagesWaiting; + + /* This function is called from a critical section. */ + + uxMessagesWaiting = pxQueue->uxMessagesWaiting; + + if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) + { + #if ( configUSE_MUTEXES == 1 ) + { + if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) + { + /* The mutex is no longer being held. */ + xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); + pxQueue->u.xSemaphore.xMutexHolder = NULL; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_MUTEXES */ + } + else if( xPosition == queueSEND_TO_BACK ) + { + ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ + pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ + if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->pcWriteTo = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ + pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ + { + pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xPosition == queueOVERWRITE ) + { + if( uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* An item is not being added but overwritten, so subtract + one from the recorded number of items in the queue so when + one is added again below the number of recorded items remains + correct. */ + --uxMessagesWaiting; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) +{ + if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) + { + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ + } +} +/*-----------------------------------------------------------*/ + +static void prvUnlockQueue( Queue_t * const pxQueue ) +{ + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */ + + /* The lock counts contains the number of extra data items placed or + removed from the queue while the queue was locked. When a queue is + locked items can be added or removed, but the event lists cannot be + updated. */ + taskENTER_CRITICAL(); + { + int8_t cTxLock = pxQueue->cTxLock; + + /* See if data was added to the queue while it was locked. */ + while( cTxLock > queueLOCKED_UNMODIFIED ) + { + /* Data was posted while the queue was locked. Are any tasks + blocked waiting for data to become available? */ + #if ( configUSE_QUEUE_SETS == 1 ) + { + if( pxQueue->pxQueueSetContainer != NULL ) + { + if( prvNotifyQueueSetContainer( pxQueue ) != pdFALSE ) + { + /* The queue is a member of a queue set, and posting to + the queue set caused a higher priority task to unblock. + A context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* Tasks that are removed from the event list will get + added to the pending ready list as the scheduler is still + suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that a + context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + } + #else /* configUSE_QUEUE_SETS */ + { + /* Tasks that are removed from the event list will get added to + the pending ready list as the scheduler is still suspended. */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority so record that + a context switch is required. */ + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + break; + } + } + #endif /* configUSE_QUEUE_SETS */ + + --cTxLock; + } + + pxQueue->cTxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); + + /* Do the same for the Rx lock. */ + taskENTER_CRITICAL(); + { + int8_t cRxLock = pxQueue->cRxLock; + + while( cRxLock > queueLOCKED_UNMODIFIED ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + vTaskMissedYield(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + --cRxLock; + } + else + { + break; + } + } + + pxQueue->cRxLock = queueUNLOCKED; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) +{ +BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) +{ +BaseType_t xReturn; +Queue_t * const pxQueue = xQueue; + + configASSERT( pxQueue ); + if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSend( QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* If the queue is already full we may have to block. A critical section + is required to prevent an interrupt removing something from the queue + between the check to see if the queue is full and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( prvIsQueueFull( pxQueue ) != pdFALSE ) + { + /* The queue is full - do we want to block or just leave without + posting? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is called from a coroutine we cannot block directly, but + return indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + /* There is room in the queue, copy the data into the queue. */ + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + xReturn = pdPASS; + + /* Were any co-routines waiting for data to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The co-routine waiting has a higher priority so record + that a yield might be appropriate. */ + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = errQUEUE_FULL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* If the queue is already empty we may have to block. A critical section + is required to prevent an interrupt adding something to the queue + between the check to see if the queue is empty and blocking on the queue. */ + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) + { + /* There are no messages in the queue, do we want to block or just + leave with nothing? */ + if( xTicksToWait > ( TickType_t ) 0 ) + { + /* As this is a co-routine we cannot block directly, but return + indicating that we need to block. */ + vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) ); + portENABLE_INTERRUPTS(); + return errQUEUE_BLOCKED; + } + else + { + portENABLE_INTERRUPTS(); + return errQUEUE_FULL; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portENABLE_INTERRUPTS(); + + portDISABLE_INTERRUPTS(); + { + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Data is available from the queue. */ + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + xReturn = pdPASS; + + /* Were any co-routines waiting for space to become available? */ + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + /* In this instance the co-routine could be placed directly + into the ready list as we are within a critical section. + Instead the same pending ready list mechanism is used as if + the event were caused from within an interrupt. */ + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + xReturn = errQUEUE_YIELD; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xReturn = pdFAIL; + } + } + portENABLE_INTERRUPTS(); + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken ) + { + Queue_t * const pxQueue = xQueue; + + /* Cannot block within an ISR so if there is no space on the queue then + exit without doing anything. */ + if( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) + { + prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK ); + + /* We only want to wake one co-routine per ISR, so check that a + co-routine has not already been woken. */ + if( xCoRoutinePreviouslyWoken == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) + { + return pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCoRoutinePreviouslyWoken; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_CO_ROUTINES == 1 ) + + BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxCoRoutineWoken ) + { + BaseType_t xReturn; + Queue_t * const pxQueue = xQueue; + + /* We cannot block from an ISR, so check there is data available. If + not then just leave without doing anything. */ + if( pxQueue->uxMessagesWaiting > ( UBaseType_t ) 0 ) + { + /* Copy the data from the queue. */ + pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; + if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) + { + pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --( pxQueue->uxMessagesWaiting ); + ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( unsigned ) pxQueue->uxItemSize ); + + if( ( *pxCoRoutineWoken ) == pdFALSE ) + { + if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) + { + if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) + { + *pxCoRoutineWoken = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_CO_ROUTINES */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + + /* See if there is an empty space in the registry. A NULL name denotes + a free slot. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].pcQueueName == NULL ) + { + /* Store the information on this queue. */ + xQueueRegistry[ ux ].pcQueueName = pcQueueName; + xQueueRegistry[ ux ].xHandle = xQueue; + + traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + const char *pcQueueGetName( QueueHandle_t xQueue ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t ux; + const char *pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + /* Note there is nothing here to protect against another task adding or + removing entries from the registry while it is being searched. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + pcReturn = xQueueRegistry[ ux ].pcQueueName; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return pcReturn; + } /*lint !e818 xQueue cannot be a pointer to const because it is a typedef. */ + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configQUEUE_REGISTRY_SIZE > 0 ) + + void vQueueUnregisterQueue( QueueHandle_t xQueue ) + { + UBaseType_t ux; + + /* See if the handle of the queue being unregistered in actually in the + registry. */ + for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) + { + if( xQueueRegistry[ ux ].xHandle == xQueue ) + { + /* Set the name to NULL to show that this slot if free again. */ + xQueueRegistry[ ux ].pcQueueName = NULL; + + /* Set the handle to NULL to ensure the same queue handle cannot + appear in the registry twice if it is added, removed, then + added again. */ + xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ + +#endif /* configQUEUE_REGISTRY_SIZE */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TIMERS == 1 ) + + void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + Queue_t * const pxQueue = xQueue; + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements. + It can result in vListInsert() being called on a list that can only + possibly ever have one item in it, so the list will be fast, but even + so it should be called with the scheduler locked and not from a critical + section. */ + + /* Only do anything if there are no messages in the queue. This function + will not actually cause the task to block, just place it on a blocked + list. It will not block until the scheduler is unlocked - at which + time a yield will be performed. If an item is added to the queue while + the queue is locked, and the calling task blocks on the queue, then the + calling task will be immediately unblocked when the queue is unlocked. */ + prvLockQueue( pxQueue ); + if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) + { + /* There is nothing in the queue, block for the specified period. */ + vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvUnlockQueue( pxQueue ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +#if( ( configUSE_QUEUE_SETS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + QueueSetHandle_t xQueueCreateSet( const UBaseType_t uxEventQueueLength ) + { + QueueSetHandle_t pxQueue; + + pxQueue = xQueueGenericCreate( uxEventQueueLength, ( UBaseType_t ) sizeof( Queue_t * ), queueQUEUE_TYPE_SET ); + + return pxQueue; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) + { + /* Cannot add a queue/semaphore to more than one queue set. */ + xReturn = pdFAIL; + } + else if( ( ( Queue_t * ) xQueueOrSemaphore )->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* Cannot add a queue/semaphore to a queue set if there are already + items in the queue/semaphore. */ + xReturn = pdFAIL; + } + else + { + ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; + xReturn = pdPASS; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + BaseType_t xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet ) + { + BaseType_t xReturn; + Queue_t * const pxQueueOrSemaphore = ( Queue_t * ) xQueueOrSemaphore; + + if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) + { + /* The queue was not a member of the set. */ + xReturn = pdFAIL; + } + else if( pxQueueOrSemaphore->uxMessagesWaiting != ( UBaseType_t ) 0 ) + { + /* It is dangerous to remove a queue from a set when the queue is + not empty because the queue set will still hold pending events for + the queue. */ + xReturn = pdFAIL; + } + else + { + taskENTER_CRITICAL(); + { + /* The queue is no longer contained in the set. */ + pxQueueOrSemaphore->pxQueueSetContainer = NULL; + } + taskEXIT_CRITICAL(); + xReturn = pdPASS; + } + + return xReturn; + } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */ + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t const xTicksToWait ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueReceive( ( QueueHandle_t ) xQueueSet, &xReturn, xTicksToWait ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + QueueSetMemberHandle_t xQueueSelectFromSetFromISR( QueueSetHandle_t xQueueSet ) + { + QueueSetMemberHandle_t xReturn = NULL; + + ( void ) xQueueReceiveFromISR( ( QueueHandle_t ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */ + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_QUEUE_SETS == 1 ) + + static BaseType_t prvNotifyQueueSetContainer( const Queue_t * const pxQueue ) + { + Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer; + BaseType_t xReturn = pdFALSE; + + /* This function must be called form a critical section. */ + + configASSERT( pxQueueSetContainer ); + configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); + + if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) + { + const int8_t cTxLock = pxQueueSetContainer->cTxLock; + + traceQUEUE_SEND( pxQueueSetContainer ); + + /* The data copied is the handle of the queue that contains data. */ + xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); + + if( cTxLock == queueUNLOCKED ) + { + if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) + { + if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) + { + /* The task waiting has a higher priority. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_QUEUE_SETS */ + + + + + + + + + + + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c b/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c new file mode 100644 index 0000000..7ad5d54 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c @@ -0,0 +1,1263 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "stream_buffer.h" + +#if( configUSE_TASK_NOTIFICATIONS != 1 ) + #error configUSE_TASK_NOTIFICATIONS must be set to 1 to build stream_buffer.c +#endif + +/* Lint e961, e9021 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + +/* If the user has not provided application specific Rx notification macros, +or #defined the notification macros away, them provide default implementations +that uses task notifications. */ +/*lint -save -e9026 Function like macros allowed and needed here so they can be overidden. */ +#ifndef sbRECEIVE_COMPLETED + #define sbRECEIVE_COMPLETED( pxStreamBuffer ) \ + vTaskSuspendAll(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ + { \ + ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToSend, \ + ( uint32_t ) 0, \ + eNoAction ); \ + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ + } \ + } \ + ( void ) xTaskResumeAll(); +#endif /* sbRECEIVE_COMPLETED */ + +#ifndef sbRECEIVE_COMPLETED_FROM_ISR + #define sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, \ + pxHigherPriorityTaskWoken ) \ + { \ + UBaseType_t uxSavedInterruptStatus; \ + \ + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) \ + { \ + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, \ + ( uint32_t ) 0, \ + eNoAction, \ + pxHigherPriorityTaskWoken ); \ + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; \ + } \ + } \ + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ + } +#endif /* sbRECEIVE_COMPLETED_FROM_ISR */ + +/* If the user has not provided an application specific Tx notification macro, +or #defined the notification macro away, them provide a default implementation +that uses task notifications. */ +#ifndef sbSEND_COMPLETED + #define sbSEND_COMPLETED( pxStreamBuffer ) \ + vTaskSuspendAll(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ + { \ + ( void ) xTaskNotify( ( pxStreamBuffer )->xTaskWaitingToReceive, \ + ( uint32_t ) 0, \ + eNoAction ); \ + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ + } \ + } \ + ( void ) xTaskResumeAll(); +#endif /* sbSEND_COMPLETED */ + +#ifndef sbSEND_COMPLETE_FROM_ISR + #define sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ) \ + { \ + UBaseType_t uxSavedInterruptStatus; \ + \ + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); \ + { \ + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) \ + { \ + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, \ + ( uint32_t ) 0, \ + eNoAction, \ + pxHigherPriorityTaskWoken ); \ + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; \ + } \ + } \ + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); \ + } +#endif /* sbSEND_COMPLETE_FROM_ISR */ +/*lint -restore (9026) */ + +/* The number of bytes used to hold the length of a message in the buffer. */ +#define sbBYTES_TO_STORE_MESSAGE_LENGTH ( sizeof( configMESSAGE_BUFFER_LENGTH_TYPE ) ) + +/* Bits stored in the ucFlags field of the stream buffer. */ +#define sbFLAGS_IS_MESSAGE_BUFFER ( ( uint8_t ) 1 ) /* Set if the stream buffer was created as a message buffer, in which case it holds discrete messages rather than a stream. */ +#define sbFLAGS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 2 ) /* Set if the stream buffer was created using statically allocated memory. */ + +/*-----------------------------------------------------------*/ + +/* Structure that hold state information on the buffer. */ +typedef struct StreamBufferDef_t /*lint !e9058 Style convention uses tag. */ +{ + volatile size_t xTail; /* Index to the next item to read within the buffer. */ + volatile size_t xHead; /* Index to the next item to write within the buffer. */ + size_t xLength; /* The length of the buffer pointed to by pucBuffer. */ + size_t xTriggerLevelBytes; /* The number of bytes that must be in the stream buffer before a task that is waiting for data is unblocked. */ + volatile TaskHandle_t xTaskWaitingToReceive; /* Holds the handle of a task waiting for data, or NULL if no tasks are waiting. */ + volatile TaskHandle_t xTaskWaitingToSend; /* Holds the handle of a task waiting to send data to a message buffer that is full. */ + uint8_t *pucBuffer; /* Points to the buffer itself - that is - the RAM that stores the data passed through the buffer. */ + uint8_t ucFlags; + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxStreamBufferNumber; /* Used for tracing purposes. */ + #endif +} StreamBuffer_t; + +/* + * The number of bytes available to be read from the buffer. + */ +static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) PRIVILEGED_FUNCTION; + +/* + * Add xCount bytes from pucData into the pxStreamBuffer message buffer. + * Returns the number of bytes written, which will either equal xCount in the + * success case, or 0 if there was not enough space in the buffer (in which case + * no data is written into the buffer). + */ +static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) PRIVILEGED_FUNCTION; + +/* + * If the stream buffer is being used as a message buffer, then reads an entire + * message out of the buffer. If the stream buffer is being used as a stream + * buffer then read as many bytes as possible from the buffer. + * prvReadBytesFromBuffer() is called to actually extract the bytes from the + * buffer's data storage area. + */ +static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + size_t xBytesAvailable, + size_t xBytesToStoreMessageLength ) PRIVILEGED_FUNCTION; + +/* + * If the stream buffer is being used as a message buffer, then writes an entire + * message to the buffer. If the stream buffer is being used as a stream + * buffer then write as many bytes as possible to the buffer. + * prvWriteBytestoBuffer() is called to actually send the bytes to the buffer's + * data storage area. + */ +static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, + const void * pvTxData, + size_t xDataLengthBytes, + size_t xSpace, + size_t xRequiredSpace ) PRIVILEGED_FUNCTION; + +/* + * Read xMaxCount bytes from the pxStreamBuffer message buffer and write them + * to pucData. + */ +static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, + uint8_t *pucData, + size_t xMaxCount, + size_t xBytesAvailable ) PRIVILEGED_FUNCTION; + +/* + * Called by both pxStreamBufferCreate() and pxStreamBufferCreateStatic() to + * initialise the members of the newly created stream buffer structure. + */ +static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, + uint8_t * const pucBuffer, + size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + uint8_t ucFlags ) PRIVILEGED_FUNCTION; + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + StreamBufferHandle_t xStreamBufferGenericCreate( size_t xBufferSizeBytes, size_t xTriggerLevelBytes, BaseType_t xIsMessageBuffer ) + { + uint8_t *pucAllocatedMemory; + uint8_t ucFlags; + + /* In case the stream buffer is going to be used as a message buffer + (that is, it will hold discrete messages with a little meta data that + says how big the next message is) check the buffer will be large enough + to hold at least one message. */ + if( xIsMessageBuffer == pdTRUE ) + { + /* Is a message buffer but not statically allocated. */ + ucFlags = sbFLAGS_IS_MESSAGE_BUFFER; + configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); + } + else + { + /* Not a message buffer and not statically allocated. */ + ucFlags = 0; + configASSERT( xBufferSizeBytes > 0 ); + } + configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); + + /* A trigger level of 0 would cause a waiting task to unblock even when + the buffer was empty. */ + if( xTriggerLevelBytes == ( size_t ) 0 ) + { + xTriggerLevelBytes = ( size_t ) 1; + } + + /* A stream buffer requires a StreamBuffer_t structure and a buffer. + Both are allocated in a single call to pvPortMalloc(). The + StreamBuffer_t structure is placed at the start of the allocated memory + and the buffer follows immediately after. The requested size is + incremented so the free space is returned as the user would expect - + this is a quirk of the implementation that means otherwise the free + space would be reported as one byte smaller than would be logically + expected. */ + xBufferSizeBytes++; + pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*lint !e9079 malloc() only returns void*. */ + + if( pucAllocatedMemory != NULL ) + { + prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pucAllocatedMemory, /* Structure at the start of the allocated memory. */ /*lint !e9087 Safe cast as allocated memory is aligned. */ /*lint !e826 Area is not too small and alignment is guaranteed provided malloc() behaves as expected and returns aligned buffer. */ + pucAllocatedMemory + sizeof( StreamBuffer_t ), /* Storage area follows. */ /*lint !e9016 Indexing past structure valid for uint8_t pointer, also storage area has no alignment requirement. */ + xBufferSizeBytes, + xTriggerLevelBytes, + ucFlags ); + + traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pucAllocatedMemory ), xIsMessageBuffer ); + } + else + { + traceSTREAM_BUFFER_CREATE_FAILED( xIsMessageBuffer ); + } + + return ( StreamBufferHandle_t ) pucAllocatedMemory; /*lint !e9087 !e826 Safe cast as allocated memory is aligned. */ + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + StreamBufferHandle_t xStreamBufferGenericCreateStatic( size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + BaseType_t xIsMessageBuffer, + uint8_t * const pucStreamBufferStorageArea, + StaticStreamBuffer_t * const pxStaticStreamBuffer ) + { + StreamBuffer_t * const pxStreamBuffer = ( StreamBuffer_t * ) pxStaticStreamBuffer; /*lint !e740 !e9087 Safe cast as StaticStreamBuffer_t is opaque Streambuffer_t. */ + StreamBufferHandle_t xReturn; + uint8_t ucFlags; + + configASSERT( pucStreamBufferStorageArea ); + configASSERT( pxStaticStreamBuffer ); + configASSERT( xTriggerLevelBytes <= xBufferSizeBytes ); + + /* A trigger level of 0 would cause a waiting task to unblock even when + the buffer was empty. */ + if( xTriggerLevelBytes == ( size_t ) 0 ) + { + xTriggerLevelBytes = ( size_t ) 1; + } + + if( xIsMessageBuffer != pdFALSE ) + { + /* Statically allocated message buffer. */ + ucFlags = sbFLAGS_IS_MESSAGE_BUFFER | sbFLAGS_IS_STATICALLY_ALLOCATED; + } + else + { + /* Statically allocated stream buffer. */ + ucFlags = sbFLAGS_IS_STATICALLY_ALLOCATED; + } + + /* In case the stream buffer is going to be used as a message buffer + (that is, it will hold discrete messages with a little meta data that + says how big the next message is) check the buffer will be large enough + to hold at least one message. */ + configASSERT( xBufferSizeBytes > sbBYTES_TO_STORE_MESSAGE_LENGTH ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticStreamBuffer_t equals the size of the real + message buffer structure. */ + volatile size_t xSize = sizeof( StaticStreamBuffer_t ); + configASSERT( xSize == sizeof( StreamBuffer_t ) ); + } /*lint !e529 xSize is referenced is configASSERT() is defined. */ + #endif /* configASSERT_DEFINED */ + + if( ( pucStreamBufferStorageArea != NULL ) && ( pxStaticStreamBuffer != NULL ) ) + { + prvInitialiseNewStreamBuffer( pxStreamBuffer, + pucStreamBufferStorageArea, + xBufferSizeBytes, + xTriggerLevelBytes, + ucFlags ); + + /* Remember this was statically allocated in case it is ever deleted + again. */ + pxStreamBuffer->ucFlags |= sbFLAGS_IS_STATICALLY_ALLOCATED; + + traceSTREAM_BUFFER_CREATE( pxStreamBuffer, xIsMessageBuffer ); + + xReturn = ( StreamBufferHandle_t ) pxStaticStreamBuffer; /*lint !e9087 Data hiding requires cast to opaque type. */ + } + else + { + xReturn = NULL; + traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ); + } + + return xReturn; + } + +#endif /* ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ +/*-----------------------------------------------------------*/ + +void vStreamBufferDelete( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * pxStreamBuffer = xStreamBuffer; + + configASSERT( pxStreamBuffer ); + + traceSTREAM_BUFFER_DELETE( xStreamBuffer ); + + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) pdFALSE ) + { + #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* Both the structure and the buffer were allocated using a single call + to pvPortMalloc(), hence only one call to vPortFree() is required. */ + vPortFree( ( void * ) pxStreamBuffer ); /*lint !e9087 Standard free() semantics require void *, plus pxStreamBuffer was allocated by pvPortMalloc(). */ + } + #else + { + /* Should not be possible to get here, ucFlags must be corrupt. + Force an assert. */ + configASSERT( xStreamBuffer == ( StreamBufferHandle_t ) ~0 ); + } + #endif + } + else + { + /* The structure and buffer were not allocated dynamically and cannot be + freed - just scrub the structure so future use will assert. */ + ( void ) memset( pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferReset( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn = pdFAIL; + +#if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxStreamBufferNumber; +#endif + + configASSERT( pxStreamBuffer ); + + #if( configUSE_TRACE_FACILITY == 1 ) + { + /* Store the stream buffer number so it can be restored after the + reset. */ + uxStreamBufferNumber = pxStreamBuffer->uxStreamBufferNumber; + } + #endif + + /* Can only reset a message buffer if there are no tasks blocked on it. */ + taskENTER_CRITICAL(); + { + if( pxStreamBuffer->xTaskWaitingToReceive == NULL ) + { + if( pxStreamBuffer->xTaskWaitingToSend == NULL ) + { + prvInitialiseNewStreamBuffer( pxStreamBuffer, + pxStreamBuffer->pucBuffer, + pxStreamBuffer->xLength, + pxStreamBuffer->xTriggerLevelBytes, + pxStreamBuffer->ucFlags ); + xReturn = pdPASS; + + #if( configUSE_TRACE_FACILITY == 1 ) + { + pxStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; + } + #endif + + traceSTREAM_BUFFER_RESET( xStreamBuffer ); + } + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferSetTriggerLevel( StreamBufferHandle_t xStreamBuffer, size_t xTriggerLevel ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; + + configASSERT( pxStreamBuffer ); + + /* It is not valid for the trigger level to be 0. */ + if( xTriggerLevel == ( size_t ) 0 ) + { + xTriggerLevel = ( size_t ) 1; + } + + /* The trigger level is the number of bytes that must be in the stream + buffer before a task that is waiting for data is unblocked. */ + if( xTriggerLevel <= pxStreamBuffer->xLength ) + { + pxStreamBuffer->xTriggerLevelBytes = xTriggerLevel; + xReturn = pdPASS; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSpacesAvailable( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xSpace; + + configASSERT( pxStreamBuffer ); + + xSpace = pxStreamBuffer->xLength + pxStreamBuffer->xTail; + xSpace -= pxStreamBuffer->xHead; + xSpace -= ( size_t ) 1; + + if( xSpace >= pxStreamBuffer->xLength ) + { + xSpace -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xSpace; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferBytesAvailable( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn; + + configASSERT( pxStreamBuffer ); + + xReturn = prvBytesInBuffer( pxStreamBuffer ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + TickType_t xTicksToWait ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xSpace = 0; +size_t xRequiredSpace = xDataLengthBytes; +TimeOut_t xTimeOut; + + configASSERT( pvTxData ); + configASSERT( pxStreamBuffer ); + + /* This send function is used to write to both message buffers and stream + buffers. If this is a message buffer then the space needed must be + increased by the amount of bytes needed to store the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; + + /* Overflow? */ + configASSERT( xRequiredSpace > xDataLengthBytes ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xTicksToWait != ( TickType_t ) 0 ) + { + vTaskSetTimeOutState( &xTimeOut ); + + do + { + /* Wait until the required number of bytes are free in the message + buffer. */ + taskENTER_CRITICAL(); + { + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + + if( xSpace < xRequiredSpace ) + { + /* Clear notification state as going to wait for space. */ + ( void ) xTaskNotifyStateClear( NULL ); + + /* Should only be one writer. */ + configASSERT( pxStreamBuffer->xTaskWaitingToSend == NULL ); + pxStreamBuffer->xTaskWaitingToSend = xTaskGetCurrentTaskHandle(); + } + else + { + taskEXIT_CRITICAL(); + break; + } + } + taskEXIT_CRITICAL(); + + traceBLOCKING_ON_STREAM_BUFFER_SEND( xStreamBuffer ); + ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); + pxStreamBuffer->xTaskWaitingToSend = NULL; + + } while( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xSpace == ( size_t ) 0 ) + { + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); + + if( xReturn > ( size_t ) 0 ) + { + traceSTREAM_BUFFER_SEND( xStreamBuffer, xReturn ); + + /* Was a task waiting for the data? */ + if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) + { + sbSEND_COMPLETED( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + traceSTREAM_BUFFER_SEND_FAILED( xStreamBuffer ); + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer, + const void *pvTxData, + size_t xDataLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xSpace; +size_t xRequiredSpace = xDataLengthBytes; + + configASSERT( pvTxData ); + configASSERT( pxStreamBuffer ); + + /* This send function is used to write to both message buffers and stream + buffers. If this is a message buffer then the space needed must be + increased by the amount of bytes needed to store the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xRequiredSpace += sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xSpace = xStreamBufferSpacesAvailable( pxStreamBuffer ); + xReturn = prvWriteMessageToBuffer( pxStreamBuffer, pvTxData, xDataLengthBytes, xSpace, xRequiredSpace ); + + if( xReturn > ( size_t ) 0 ) + { + /* Was a task waiting for the data? */ + if( prvBytesInBuffer( pxStreamBuffer ) >= pxStreamBuffer->xTriggerLevelBytes ) + { + sbSEND_COMPLETE_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceSTREAM_BUFFER_SEND_FROM_ISR( xStreamBuffer, xReturn ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static size_t prvWriteMessageToBuffer( StreamBuffer_t * const pxStreamBuffer, + const void * pvTxData, + size_t xDataLengthBytes, + size_t xSpace, + size_t xRequiredSpace ) +{ + BaseType_t xShouldWrite; + size_t xReturn; + + if( xSpace == ( size_t ) 0 ) + { + /* Doesn't matter if this is a stream buffer or a message buffer, there + is no space to write. */ + xShouldWrite = pdFALSE; + } + else if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) == ( uint8_t ) 0 ) + { + /* This is a stream buffer, as opposed to a message buffer, so writing a + stream of bytes rather than discrete messages. Write as many bytes as + possible. */ + xShouldWrite = pdTRUE; + xDataLengthBytes = configMIN( xDataLengthBytes, xSpace ); + } + else if( xSpace >= xRequiredSpace ) + { + /* This is a message buffer, as opposed to a stream buffer, and there + is enough space to write both the message length and the message itself + into the buffer. Start by writing the length of the data, the data + itself will be written later in this function. */ + xShouldWrite = pdTRUE; + ( void ) prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) &( xDataLengthBytes ), sbBYTES_TO_STORE_MESSAGE_LENGTH ); + } + else + { + /* There is space available, but not enough space. */ + xShouldWrite = pdFALSE; + } + + if( xShouldWrite != pdFALSE ) + { + /* Writes the data itself. */ + xReturn = prvWriteBytesToBuffer( pxStreamBuffer, ( const uint8_t * ) pvTxData, xDataLengthBytes ); /*lint !e9079 Storage buffer is implemented as uint8_t for ease of sizing, alighment and access. */ + } + else + { + xReturn = 0; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + TickType_t xTicksToWait ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; + + configASSERT( pvRxData ); + configASSERT( pxStreamBuffer ); + + /* This receive function is used by both message buffers, which store + discrete messages, and stream buffers, which store a continuous stream of + bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + if( xTicksToWait != ( TickType_t ) 0 ) + { + /* Checking if there is data and clearing the notification state must be + performed atomically. */ + taskENTER_CRITICAL(); + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + + /* If this function was invoked by a message buffer read then + xBytesToStoreMessageLength holds the number of bytes used to hold + the length of the next discrete message. If this function was + invoked by a stream buffer read then xBytesToStoreMessageLength will + be 0. */ + if( xBytesAvailable <= xBytesToStoreMessageLength ) + { + /* Clear notification state as going to wait for data. */ + ( void ) xTaskNotifyStateClear( NULL ); + + /* Should only be one reader. */ + configASSERT( pxStreamBuffer->xTaskWaitingToReceive == NULL ); + pxStreamBuffer->xTaskWaitingToReceive = xTaskGetCurrentTaskHandle(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + if( xBytesAvailable <= xBytesToStoreMessageLength ) + { + /* Wait for data to be available. */ + traceBLOCKING_ON_STREAM_BUFFER_RECEIVE( xStreamBuffer ); + ( void ) xTaskNotifyWait( ( uint32_t ) 0, ( uint32_t ) 0, NULL, xTicksToWait ); + pxStreamBuffer->xTaskWaitingToReceive = NULL; + + /* Recheck the data available after blocking. */ + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + } + + /* Whether receiving a discrete message (where xBytesToStoreMessageLength + holds the number of bytes used to store the message length) or a stream of + bytes (where xBytesToStoreMessageLength is zero), the number of bytes + available must be greater than xBytesToStoreMessageLength to be able to + read bytes from the buffer. */ + if( xBytesAvailable > xBytesToStoreMessageLength ) + { + xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); + + /* Was a task waiting for space in the buffer? */ + if( xReceivedLength != ( size_t ) 0 ) + { + traceSTREAM_BUFFER_RECEIVE( xStreamBuffer, xReceivedLength ); + sbRECEIVE_COMPLETED( pxStreamBuffer ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + traceSTREAM_BUFFER_RECEIVE_FAILED( xStreamBuffer ); + mtCOVERAGE_TEST_MARKER(); + } + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferNextMessageLengthBytes( StreamBufferHandle_t xStreamBuffer ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReturn, xBytesAvailable, xOriginalTail; +configMESSAGE_BUFFER_LENGTH_TYPE xTempReturn; + + configASSERT( pxStreamBuffer ); + + /* Ensure the stream buffer is being used as a message buffer. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + if( xBytesAvailable > sbBYTES_TO_STORE_MESSAGE_LENGTH ) + { + /* The number of bytes available is greater than the number of bytes + required to hold the length of the next message, so another message + is available. Return its length without removing the length bytes + from the buffer. A copy of the tail is stored so the buffer can be + returned to its prior state as the message is not actually being + removed from the buffer. */ + xOriginalTail = pxStreamBuffer->xTail; + ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempReturn, sbBYTES_TO_STORE_MESSAGE_LENGTH, xBytesAvailable ); + xReturn = ( size_t ) xTempReturn; + pxStreamBuffer->xTail = xOriginalTail; + } + else + { + /* The minimum amount of bytes in a message buffer is + ( sbBYTES_TO_STORE_MESSAGE_LENGTH + 1 ), so if xBytesAvailable is + less than sbBYTES_TO_STORE_MESSAGE_LENGTH the only other valid + value is 0. */ + configASSERT( xBytesAvailable == 0 ); + xReturn = 0; + } + } + else + { + xReturn = 0; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +size_t xStreamBufferReceiveFromISR( StreamBufferHandle_t xStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + BaseType_t * const pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +size_t xReceivedLength = 0, xBytesAvailable, xBytesToStoreMessageLength; + + configASSERT( pvRxData ); + configASSERT( pxStreamBuffer ); + + /* This receive function is used by both message buffers, which store + discrete messages, and stream buffers, which store a continuous stream of + bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the + message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + xBytesAvailable = prvBytesInBuffer( pxStreamBuffer ); + + /* Whether receiving a discrete message (where xBytesToStoreMessageLength + holds the number of bytes used to store the message length) or a stream of + bytes (where xBytesToStoreMessageLength is zero), the number of bytes + available must be greater than xBytesToStoreMessageLength to be able to + read bytes from the buffer. */ + if( xBytesAvailable > xBytesToStoreMessageLength ) + { + xReceivedLength = prvReadMessageFromBuffer( pxStreamBuffer, pvRxData, xBufferLengthBytes, xBytesAvailable, xBytesToStoreMessageLength ); + + /* Was a task waiting for space in the buffer? */ + if( xReceivedLength != ( size_t ) 0 ) + { + sbRECEIVE_COMPLETED_FROM_ISR( pxStreamBuffer, pxHigherPriorityTaskWoken ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceSTREAM_BUFFER_RECEIVE_FROM_ISR( xStreamBuffer, xReceivedLength ); + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +static size_t prvReadMessageFromBuffer( StreamBuffer_t *pxStreamBuffer, + void *pvRxData, + size_t xBufferLengthBytes, + size_t xBytesAvailable, + size_t xBytesToStoreMessageLength ) +{ +size_t xOriginalTail, xReceivedLength, xNextMessageLength; +configMESSAGE_BUFFER_LENGTH_TYPE xTempNextMessageLength; + + if( xBytesToStoreMessageLength != ( size_t ) 0 ) + { + /* A discrete message is being received. First receive the length + of the message. A copy of the tail is stored so the buffer can be + returned to its prior state if the length of the message is too + large for the provided buffer. */ + xOriginalTail = pxStreamBuffer->xTail; + ( void ) prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) &xTempNextMessageLength, xBytesToStoreMessageLength, xBytesAvailable ); + xNextMessageLength = ( size_t ) xTempNextMessageLength; + + /* Reduce the number of bytes available by the number of bytes just + read out. */ + xBytesAvailable -= xBytesToStoreMessageLength; + + /* Check there is enough space in the buffer provided by the + user. */ + if( xNextMessageLength > xBufferLengthBytes ) + { + /* The user has provided insufficient space to read the message + so return the buffer to its previous state (so the length of + the message is in the buffer again). */ + pxStreamBuffer->xTail = xOriginalTail; + xNextMessageLength = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* A stream of bytes is being received (as opposed to a discrete + message), so read as many bytes as possible. */ + xNextMessageLength = xBufferLengthBytes; + } + + /* Read the actual data. */ + xReceivedLength = prvReadBytesFromBuffer( pxStreamBuffer, ( uint8_t * ) pvRxData, xNextMessageLength, xBytesAvailable ); /*lint !e9079 Data storage area is implemented as uint8_t array for ease of sizing, indexing and alignment. */ + + return xReceivedLength; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferIsEmpty( StreamBufferHandle_t xStreamBuffer ) +{ +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +size_t xTail; + + configASSERT( pxStreamBuffer ); + + /* True if no bytes are available. */ + xTail = pxStreamBuffer->xTail; + if( pxStreamBuffer->xHead == xTail ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferIsFull( StreamBufferHandle_t xStreamBuffer ) +{ +BaseType_t xReturn; +size_t xBytesToStoreMessageLength; +const StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; + + configASSERT( pxStreamBuffer ); + + /* This generic version of the receive function is used by both message + buffers, which store discrete messages, and stream buffers, which store a + continuous stream of bytes. Discrete messages include an additional + sbBYTES_TO_STORE_MESSAGE_LENGTH bytes that hold the length of the message. */ + if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ) != ( uint8_t ) 0 ) + { + xBytesToStoreMessageLength = sbBYTES_TO_STORE_MESSAGE_LENGTH; + } + else + { + xBytesToStoreMessageLength = 0; + } + + /* True if the available space equals zero. */ + if( xStreamBufferSpacesAvailable( xStreamBuffer ) <= xBytesToStoreMessageLength ) + { + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferSendCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + configASSERT( pxStreamBuffer ); + + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxStreamBuffer )->xTaskWaitingToReceive != NULL ) + { + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToReceive, + ( uint32_t ) 0, + eNoAction, + pxHigherPriorityTaskWoken ); + ( pxStreamBuffer )->xTaskWaitingToReceive = NULL; + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +BaseType_t xStreamBufferReceiveCompletedFromISR( StreamBufferHandle_t xStreamBuffer, BaseType_t *pxHigherPriorityTaskWoken ) +{ +StreamBuffer_t * const pxStreamBuffer = xStreamBuffer; +BaseType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + configASSERT( pxStreamBuffer ); + + uxSavedInterruptStatus = ( UBaseType_t ) portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( ( pxStreamBuffer )->xTaskWaitingToSend != NULL ) + { + ( void ) xTaskNotifyFromISR( ( pxStreamBuffer )->xTaskWaitingToSend, + ( uint32_t ) 0, + eNoAction, + pxHigherPriorityTaskWoken ); + ( pxStreamBuffer )->xTaskWaitingToSend = NULL; + xReturn = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +static size_t prvWriteBytesToBuffer( StreamBuffer_t * const pxStreamBuffer, const uint8_t *pucData, size_t xCount ) +{ +size_t xNextHead, xFirstLength; + + configASSERT( xCount > ( size_t ) 0 ); + + xNextHead = pxStreamBuffer->xHead; + + /* Calculate the number of bytes that can be added in the first write - + which may be less than the total number of bytes that need to be added if + the buffer will wrap back to the beginning. */ + xFirstLength = configMIN( pxStreamBuffer->xLength - xNextHead, xCount ); + + /* Write as many bytes as can be written in the first write. */ + configASSERT( ( xNextHead + xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void* ) ( &( pxStreamBuffer->pucBuffer[ xNextHead ] ) ), ( const void * ) pucData, xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + + /* If the number of bytes written was less than the number that could be + written in the first write... */ + if( xCount > xFirstLength ) + { + /* ...then write the remaining bytes to the start of the buffer. */ + configASSERT( ( xCount - xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void * ) pxStreamBuffer->pucBuffer, ( const void * ) &( pucData[ xFirstLength ] ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + xNextHead += xCount; + if( xNextHead >= pxStreamBuffer->xLength ) + { + xNextHead -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxStreamBuffer->xHead = xNextHead; + + return xCount; +} +/*-----------------------------------------------------------*/ + +static size_t prvReadBytesFromBuffer( StreamBuffer_t *pxStreamBuffer, uint8_t *pucData, size_t xMaxCount, size_t xBytesAvailable ) +{ +size_t xCount, xFirstLength, xNextTail; + + /* Use the minimum of the wanted bytes and the available bytes. */ + xCount = configMIN( xBytesAvailable, xMaxCount ); + + if( xCount > ( size_t ) 0 ) + { + xNextTail = pxStreamBuffer->xTail; + + /* Calculate the number of bytes that can be read - which may be + less than the number wanted if the data wraps around to the start of + the buffer. */ + xFirstLength = configMIN( pxStreamBuffer->xLength - xNextTail, xCount ); + + /* Obtain the number of bytes it is possible to obtain in the first + read. Asserts check bounds of read and write. */ + configASSERT( xFirstLength <= xMaxCount ); + configASSERT( ( xNextTail + xFirstLength ) <= pxStreamBuffer->xLength ); + ( void ) memcpy( ( void * ) pucData, ( const void * ) &( pxStreamBuffer->pucBuffer[ xNextTail ] ), xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + + /* If the total number of wanted bytes is greater than the number + that could be read in the first read... */ + if( xCount > xFirstLength ) + { + /*...then read the remaining bytes from the start of the buffer. */ + configASSERT( xCount <= xMaxCount ); + ( void ) memcpy( ( void * ) &( pucData[ xFirstLength ] ), ( void * ) ( pxStreamBuffer->pucBuffer ), xCount - xFirstLength ); /*lint !e9087 memcpy() requires void *. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Move the tail pointer to effectively remove the data read from + the buffer. */ + xNextTail += xCount; + + if( xNextTail >= pxStreamBuffer->xLength ) + { + xNextTail -= pxStreamBuffer->xLength; + } + + pxStreamBuffer->xTail = xNextTail; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCount; +} +/*-----------------------------------------------------------*/ + +static size_t prvBytesInBuffer( const StreamBuffer_t * const pxStreamBuffer ) +{ +/* Returns the distance between xTail and xHead. */ +size_t xCount; + + xCount = pxStreamBuffer->xLength + pxStreamBuffer->xHead; + xCount -= pxStreamBuffer->xTail; + if ( xCount >= pxStreamBuffer->xLength ) + { + xCount -= pxStreamBuffer->xLength; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xCount; +} +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewStreamBuffer( StreamBuffer_t * const pxStreamBuffer, + uint8_t * const pucBuffer, + size_t xBufferSizeBytes, + size_t xTriggerLevelBytes, + uint8_t ucFlags ) +{ + /* Assert here is deliberately writing to the entire buffer to ensure it can + be written to without generating exceptions, and is setting the buffer to a + known value to assist in development/debugging. */ + #if( configASSERT_DEFINED == 1 ) + { + /* The value written just has to be identifiable when looking at the + memory. Don't use 0xA5 as that is the stack fill value and could + result in confusion as to what is actually being observed. */ + const BaseType_t xWriteValue = 0x55; + configASSERT( memset( pucBuffer, ( int ) xWriteValue, xBufferSizeBytes ) == pucBuffer ); + } /*lint !e529 !e438 xWriteValue is only used if configASSERT() is defined. */ + #endif + + ( void ) memset( ( void * ) pxStreamBuffer, 0x00, sizeof( StreamBuffer_t ) ); /*lint !e9087 memset() requires void *. */ + pxStreamBuffer->pucBuffer = pucBuffer; + pxStreamBuffer->xLength = xBufferSizeBytes; + pxStreamBuffer->xTriggerLevelBytes = xTriggerLevelBytes; + pxStreamBuffer->ucFlags = ucFlags; +} + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxStreamBufferGetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer ) + { + return xStreamBuffer->uxStreamBufferNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vStreamBufferSetStreamBufferNumber( StreamBufferHandle_t xStreamBuffer, UBaseType_t uxStreamBufferNumber ) + { + xStreamBuffer->uxStreamBufferNumber = uxStreamBufferNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + uint8_t ucStreamBufferGetStreamBufferType( StreamBufferHandle_t xStreamBuffer ) + { + return ( xStreamBuffer->ucFlags & sbFLAGS_IS_MESSAGE_BUFFER ); + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ diff --git a/Middlewares/Third_Party/FreeRTOS/Source/tasks.c b/Middlewares/Third_Party/FreeRTOS/Source/tasks.c new file mode 100644 index 0000000..f6a6a9b --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/tasks.c @@ -0,0 +1,5310 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +/* FreeRTOS includes. */ +#include "FreeRTOS.h" +#include "task.h" +#include "timers.h" +#include "stack_macros.h" + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750 !e9021. */ + +/* Set configUSE_STATS_FORMATTING_FUNCTIONS to 2 to include the stats formatting +functions but without including stdio.h here. */ +#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) + /* At the bottom of this file are two optional functions that can be used + to generate human readable text from the raw data generated by the + uxTaskGetSystemState() function. Note the formatting functions are provided + for convenience only, and are NOT considered part of the kernel. */ + #include +#endif /* configUSE_STATS_FORMATTING_FUNCTIONS == 1 ) */ + +#if( configUSE_PREEMPTION == 0 ) + /* If the cooperative scheduler is being used then a yield should not be + performed just because a higher priority task has been woken. */ + #define taskYIELD_IF_USING_PREEMPTION() +#else + #define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API() +#endif + +/* Values that can be assigned to the ucNotifyState member of the TCB. */ +#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 ) +#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 ) +#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 ) + +/* + * The value used to fill the stack of a task when the task is created. This + * is used purely for checking the high water mark for tasks. + */ +#define tskSTACK_FILL_BYTE ( 0xa5U ) + +/* Bits used to recored how a task's stack and TCB were allocated. */ +#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 ) +#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 ) +#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 ) + +/* If any of the following are set then task stacks are filled with a known +value so the high water mark can be determined. If none of the following are +set then don't fill the stack so there is no unnecessary dependency on memset. */ +#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 1 +#else + #define tskSET_NEW_STACKS_TO_KNOWN_VALUE 0 +#endif + +/* + * Macros used by vListTask to indicate which state a task is in. + */ +#define tskRUNNING_CHAR ( 'X' ) +#define tskBLOCKED_CHAR ( 'B' ) +#define tskREADY_CHAR ( 'R' ) +#define tskDELETED_CHAR ( 'D' ) +#define tskSUSPENDED_CHAR ( 'S' ) + +/* + * Some kernel aware debuggers require the data the debugger needs access to be + * global, rather than file scope. + */ +#ifdef portREMOVE_STATIC_QUALIFIER + #define static +#endif + +/* The name allocated to the Idle task. This can be overridden by defining +configIDLE_TASK_NAME in FreeRTOSConfig.h. */ +#ifndef configIDLE_TASK_NAME + #define configIDLE_TASK_NAME "IDLE" +#endif + +#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 0 then task selection is + performed in a generic way that is not optimised to any particular + microcontroller architecture. */ + + /* uxTopReadyPriority holds the priority of the highest priority ready + state task. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) \ + { \ + if( ( uxPriority ) > uxTopReadyPriority ) \ + { \ + uxTopReadyPriority = ( uxPriority ); \ + } \ + } /* taskRECORD_READY_PRIORITY */ + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority = uxTopReadyPriority; \ + \ + /* Find the highest priority queue that contains ready tasks. */ \ + while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \ + { \ + configASSERT( uxTopPriority ); \ + --uxTopPriority; \ + } \ + \ + /* listGET_OWNER_OF_NEXT_ENTRY indexes through the list, so the tasks of \ + the same priority get an equal share of the processor time. */ \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + uxTopReadyPriority = uxTopPriority; \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK */ + + /*-----------------------------------------------------------*/ + + /* Define away taskRESET_READY_PRIORITY() and portRESET_READY_PRIORITY() as + they are only required when a port optimised method of task selection is + being used. */ + #define taskRESET_READY_PRIORITY( uxPriority ) + #define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + +#else /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + + /* If configUSE_PORT_OPTIMISED_TASK_SELECTION is 1 then task selection is + performed in a way that is tailored to the particular microcontroller + architecture being used. */ + + /* A port optimised version is provided. Call the port defined macros. */ + #define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority ) + + /*-----------------------------------------------------------*/ + + #define taskSELECT_HIGHEST_PRIORITY_TASK() \ + { \ + UBaseType_t uxTopPriority; \ + \ + /* Find the highest priority list that contains ready tasks. */ \ + portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \ + configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \ + listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \ + } /* taskSELECT_HIGHEST_PRIORITY_TASK() */ + + /*-----------------------------------------------------------*/ + + /* A port optimised version is provided, call it only if the TCB being reset + is being referenced from a ready list. If it is referenced from a delayed + or suspended list then it won't be in a ready list. */ + #define taskRESET_READY_PRIORITY( uxPriority ) \ + { \ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \ + { \ + portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \ + } \ + } + +#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */ + +/*-----------------------------------------------------------*/ + +/* pxDelayedTaskList and pxOverflowDelayedTaskList are switched when the tick +count overflows. */ +#define taskSWITCH_DELAYED_LISTS() \ +{ \ + List_t *pxTemp; \ + \ + /* The delayed tasks list should be empty when the lists are switched. */ \ + configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \ + \ + pxTemp = pxDelayedTaskList; \ + pxDelayedTaskList = pxOverflowDelayedTaskList; \ + pxOverflowDelayedTaskList = pxTemp; \ + xNumOfOverflows++; \ + prvResetNextTaskUnblockTime(); \ +} + +/*-----------------------------------------------------------*/ + +/* + * Place the task represented by pxTCB into the appropriate ready list for + * the task. It is inserted at the end of the list. + */ +#define prvAddTaskToReadyList( pxTCB ) \ + traceMOVED_TASK_TO_READY_STATE( pxTCB ); \ + taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \ + vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \ + tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB ) +/*-----------------------------------------------------------*/ + +/* + * Several functions take an TaskHandle_t parameter that can optionally be NULL, + * where NULL is used to indicate that the handle of the currently executing + * task should be used in place of the parameter. This macro simply checks to + * see if the parameter is NULL and returns a pointer to the appropriate TCB. + */ +#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle ) ) + +/* The item value of the event list item is normally used to hold the priority +of the task to which it belongs (coded to allow it to be held in reverse +priority order). However, it is occasionally borrowed for other purposes. It +is important its value is not updated due to a task priority change while it is +being used for another purpose. The following bit definition is used to inform +the scheduler that the value should not be changed - in which case it is the +responsibility of whichever module is using the value to ensure it gets set back +to its original value when it is released. */ +#if( configUSE_16_BIT_TICKS == 1 ) + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U +#else + #define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL +#endif + +/* + * Task control block. A task control block (TCB) is allocated for each task, + * and stores task state information, including a pointer to the task's context + * (the task's run time environment, including register values) + */ +typedef struct tskTaskControlBlock /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + volatile StackType_t *pxTopOfStack; /*< Points to the location of the last item placed on the tasks stack. THIS MUST BE THE FIRST MEMBER OF THE TCB STRUCT. */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + xMPU_SETTINGS xMPUSettings; /*< The MPU settings are defined as part of the port layer. THIS MUST BE THE SECOND MEMBER OF THE TCB STRUCT. */ + #endif + + ListItem_t xStateListItem; /*< The list that the state list item of a task is reference from denotes the state of that task (Ready, Blocked, Suspended ). */ + ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ + UBaseType_t uxPriority; /*< The priority of the task. 0 is the lowest priority. */ + StackType_t *pxStack; /*< Points to the start of the stack. */ + char pcTaskName[ configMAX_TASK_NAME_LEN ];/*< Descriptive name given to the task when created. Facilitates debugging only. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + + #if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) ) + StackType_t *pxEndOfStack; /*< Points to the highest valid address for the stack. */ + #endif + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + UBaseType_t uxCriticalNesting; /*< Holds the critical section nesting depth for ports that do not maintain their own count in the port layer. */ + #endif + + #if ( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTCBNumber; /*< Stores a number that increments each time a TCB is created. It allows debuggers to determine when a task has been deleted and then recreated. */ + UBaseType_t uxTaskNumber; /*< Stores a number specifically for use by third party trace code. */ + #endif + + #if ( configUSE_MUTEXES == 1 ) + UBaseType_t uxBasePriority; /*< The priority last assigned to the task - used by the priority inheritance mechanism. */ + UBaseType_t uxMutexesHeld; + #endif + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + TaskHookFunction_t pxTaskTag; + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 ) + void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ]; + #endif + + #if( configGENERATE_RUN_TIME_STATS == 1 ) + uint32_t ulRunTimeCounter; /*< Stores the amount of time the task has spent in the Running state. */ + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + /* Allocate a Newlib reent structure that is specific to this task. + Note Newlib support has been included by popular demand, but is not + used by the FreeRTOS maintainers themselves. FreeRTOS is not + responsible for resulting newlib operation. User must be familiar with + newlib and must provide system-wide implementations of the necessary + stubs. Be warned that (at the time of writing) the current newlib design + implements a system-wide malloc() that must be provided with locks. + + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + struct _reent xNewLib_reent; + #endif + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + volatile uint32_t ulNotifiedValue; + volatile uint8_t ucNotifyState; + #endif + + /* See the comments in FreeRTOS.h with the definition of + tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE. */ + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically allocated to ensure no attempt is made to free the memory. */ + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + uint8_t ucDelayAborted; + #endif + + #if( configUSE_POSIX_ERRNO == 1 ) + int iTaskErrno; + #endif + +} tskTCB; + +/* The old tskTCB name is maintained above then typedefed to the new TCB_t name +below to enable the use of older kernel aware debuggers. */ +typedef tskTCB TCB_t; + +/*lint -save -e956 A manual analysis and inspection has been used to determine +which static variables must be declared volatile. */ +PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; + +/* Lists for ready and blocked tasks. -------------------- +xDelayedTaskList1 and xDelayedTaskList2 could be move to function scople but +doing so breaks some kernel aware debuggers and debuggers that rely on removing +the static qualifier. */ +PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ +PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lists are used - one for delays that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed task list currently being used. */ +PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed task list currently being used to hold tasks that have overflowed the current tick count. */ +PRIVILEGED_DATA static List_t xPendingReadyList; /*< Tasks that have been readied while the scheduler was suspended. They will be moved to the ready list when the scheduler is resumed. */ + +#if( INCLUDE_vTaskDelete == 1 ) + + PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but their memory not yet freed. */ + PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U; + +#endif + +#if ( INCLUDE_vTaskSuspend == 1 ) + + PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ + +#endif + +/* Global POSIX errno. Its value is changed upon context switching to match +the errno of the currently running task. */ +#if ( configUSE_POSIX_ERRNO == 1 ) + int FreeRTOS_errno = 0; +#endif + +/* Other file private variables. --------------------------------*/ +PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; +PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY; +PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE; +PRIVILEGED_DATA static volatile TickType_t xPendedTicks = ( TickType_t ) 0U; +PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE; +PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0; +PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U; +PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U; /* Initialised to portMAX_DELAY before the scheduler starts. */ +PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL; /*< Holds the handle of the idle task. The idle task is created automatically when the scheduler is started. */ + +/* Context switches are held pending while the scheduler is suspended. Also, +interrupts must not manipulate the xStateListItem of a TCB, or any of the +lists the xStateListItem can be referenced from, if the scheduler is suspended. +If an interrupt needs to unblock a task while the scheduler is suspended then it +moves the task's event list item into the xPendingReadyList, ready for the +kernel to move the task from the pending ready list into the real ready list +when the scheduler is unsuspended. The pending ready list itself can only be +accessed from a critical section. */ +PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE; + +#if ( configGENERATE_RUN_TIME_STATS == 1 ) + + /* Do not move these variables to function scope as doing so prevents the + code working with debuggers that need to remove the static qualifier. */ + PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL; /*< Holds the value of a timer/counter the last time a task was switched in. */ + PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL; /*< Holds the total amount of execution time as defined by the run time counter clock. */ + +#endif + +/*lint -restore */ + +/*-----------------------------------------------------------*/ + +/* Callback function prototypes. --------------------------*/ +#if( configCHECK_FOR_STACK_OVERFLOW > 0 ) + + extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ); + +#endif + +#if( configUSE_TICK_HOOK > 0 ) + + extern void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */ + +#endif + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */ + +#endif + +/* File private functions. --------------------------------*/ + +/** + * Utility task that simply returns pdTRUE if the task referenced by xTask is + * currently in the Suspended state, or pdFALSE if the task referenced by xTask + * is in any other state. + */ +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION; + +#endif /* INCLUDE_vTaskSuspend */ + +/* + * Utility to ready all the lists used by the scheduler. This is called + * automatically upon the creation of the first task. + */ +static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION; + +/* + * The idle task, which as all tasks is implemented as a never ending loop. + * The idle task is automatically created and added to the ready lists upon + * creation of the first user task. + * + * The portTASK_FUNCTION_PROTO() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters ); + +/* + * Utility to free all memory allocated by the scheduler to hold a TCB, + * including the stack pointed to by the TCB. + * + * This does not free memory allocated by the task itself (i.e. memory + * allocated by calls to pvPortMalloc from within the tasks application code). + */ +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Used only by the idle task. This checks to see if anything has been placed + * in the list of tasks waiting to be deleted. If so the task is cleaned up + * and its TCB deleted. + */ +static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION; + +/* + * The currently executing task is entering the Blocked state. Add the task to + * either the current or the overflow delayed task list. + */ +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION; + +/* + * Fills an TaskStatus_t structure with information on each task that is + * referenced from the pxList list (which may be a ready list, a delayed list, + * a suspended list, etc.). + * + * THIS FUNCTION IS INTENDED FOR DEBUGGING ONLY, AND SHOULD NOT BE CALLED FROM + * NORMAL APPLICATION CODE. + */ +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Searches pxList for a task with name pcNameToQuery - returning a handle to + * the task if it is found, or NULL if the task is not found. + */ +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION; + +#endif + +/* + * When a task is created, the stack of the task is filled with a known value. + * This function determines the 'high water mark' of the task stack by + * determining how much of the stack remains at the original preset value. + */ +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + + static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Return the amount of time, in ticks, that will pass before the kernel will + * next move a task from the Blocked state to the Running state. + * + * This conditional compilation should use inequality to 0, not equality to 1. + * This is to ensure portSUPPRESS_TICKS_AND_SLEEP() can be called when user + * defined low power mode implementations require configUSE_TICKLESS_IDLE to be + * set to a value other than 1. + */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Set xNextTaskUnblockTime to the time at which the next Blocked state task + * will exit the Blocked state. + */ +static void prvResetNextTaskUnblockTime( void ); + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + /* + * Helper function used to pad task names with spaces when printing out + * human readable tables of task information. + */ + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION; + +#endif + +/* + * Called after a Task_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION; + +/* + * Called after a new task has been created and initialised to place the task + * under the control of the scheduler. + */ +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION; + +/* + * freertos_tasks_c_additions_init() should only be called if the user definable + * macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is the only macro + * called by the function. + */ +#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + + static void freertos_tasks_c_additions_init( void ) PRIVILEGED_FUNCTION; + +#endif + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + StackType_t * const puxStackBuffer, + StaticTask_t * const pxTaskBuffer ) + { + TCB_t *pxNewTCB; + TaskHandle_t xReturn; + + configASSERT( puxStackBuffer != NULL ); + configASSERT( pxTaskBuffer != NULL ); + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticTask_t equals the size of the real task + structure. */ + volatile size_t xSize = sizeof( StaticTask_t ); + configASSERT( xSize == sizeof( TCB_t ) ); + ( void ) xSize; /* Prevent lint warning when configASSERT() is not used. */ + } + #endif /* configASSERT_DEFINED */ + + + if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) + { + /* The memory used for the task's TCB and stack are passed into this + function - use them. */ + pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ + pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + } + else + { + xReturn = NULL; + } + + return xReturn; + } + +#endif /* SUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) + + BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer != NULL ); + configASSERT( pxTaskDefinition->pxTaskBuffer != NULL ); + + if( ( pxTaskDefinition->puxStackBuffer != NULL ) && ( pxTaskDefinition->pxTaskBuffer != NULL ) ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pxTaskDefinition->pxTaskBuffer; + + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note this + task was created statically in case the task is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + + return xReturn; + } + +#endif /* ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) */ +/*-----------------------------------------------------------*/ + +#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + + configASSERT( pxTaskDefinition->puxStackBuffer ); + + if( pxTaskDefinition->puxStackBuffer != NULL ) + { + /* Allocate space for the TCB. Where the memory comes from depends + on the implementation of the port malloc function and whether or + not static allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer; + + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) + { + /* Tasks can be created statically or dynamically, so note + this task had a statically allocated stack in case it is + later deleted. The TCB was allocated dynamically. */ + pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskDefinition->pvTaskCode, + pxTaskDefinition->pcName, + ( uint32_t ) pxTaskDefinition->usStackDepth, + pxTaskDefinition->pvParameters, + pxTaskDefinition->uxPriority, + pxCreatedTask, pxNewTCB, + pxTaskDefinition->xRegions ); + + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + } + + return xReturn; + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + BaseType_t xTaskCreate( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const configSTACK_DEPTH_TYPE usStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask ) + { + TCB_t *pxNewTCB; + BaseType_t xReturn; + + /* If the stack grows down then allocate the stack then the TCB so the stack + does not grow into the TCB. Likewise if the stack grows up then allocate + the TCB then the stack. */ + #if( portSTACK_GROWTH > 0 ) + { + /* Allocate space for the TCB. Where the memory comes from depends on + the implementation of the port malloc function and whether or not static + allocation is being used. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); + + if( pxNewTCB != NULL ) + { + /* Allocate space for the stack used by the task being created. + The base of the stack memory stored in the TCB so the task can + be deleted later if required. */ + pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + if( pxNewTCB->pxStack == NULL ) + { + /* Could not allocate the stack. Delete the allocated TCB. */ + vPortFree( pxNewTCB ); + pxNewTCB = NULL; + } + } + } + #else /* portSTACK_GROWTH */ + { + StackType_t *pxStack; + + /* Allocate space for the stack used by the task being created. */ + pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ + + if( pxStack != NULL ) + { + /* Allocate space for the TCB. */ + pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ + + if( pxNewTCB != NULL ) + { + /* Store the stack location in the TCB. */ + pxNewTCB->pxStack = pxStack; + } + else + { + /* The stack cannot be used as the TCB was not created. Free + it again. */ + vPortFree( pxStack ); + } + } + else + { + pxNewTCB = NULL; + } + } + #endif /* portSTACK_GROWTH */ + + if( pxNewTCB != NULL ) + { + #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e9029 !e731 Macro has been consolidated for readability reasons. */ + { + /* Tasks can be created statically or dynamically, so note this + task was created dynamically in case it is later deleted. */ + pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; + } + #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ + + prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); + prvAddNewTaskToReadyList( pxNewTCB ); + xReturn = pdPASS; + } + else + { + xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; + } + + return xReturn; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTask( TaskFunction_t pxTaskCode, + const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const uint32_t ulStackDepth, + void * const pvParameters, + UBaseType_t uxPriority, + TaskHandle_t * const pxCreatedTask, + TCB_t *pxNewTCB, + const MemoryRegion_t * const xRegions ) +{ +StackType_t *pxTopOfStack; +UBaseType_t x; + + #if( portUSING_MPU_WRAPPERS == 1 ) + /* Should the task be created in privileged mode? */ + BaseType_t xRunPrivileged; + if( ( uxPriority & portPRIVILEGE_BIT ) != 0U ) + { + xRunPrivileged = pdTRUE; + } + else + { + xRunPrivileged = pdFALSE; + } + uxPriority &= ~portPRIVILEGE_BIT; + #endif /* portUSING_MPU_WRAPPERS == 1 */ + + /* Avoid dependency on memset() if it is not required. */ + #if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 ) + { + /* Fill the stack with a known value to assist debugging. */ + ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); + } + #endif /* tskSET_NEW_STACKS_TO_KNOWN_VALUE */ + + /* Calculate the top of stack address. This depends on whether the stack + grows from high memory to low (as per the 80x86) or vice versa. + portSTACK_GROWTH is used to make the result positive or negative as required + by the port. */ + #if( portSTACK_GROWTH < 0 ) + { + pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); + pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 !e9033 !e9078 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. Checked by assert(). */ + + /* Check the alignment of the calculated top of stack is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + #if( configRECORD_STACK_HIGH_ADDRESS == 1 ) + { + /* Also record the stack's high address, which may assist + debugging. */ + pxNewTCB->pxEndOfStack = pxTopOfStack; + } + #endif /* configRECORD_STACK_HIGH_ADDRESS */ + } + #else /* portSTACK_GROWTH */ + { + pxTopOfStack = pxNewTCB->pxStack; + + /* Check the alignment of the stack buffer is correct. */ + configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); + + /* The other extreme of the stack space is required if stack checking is + performed. */ + pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); + } + #endif /* portSTACK_GROWTH */ + + /* Store the task name in the TCB. */ + if( pcName != NULL ) + { + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + pxNewTCB->pcTaskName[ x ] = pcName[ x ]; + + /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than + configMAX_TASK_NAME_LEN characters just in case the memory after the + string is not accessible (extremely unlikely). */ + if( pcName[ x ] == ( char ) 0x00 ) + { + break; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Ensure the name string is terminated in the case that the string length + was greater or equal to configMAX_TASK_NAME_LEN. */ + pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; + } + else + { + /* The task has not been given a name, so just ensure there is a NULL + terminator when it is read out. */ + pxNewTCB->pcTaskName[ 0 ] = 0x00; + } + + /* This is used as an array index so must ensure it's not too large. First + remove the privilege bit if one is present. */ + if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxNewTCB->uxPriority = uxPriority; + #if ( configUSE_MUTEXES == 1 ) + { + pxNewTCB->uxBasePriority = uxPriority; + pxNewTCB->uxMutexesHeld = 0; + } + #endif /* configUSE_MUTEXES */ + + vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); + vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); + + /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get + back to the containing TCB from a generic item in a list. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); + + /* Event lists are always in priority order. */ + listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); + + #if ( portCRITICAL_NESTING_IN_TCB == 1 ) + { + pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U; + } + #endif /* portCRITICAL_NESTING_IN_TCB */ + + #if ( configUSE_APPLICATION_TASK_TAG == 1 ) + { + pxNewTCB->pxTaskTag = NULL; + } + #endif /* configUSE_APPLICATION_TASK_TAG */ + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxNewTCB->ulRunTimeCounter = 0UL; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + #if ( portUSING_MPU_WRAPPERS == 1 ) + { + vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth ); + } + #else + { + /* Avoid compiler warning about unreferenced parameter. */ + ( void ) xRegions; + } + #endif + + #if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + { + for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ ) + { + pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL; + } + } + #endif + + #if ( configUSE_TASK_NOTIFICATIONS == 1 ) + { + pxNewTCB->ulNotifiedValue = 0; + pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Initialise this task's Newlib reent structure. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); + } + #endif + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + pxNewTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Initialize the TCB stack to look as if the task was already running, + but had been interrupted by the scheduler. The return address is set + to the start of the task function. Once the stack has been initialised + the top of stack variable is updated. */ + #if( portUSING_MPU_WRAPPERS == 1 ) + { + /* If the port has capability to detect stack overflow, + pass the stack end address to the stack initialization + function as well. */ + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + { + #if( portSTACK_GROWTH < 0 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #else /* portSTACK_GROWTH */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #endif /* portSTACK_GROWTH */ + } + #else /* portHAS_STACK_OVERFLOW_CHECKING */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged ); + } + #endif /* portHAS_STACK_OVERFLOW_CHECKING */ + } + #else /* portUSING_MPU_WRAPPERS */ + { + /* If the port has capability to detect stack overflow, + pass the stack end address to the stack initialization + function as well. */ + #if( portHAS_STACK_OVERFLOW_CHECKING == 1 ) + { + #if( portSTACK_GROWTH < 0 ) + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters ); + } + #else /* portSTACK_GROWTH */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters ); + } + #endif /* portSTACK_GROWTH */ + } + #else /* portHAS_STACK_OVERFLOW_CHECKING */ + { + pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); + } + #endif /* portHAS_STACK_OVERFLOW_CHECKING */ + } + #endif /* portUSING_MPU_WRAPPERS */ + + if( pxCreatedTask != NULL ) + { + /* Pass the handle out in an anonymous way. The handle can be used to + change the created task's priority, delete the created task, etc.*/ + *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) +{ + /* Ensure interrupts don't access the task lists while the lists are being + updated. */ + taskENTER_CRITICAL(); + { + uxCurrentNumberOfTasks++; + if( pxCurrentTCB == NULL ) + { + /* There are no other tasks, or all the other tasks are in + the suspended state - make this the current task. */ + pxCurrentTCB = pxNewTCB; + + if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) + { + /* This is the first task to be created so do the preliminary + initialisation required. We will not recover if this call + fails, but we will report the failure. */ + prvInitialiseTaskLists(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* If the scheduler is not already running, make this task the + current task if it is the highest priority task to be created + so far. */ + if( xSchedulerRunning == pdFALSE ) + { + if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) + { + pxCurrentTCB = pxNewTCB; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + uxTaskNumber++; + + #if ( configUSE_TRACE_FACILITY == 1 ) + { + /* Add a counter into the TCB for tracing only. */ + pxNewTCB->uxTCBNumber = uxTaskNumber; + } + #endif /* configUSE_TRACE_FACILITY */ + traceTASK_CREATE( pxNewTCB ); + + prvAddTaskToReadyList( pxNewTCB ); + + portSETUP_TCB( pxNewTCB ); + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* If the created task is of a higher priority than the current task + then it should run now. */ + if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + void vTaskDelete( TaskHandle_t xTaskToDelete ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the calling task that is + being deleted. */ + pxTCB = prvGetTCBFromHandle( xTaskToDelete ); + + /* Remove task from the ready/delayed list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Increment the uxTaskNumber also so kernel aware debuggers can + detect that the task lists need re-generating. This is done before + portPRE_TASK_DELETE_HOOK() as in the Windows port that macro will + not return. */ + uxTaskNumber++; + + if( pxTCB == pxCurrentTCB ) + { + /* A task is deleting itself. This cannot complete within the + task itself, as a context switch to another task is required. + Place the task in the termination list. The idle task will + check the termination list and free up any memory allocated by + the scheduler for the TCB and stack of the deleted task. */ + vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); + + /* Increment the ucTasksDeleted variable so the idle task knows + there is a task that has been deleted and that it should therefore + check the xTasksWaitingTermination list. */ + ++uxDeletedTasksWaitingCleanUp; + + /* Call the delete hook before portPRE_TASK_DELETE_HOOK() as + portPRE_TASK_DELETE_HOOK() does not return in the Win32 port. */ + traceTASK_DELETE( pxTCB ); + + /* The pre-delete hook is primarily for the Windows simulator, + in which Windows specific clean up operations are performed, + after which it is not possible to yield away from this task - + hence xYieldPending is used to latch that a context switch is + required. */ + portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending ); + } + else + { + --uxCurrentNumberOfTasks; + traceTASK_DELETE( pxTCB ); + prvDeleteTCB( pxTCB ); + + /* Reset the next expected unblock time in case it referred to + the task that has just been deleted. */ + prvResetNextTaskUnblockTime(); + } + } + taskEXIT_CRITICAL(); + + /* Force a reschedule if it is the currently running task that has just + been deleted. */ + if( xSchedulerRunning != pdFALSE ) + { + if( pxTCB == pxCurrentTCB ) + { + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelayUntil == 1 ) + + void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement ) + { + TickType_t xTimeToWake; + BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE; + + configASSERT( pxPreviousWakeTime ); + configASSERT( ( xTimeIncrement > 0U ) ); + configASSERT( uxSchedulerSuspended == 0 ); + + vTaskSuspendAll(); + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount; + + /* Generate the tick time at which the task wants to wake. */ + xTimeToWake = *pxPreviousWakeTime + xTimeIncrement; + + if( xConstTickCount < *pxPreviousWakeTime ) + { + /* The tick count has overflowed since this function was + lasted called. In this case the only time we should ever + actually delay is if the wake time has also overflowed, + and the wake time is greater than the tick time. When this + is the case it is as if neither time had overflowed. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The tick time has not overflowed. In this case we will + delay if either the wake time has overflowed, and/or the + tick time is less than the wake time. */ + if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) ) + { + xShouldDelay = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Update the wake time ready for the next call. */ + *pxPreviousWakeTime = xTimeToWake; + + if( xShouldDelay != pdFALSE ) + { + traceTASK_DELAY_UNTIL( xTimeToWake ); + + /* prvAddCurrentTaskToDelayedList() needs the block time, not + the time to wake, so subtract the current tick count. */ + prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + xAlreadyYielded = xTaskResumeAll(); + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelayUntil */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelay == 1 ) + + void vTaskDelay( const TickType_t xTicksToDelay ) + { + BaseType_t xAlreadyYielded = pdFALSE; + + /* A delay time of zero just forces a reschedule. */ + if( xTicksToDelay > ( TickType_t ) 0U ) + { + configASSERT( uxSchedulerSuspended == 0 ); + vTaskSuspendAll(); + { + traceTASK_DELAY(); + + /* A task that is removed from the event list while the + scheduler is suspended will not get placed in the ready + list or removed from the blocked list until the scheduler + is resumed. + + This task cannot be in an event list as it is the currently + executing task. */ + prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); + } + xAlreadyYielded = xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Force a reschedule if xTaskResumeAll has not already done so, we may + have put ourselves to sleep. */ + if( xAlreadyYielded == pdFALSE ) + { + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskDelay */ +/*-----------------------------------------------------------*/ + +#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_xTaskAbortDelay == 1 ) ) + + eTaskState eTaskGetState( TaskHandle_t xTask ) + { + eTaskState eReturn; + List_t const * pxStateList, *pxDelayedList, *pxOverflowedDelayedList; + const TCB_t * const pxTCB = xTask; + + configASSERT( pxTCB ); + + if( pxTCB == pxCurrentTCB ) + { + /* The task calling this function is querying its own state. */ + eReturn = eRunning; + } + else + { + taskENTER_CRITICAL(); + { + pxStateList = listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); + pxDelayedList = pxDelayedTaskList; + pxOverflowedDelayedList = pxOverflowDelayedTaskList; + } + taskEXIT_CRITICAL(); + + if( ( pxStateList == pxDelayedList ) || ( pxStateList == pxOverflowedDelayedList ) ) + { + /* The task being queried is referenced from one of the Blocked + lists. */ + eReturn = eBlocked; + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + else if( pxStateList == &xSuspendedTaskList ) + { + /* The task being queried is referenced from the suspended + list. Is it genuinely suspended or is it blocked + indefinitely? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) + { + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + { + /* The task does not appear on the event list item of + and of the RTOS objects, but could still be in the + blocked state if it is waiting on its notification + rather than waiting on an object. */ + if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + eReturn = eBlocked; + } + else + { + eReturn = eSuspended; + } + } + #else + { + eReturn = eSuspended; + } + #endif + } + else + { + eReturn = eBlocked; + } + } + #endif + + #if ( INCLUDE_vTaskDelete == 1 ) + else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) ) + { + /* The task being queried is referenced from the deleted + tasks list, or it is not referenced from any lists at + all. */ + eReturn = eDeleted; + } + #endif + + else /*lint !e525 Negative indentation is intended to make use of pre-processor clearer. */ + { + /* If the task is not in any other state, it must be in the + Ready (including pending ready) state. */ + eReturn = eReady; + } + } + + return eReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_eTaskGetState */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask ) + { + TCB_t const *pxTCB; + UBaseType_t uxReturn; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the task + that called uxTaskPriorityGet() that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + taskEXIT_CRITICAL(); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskPriorityGet == 1 ) + + UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask ) + { + TCB_t const *pxTCB; + UBaseType_t uxReturn, uxSavedInterruptState; + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR(); + { + /* If null is passed in here then it is the priority of the calling + task that is being queried. */ + pxTCB = prvGetTCBFromHandle( xTask ); + uxReturn = pxTCB->uxPriority; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskPriorityGet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskPrioritySet == 1 ) + + void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority ) + { + TCB_t *pxTCB; + UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry; + BaseType_t xYieldRequired = pdFALSE; + + configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) ); + + /* Ensure the new priority is valid. */ + if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) + { + uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the priority of the calling + task that is being changed. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + traceTASK_PRIORITY_SET( pxTCB, uxNewPriority ); + + #if ( configUSE_MUTEXES == 1 ) + { + uxCurrentBasePriority = pxTCB->uxBasePriority; + } + #else + { + uxCurrentBasePriority = pxTCB->uxPriority; + } + #endif + + if( uxCurrentBasePriority != uxNewPriority ) + { + /* The priority change may have readied a task of higher + priority than the calling task. */ + if( uxNewPriority > uxCurrentBasePriority ) + { + if( pxTCB != pxCurrentTCB ) + { + /* The priority of a task other than the currently + running task is being raised. Is the priority being + raised above that of the running task? */ + if( uxNewPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + /* The priority of the running task is being raised, + but the running task must already be the highest + priority task able to run so no yield is required. */ + } + } + else if( pxTCB == pxCurrentTCB ) + { + /* Setting the priority of the running task down means + there may now be another task of higher priority that + is ready to execute. */ + xYieldRequired = pdTRUE; + } + else + { + /* Setting the priority of any other task down does not + require a yield as the running task must be above the + new priority of the task being modified. */ + } + + /* Remember the ready list the task might be referenced from + before its uxPriority member is changed so the + taskRESET_READY_PRIORITY() macro can function correctly. */ + uxPriorityUsedOnEntry = pxTCB->uxPriority; + + #if ( configUSE_MUTEXES == 1 ) + { + /* Only change the priority being used if the task is not + currently using an inherited priority. */ + if( pxTCB->uxBasePriority == pxTCB->uxPriority ) + { + pxTCB->uxPriority = uxNewPriority; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* The base priority gets set whatever. */ + pxTCB->uxBasePriority = uxNewPriority; + } + #else + { + pxTCB->uxPriority = uxNewPriority; + } + #endif + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task is in the blocked or suspended list we need do + nothing more than change its priority variable. However, if + the task is in a ready list it needs to be removed and placed + in the list appropriate to its new priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* The task is currently in its ready list - remove before + adding it to it's new ready list. As we are in a critical + section we can do this even if the scheduler is suspended. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xYieldRequired != pdFALSE ) + { + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Remove compiler warning about unused variables when the port + optimised task selection is not being used. */ + ( void ) uxPriorityUsedOnEntry; + } + } + taskEXIT_CRITICAL(); + } + +#endif /* INCLUDE_vTaskPrioritySet */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskSuspend( TaskHandle_t xTaskToSuspend ) + { + TCB_t *pxTCB; + + taskENTER_CRITICAL(); + { + /* If null is passed in here then it is the running task that is + being suspended. */ + pxTCB = prvGetTCBFromHandle( xTaskToSuspend ); + + traceTASK_SUSPEND( pxTCB ); + + /* Remove task from the ready/delayed list and place in the + suspended list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Is the task waiting on an event also? */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ); + + #if( configUSE_TASK_NOTIFICATIONS == 1 ) + { + if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task was blocked to wait for a notification, but is + now suspended, so no notification was received. */ + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + } + #endif + } + taskEXIT_CRITICAL(); + + if( xSchedulerRunning != pdFALSE ) + { + /* Reset the next expected unblock time in case it referred to the + task that is now in the Suspended state. */ + taskENTER_CRITICAL(); + { + prvResetNextTaskUnblockTime(); + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( pxTCB == pxCurrentTCB ) + { + if( xSchedulerRunning != pdFALSE ) + { + /* The current task has just been suspended. */ + configASSERT( uxSchedulerSuspended == 0 ); + portYIELD_WITHIN_API(); + } + else + { + /* The scheduler is not running, but the task that was pointed + to by pxCurrentTCB has just been suspended and pxCurrentTCB + must be adjusted to point to a different task. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks ) /*lint !e931 Right has no side effect, just volatile. */ + { + /* No other tasks are ready, so set pxCurrentTCB back to + NULL so when the next task is created pxCurrentTCB will + be set to point to it no matter what its relative priority + is. */ + pxCurrentTCB = NULL; + } + else + { + vTaskSwitchContext(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) + { + BaseType_t xReturn = pdFALSE; + const TCB_t * const pxTCB = xTask; + + /* Accesses xPendingReadyList so must be called from a critical + section. */ + + /* It does not make sense to check if the calling task is suspended. */ + configASSERT( xTask ); + + /* Is the task being resumed actually in the suspended list? */ + if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + /* Has the task already been resumed from within an ISR? */ + if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE ) + { + /* Is it in the suspended list because it is in the Suspended + state, or because is is blocked with no timeout? */ + if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE ) /*lint !e961. The cast is only redundant when NULL is used. */ + { + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } /*lint !e818 xTask cannot be a pointer to const because it is a typedef. */ + +#endif /* INCLUDE_vTaskSuspend */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskSuspend == 1 ) + + void vTaskResume( TaskHandle_t xTaskToResume ) + { + TCB_t * const pxTCB = xTaskToResume; + + /* It does not make sense to resume the calling task. */ + configASSERT( xTaskToResume ); + + /* The parameter cannot be NULL as it is impossible to resume the + currently executing task. */ + if( ( pxTCB != pxCurrentTCB ) && ( pxTCB != NULL ) ) + { + taskENTER_CRITICAL(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME( pxTCB ); + + /* The ready list can be accessed even if the scheduler is + suspended because this is inside a critical section. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* A higher priority task may have just been resumed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + /* This yield may not cause the task just resumed to run, + but will leave the lists in the correct state for the + next yield. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* INCLUDE_vTaskSuspend */ + +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) + + BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume ) + { + BaseType_t xYieldRequired = pdFALSE; + TCB_t * const pxTCB = xTaskToResume; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToResume ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE ) + { + traceTASK_RESUME_FROM_ISR( pxTCB ); + + /* Check the ready lists can be accessed. */ + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Ready lists can be accessed so move the task from the + suspended list to the ready list directly. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed or ready lists cannot be accessed so the task + is held in the pending ready list until the scheduler is + unsuspended. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xYieldRequired; + } + +#endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ +/*-----------------------------------------------------------*/ + +void vTaskStartScheduler( void ) +{ +BaseType_t xReturn; + + /* Add the idle task at the lowest priority. */ + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxIdleTaskTCBBuffer = NULL; + StackType_t *pxIdleTaskStackBuffer = NULL; + uint32_t ulIdleTaskStackSize; + + /* The Idle task is created using user provided RAM - obtain the + address of the RAM then create the idle task. */ + vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); + xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, + configIDLE_TASK_NAME, + ulIdleTaskStackSize, + ( void * ) NULL, /*lint !e961. The cast is not redundant for all compilers. */ + portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ + pxIdleTaskStackBuffer, + pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + + if( xIdleTaskHandle != NULL ) + { + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + #else + { + /* The Idle task is being created using dynamically allocated RAM. */ + xReturn = xTaskCreate( prvIdleTask, + configIDLE_TASK_NAME, + configMINIMAL_STACK_SIZE, + ( void * ) NULL, + portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ + &xIdleTaskHandle ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + + #if ( configUSE_TIMERS == 1 ) + { + if( xReturn == pdPASS ) + { + xReturn = xTimerCreateTimerTask(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TIMERS */ + + if( xReturn == pdPASS ) + { + /* freertos_tasks_c_additions_init() should only be called if the user + definable macro FREERTOS_TASKS_C_ADDITIONS_INIT() is defined, as that is + the only macro called by the function. */ + #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + { + freertos_tasks_c_additions_init(); + } + #endif + + /* Interrupts are turned off here, to ensure a tick does not occur + before or during the call to xPortStartScheduler(). The stacks of + the created tasks contain a status word with interrupts switched on + so interrupts will automatically get re-enabled when the first task + starts to run. */ + portDISABLE_INTERRUPTS(); + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to the task that will run first. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + xNextTaskUnblockTime = portMAX_DELAY; + xSchedulerRunning = pdTRUE; + xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; + + /* If configGENERATE_RUN_TIME_STATS is defined then the following + macro must be defined to configure the timer/counter used to generate + the run time counter time base. NOTE: If configGENERATE_RUN_TIME_STATS + is set to 0 and the following line fails to build then ensure you do not + have portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() defined in your + FreeRTOSConfig.h file. */ + portCONFIGURE_TIMER_FOR_RUN_TIME_STATS(); + + traceTASK_SWITCHED_IN(); + + /* Setting up the timer tick is hardware specific and thus in the + portable interface. */ + if( xPortStartScheduler() != pdFALSE ) + { + /* Should not reach here as if the scheduler is running the + function will not return. */ + } + else + { + /* Should only reach here if a task calls xTaskEndScheduler(). */ + } + } + else + { + /* This line will only be reached if the kernel could not be started, + because there was not enough FreeRTOS heap to create the idle task + or the timer task. */ + configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); + } + + /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, + meaning xIdleTaskHandle is not used anywhere else. */ + ( void ) xIdleTaskHandle; +} +/*-----------------------------------------------------------*/ + +void vTaskEndScheduler( void ) +{ + /* Stop the scheduler interrupts and call the portable scheduler end + routine so the original ISRs can be restored if necessary. The port + layer must ensure interrupts enable bit is left in the correct state. */ + portDISABLE_INTERRUPTS(); + xSchedulerRunning = pdFALSE; + vPortEndScheduler(); +} +/*----------------------------------------------------------*/ + +void vTaskSuspendAll( void ) +{ + /* A critical section is not required as the variable is of type + BaseType_t. Please read Richard Barry's reply in the following link to a + post in the FreeRTOS support forum before reporting this as a bug! - + http://goo.gl/wu4acr */ + + /* portSOFRWARE_BARRIER() is only implemented for emulated/simulated ports that + do not otherwise exhibit real time behaviour. */ + portSOFTWARE_BARRIER(); + + /* The scheduler is suspended if uxSchedulerSuspended is non-zero. An increment + is used to allow calls to vTaskSuspendAll() to nest. */ + ++uxSchedulerSuspended; + + /* Enforces ordering for ports and optimised compilers that may otherwise place + the above increment elsewhere. */ + portMEMORY_BARRIER(); +} +/*----------------------------------------------------------*/ + +#if ( configUSE_TICKLESS_IDLE != 0 ) + + static TickType_t prvGetExpectedIdleTime( void ) + { + TickType_t xReturn; + UBaseType_t uxHigherPriorityReadyTasks = pdFALSE; + + /* uxHigherPriorityReadyTasks takes care of the case where + configUSE_PREEMPTION is 0, so there may be tasks above the idle priority + task that are in the Ready state, even though the idle task is + running. */ + #if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 ) + { + if( uxTopReadyPriority > tskIDLE_PRIORITY ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #else + { + const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01; + + /* When port optimised task selection is used the uxTopReadyPriority + variable is used as a bit map. If bits other than the least + significant bit are set then there are tasks that have a priority + above the idle priority that are in the Ready state. This takes + care of the case where the co-operative scheduler is in use. */ + if( uxTopReadyPriority > uxLeastSignificantBit ) + { + uxHigherPriorityReadyTasks = pdTRUE; + } + } + #endif + + if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY ) + { + xReturn = 0; + } + else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 ) + { + /* There are other idle priority tasks in the ready state. If + time slicing is used then the very next tick interrupt must be + processed. */ + xReturn = 0; + } + else if( uxHigherPriorityReadyTasks != pdFALSE ) + { + /* There are tasks in the Ready state that have a priority above the + idle priority. This path can only be reached if + configUSE_PREEMPTION is 0. */ + xReturn = 0; + } + else + { + xReturn = xNextTaskUnblockTime - xTickCount; + } + + return xReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskResumeAll( void ) +{ +TCB_t *pxTCB = NULL; +BaseType_t xAlreadyYielded = pdFALSE; + + /* If uxSchedulerSuspended is zero then this function does not match a + previous call to vTaskSuspendAll(). */ + configASSERT( uxSchedulerSuspended ); + + /* It is possible that an ISR caused a task to be removed from an event + list while the scheduler was suspended. If this was the case then the + removed task will have been added to the xPendingReadyList. Once the + scheduler has been resumed it is safe to move all the pending ready + tasks from this list into their appropriate ready list. */ + taskENTER_CRITICAL(); + { + --uxSchedulerSuspended; + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) + { + /* Move any readied tasks from the pending list into the + appropriate ready list. */ + while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) + { + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* If the moved task has a priority higher than the current + task then a yield must be performed. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( pxTCB != NULL ) + { + /* A task was unblocked while the scheduler was suspended, + which may have prevented the next unblock time from being + re-calculated, in which case re-calculate it now. Mainly + important for low power tickless implementations, where + this can prevent an unnecessary exit from low power + state. */ + prvResetNextTaskUnblockTime(); + } + + /* If any ticks occurred while the scheduler was suspended then + they should be processed now. This ensures the tick count does + not slip, and that any delayed tasks are resumed at the correct + time. */ + { + TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ + + if( xPendedCounts > ( TickType_t ) 0U ) + { + do + { + if( xTaskIncrementTick() != pdFALSE ) + { + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + --xPendedCounts; + } while( xPendedCounts > ( TickType_t ) 0U ); + + xPendedTicks = 0; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + if( xYieldPending != pdFALSE ) + { + #if( configUSE_PREEMPTION != 0 ) + { + xAlreadyYielded = pdTRUE; + } + #endif + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xAlreadyYielded; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCount( void ) +{ +TickType_t xTicks; + + /* Critical section required if running on a 16 bit processor. */ + portTICK_TYPE_ENTER_CRITICAL(); + { + xTicks = xTickCount; + } + portTICK_TYPE_EXIT_CRITICAL(); + + return xTicks; +} +/*-----------------------------------------------------------*/ + +TickType_t xTaskGetTickCountFromISR( void ) +{ +TickType_t xReturn; +UBaseType_t uxSavedInterruptStatus; + + /* RTOS ports that support interrupt nesting have the concept of a maximum + system call (or maximum API call) interrupt priority. Interrupts that are + above the maximum system call priority are kept permanently enabled, even + when the RTOS kernel is in a critical section, but cannot make any calls to + FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h + then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has been + assigned a priority above the configured maximum system call priority. + Only FreeRTOS functions that end in FromISR can be called from interrupts + that have been assigned a priority at or (logically) below the maximum + system call interrupt priority. FreeRTOS maintains a separate interrupt + safe API to ensure interrupt entry is as fast and as simple as possible. + More information (albeit Cortex-M specific) is provided on the following + link: https://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = xTickCount; + } + portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTaskGetNumberOfTasks( void ) +{ + /* A critical section is not required because the variables are of type + BaseType_t. */ + return uxCurrentNumberOfTasks; +} +/*-----------------------------------------------------------*/ + +char *pcTaskGetName( TaskHandle_t xTaskToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +TCB_t *pxTCB; + + /* If null is passed in here then the name of the calling task is being + queried. */ + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + configASSERT( pxTCB ); + return &( pxTCB->pcTaskName[ 0 ] ); +} +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) + { + TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL; + UBaseType_t x; + char cNextChar; + BaseType_t xBreakLoop; + + /* This function is called with the scheduler suspended. */ + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Check each character in the name looking for a match or + mismatch. */ + xBreakLoop = pdFALSE; + for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) + { + cNextChar = pxNextTCB->pcTaskName[ x ]; + + if( cNextChar != pcNameToQuery[ x ] ) + { + /* Characters didn't match. */ + xBreakLoop = pdTRUE; + } + else if( cNextChar == ( char ) 0x00 ) + { + /* Both strings terminated, a match must have been + found. */ + pxReturn = pxNextTCB; + xBreakLoop = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + if( xBreakLoop != pdFALSE ) + { + break; + } + } + + if( pxReturn != NULL ) + { + /* The handle has been found. */ + break; + } + + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return pxReturn; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetHandle == 1 ) + + TaskHandle_t xTaskGetHandle( const char *pcNameToQuery ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + { + UBaseType_t uxQueue = configMAX_PRIORITIES; + TCB_t* pxTCB; + + /* Task names will be truncated to configMAX_TASK_NAME_LEN - 1 bytes. */ + configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN ); + + vTaskSuspendAll(); + { + /* Search the ready lists. */ + do + { + uxQueue--; + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery ); + + if( pxTCB != NULL ) + { + /* Found the handle. */ + break; + } + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Search the delayed lists. */ + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery ); + } + + if( pxTCB == NULL ) + { + pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery ); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the suspended list. */ + pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery ); + } + } + #endif + + #if( INCLUDE_vTaskDelete == 1 ) + { + if( pxTCB == NULL ) + { + /* Search the deleted list. */ + pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery ); + } + } + #endif + } + ( void ) xTaskResumeAll(); + + return pxTCB; + } + +#endif /* INCLUDE_xTaskGetHandle */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime ) + { + UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES; + + vTaskSuspendAll(); + { + /* Is there a space in the array for each task in the system? */ + if( uxArraySize >= uxCurrentNumberOfTasks ) + { + /* Fill in an TaskStatus_t structure with information on each + task in the Ready state. */ + do + { + uxQueue--; + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady ); + + } while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + /* Fill in an TaskStatus_t structure with information on each + task in the Blocked state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked ); + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked ); + + #if( INCLUDE_vTaskDelete == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task that has been deleted but not yet cleaned up. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted ); + } + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* Fill in an TaskStatus_t structure with information on + each task in the Suspended state. */ + uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended ); + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1) + { + if( pulTotalRunTime != NULL ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) ); + #else + *pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + } + } + #else + { + if( pulTotalRunTime != NULL ) + { + *pulTotalRunTime = 0; + } + } + #endif + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) + + TaskHandle_t xTaskGetIdleTaskHandle( void ) + { + /* If xTaskGetIdleTaskHandle() is called before the scheduler has been + started, then xIdleTaskHandle will be NULL. */ + configASSERT( ( xIdleTaskHandle != NULL ) ); + return xIdleTaskHandle; + } + +#endif /* INCLUDE_xTaskGetIdleTaskHandle */ +/*----------------------------------------------------------*/ + +/* This conditional compilation should use inequality to 0, not equality to 1. +This is to ensure vTaskStepTick() is available when user defined low power mode +implementations require configUSE_TICKLESS_IDLE to be set to a value other than +1. */ +#if ( configUSE_TICKLESS_IDLE != 0 ) + + void vTaskStepTick( const TickType_t xTicksToJump ) + { + /* Correct the tick count value after a period during which the tick + was suppressed. Note this does *not* call the tick hook function for + each stepped tick. */ + configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime ); + xTickCount += xTicksToJump; + traceINCREASE_TICK_COUNT( xTicksToJump ); + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) +{ +BaseType_t xYieldRequired = pdFALSE; + + /* Must not be called with the scheduler suspended as the implementation + relies on xPendedTicks being wound down to 0 in xTaskResumeAll(). */ + configASSERT( uxSchedulerSuspended == 0 ); + + /* Use xPendedTicks to mimic xTicksToCatchUp number of ticks occurring when + the scheduler is suspended so the ticks are executed in xTaskResumeAll(). */ + vTaskSuspendAll(); + xPendedTicks += xTicksToCatchUp; + xYieldRequired = xTaskResumeAll(); + + return xYieldRequired; +} +/*----------------------------------------------------------*/ + +#if ( INCLUDE_xTaskAbortDelay == 1 ) + + BaseType_t xTaskAbortDelay( TaskHandle_t xTask ) + { + TCB_t *pxTCB = xTask; + BaseType_t xReturn; + + configASSERT( pxTCB ); + + vTaskSuspendAll(); + { + /* A task can only be prematurely removed from the Blocked state if + it is actually in the Blocked state. */ + if( eTaskGetState( xTask ) == eBlocked ) + { + xReturn = pdPASS; + + /* Remove the reference to the task from the blocked list. An + interrupt won't touch the xStateListItem because the + scheduler is suspended. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove it from + the event list too. Interrupts can touch the event list item, + even though the scheduler is suspended, so a critical section + is used. */ + taskENTER_CRITICAL(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + + /* This lets the task know it was forcibly removed from the + blocked state so it should not re-evaluate its block time and + then block again. */ + pxTCB->ucDelayAborted = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + /* Place the unblocked task into the appropriate ready list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate context + switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should only be + performed if the unblocked task has a priority that is + equal to or higher than the currently executing task. */ + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Pend the yield to be performed when the scheduler + is unsuspended. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + xReturn = pdFAIL; + } + } + ( void ) xTaskResumeAll(); + + return xReturn; + } + +#endif /* INCLUDE_xTaskAbortDelay */ +/*----------------------------------------------------------*/ + +BaseType_t xTaskIncrementTick( void ) +{ +TCB_t * pxTCB; +TickType_t xItemValue; +BaseType_t xSwitchRequired = pdFALSE; + + /* Called by the portable layer each time a tick interrupt occurs. + Increments the tick then checks to see if the new tick value will cause any + tasks to be unblocked. */ + traceTASK_INCREMENT_TICK( xTickCount ); + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + /* Minor optimisation. The tick count cannot change in this + block. */ + const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; + + /* Increment the RTOS tick, switching the delayed and overflowed + delayed lists if it wraps to 0. */ + xTickCount = xConstTickCount; + + if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ + { + taskSWITCH_DELAYED_LISTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* See if this tick has made a timeout expire. Tasks are stored in + the queue in the order of their wake time - meaning once one task + has been found whose block time has not expired there is no need to + look any further down the list. */ + if( xConstTickCount >= xNextTaskUnblockTime ) + { + for( ;; ) + { + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The delayed list is empty. Set xNextTaskUnblockTime + to the maximum possible value so it is extremely + unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass + next time through. */ + xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + break; + } + else + { + /* The delayed list is not empty, get the value of the + item at the head of the delayed list. This is the time + at which the task at the head of the delayed list must + be removed from the Blocked state. */ + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); + + if( xConstTickCount < xItemValue ) + { + /* It is not time to unblock this item yet, but the + item value is the time at which the task at the head + of the blocked list must be removed from the Blocked + state - so record the item value in + xNextTaskUnblockTime. */ + xNextTaskUnblockTime = xItemValue; + break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* It is time to remove the item from the Blocked state. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + + /* Is the task waiting on an event also? If so remove + it from the event list. */ + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Place the unblocked task into the appropriate ready + list. */ + prvAddTaskToReadyList( pxTCB ); + + /* A task being unblocked cannot cause an immediate + context switch if preemption is turned off. */ + #if ( configUSE_PREEMPTION == 1 ) + { + /* Preemption is on, but a context switch should + only be performed if the unblocked task has a + priority that is equal to or higher than the + currently executing task. */ + if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + } + } + + /* Tasks of equal priority to the currently running task will share + processing time (time slice) if preemption is on, and the application + writer has not explicitly turned time slicing off. */ + #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) + { + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) */ + + #if ( configUSE_TICK_HOOK == 1 ) + { + /* Guard against the tick hook being called when the pended tick + count is being unwound (when the scheduler is being unlocked). */ + if( xPendedTicks == ( TickType_t ) 0 ) + { + vApplicationTickHook(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICK_HOOK */ + + #if ( configUSE_PREEMPTION == 1 ) + { + if( xYieldPending != pdFALSE ) + { + xSwitchRequired = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_PREEMPTION */ + } + else + { + ++xPendedTicks; + + /* The tick hook gets called at regular intervals, even if the + scheduler is locked. */ + #if ( configUSE_TICK_HOOK == 1 ) + { + vApplicationTickHook(); + } + #endif + } + + return xSwitchRequired; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction ) + { + TCB_t *xTCB; + + /* If xTask is NULL then it is the task hook of the calling task that is + getting set. */ + if( xTask == NULL ) + { + xTCB = ( TCB_t * ) pxCurrentTCB; + } + else + { + xTCB = xTask; + } + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xTCB->pxTaskTag = pxHookFunction; + } + taskEXIT_CRITICAL(); + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + TaskHookFunction_t xReturn; + + /* If xTask is NULL then set the calling task's hook. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + taskENTER_CRITICAL(); + { + xReturn = pxTCB->pxTaskTag; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + TaskHookFunction_t xReturn; + UBaseType_t uxSavedInterruptStatus; + + /* If xTask is NULL then set the calling task's hook. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + /* Save the hook function in the TCB. A critical section is required as + the value can be accessed from an interrupt. */ + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + xReturn = pxTCB->pxTaskTag; + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_APPLICATION_TASK_TAG == 1 ) + + BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter ) + { + TCB_t *xTCB; + BaseType_t xReturn; + + /* If xTask is NULL then we are calling our own task hook. */ + if( xTask == NULL ) + { + xTCB = pxCurrentTCB; + } + else + { + xTCB = xTask; + } + + if( xTCB->pxTaskTag != NULL ) + { + xReturn = xTCB->pxTaskTag( pvParameter ); + } + else + { + xReturn = pdFAIL; + } + + return xReturn; + } + +#endif /* configUSE_APPLICATION_TASK_TAG */ +/*-----------------------------------------------------------*/ + +void vTaskSwitchContext( void ) +{ + if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) + { + /* The scheduler is currently suspended - do not allow a context + switch. */ + xYieldPending = pdTRUE; + } + else + { + xYieldPending = pdFALSE; + traceTASK_SWITCHED_OUT(); + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + #ifdef portALT_GET_RUN_TIME_COUNTER_VALUE + portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime ); + #else + ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE(); + #endif + + /* Add the amount of time the task has been running to the + accumulated time so far. The time the task started running was + stored in ulTaskSwitchedInTime. Note that there is no overflow + protection here so count values are only valid until the timer + overflows. The guard against negative values is to protect + against suspect run time stat counter implementations - which + are provided by the application, not the kernel. */ + if( ulTotalRunTime > ulTaskSwitchedInTime ) + { + pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + ulTaskSwitchedInTime = ulTotalRunTime; + } + #endif /* configGENERATE_RUN_TIME_STATS */ + + /* Check for stack overflow, if configured. */ + taskCHECK_FOR_STACK_OVERFLOW(); + + /* Before the currently running task is switched out, save its errno. */ + #if( configUSE_POSIX_ERRNO == 1 ) + { + pxCurrentTCB->iTaskErrno = FreeRTOS_errno; + } + #endif + + /* Select a new task to run using either the generic C or port + optimised asm code. */ + taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + traceTASK_SWITCHED_IN(); + + /* After the new task is switched in, update the global errno. */ + #if( configUSE_POSIX_ERRNO == 1 ) + { + FreeRTOS_errno = pxCurrentTCB->iTaskErrno; + } + #endif + + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + /* Switch Newlib's _impure_ptr variable to point to the _reent + structure specific to this task. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + } +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH EITHER INTERRUPTS DISABLED OR THE + SCHEDULER SUSPENDED AND THE QUEUE BEING ACCESSED LOCKED. */ + + /* Place the event list item of the TCB in the appropriate event list. + This is placed in the list in priority order so the highest priority task + is the first to be woken by the event. The queue that contains the event + list is locked, preventing simultaneous access from interrupts. */ + vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait ) +{ + configASSERT( pxEventList ); + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event groups implementation. */ + configASSERT( uxSchedulerSuspended != 0 ); + + /* Store the item value in the event list item. It is safe to access the + event list item here as interrupts won't access the event list item of a + task that is not in the Blocked state. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Place the event list item of the TCB at the end of the appropriate event + list. It is safe to access the event list here because it is part of an + event group implementation - and interrupts don't access event groups + directly (instead they access them indirectly by pending function calls to + the task level). */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TIMERS == 1 ) + + void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) + { + configASSERT( pxEventList ); + + /* This function should not be called by application code hence the + 'Restricted' in its name. It is not part of the public API. It is + designed for use by kernel code, and has special calling requirements - + it should be called with the scheduler suspended. */ + + + /* Place the event list item of the TCB in the appropriate event list. + In this case it is assume that this is the only task that is going to + be waiting on this event list, so the faster vListInsertEnd() function + can be used in place of vListInsert. */ + vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); + + /* If the task should block indefinitely then set the block time to a + value that will be recognised as an indefinite delay inside the + prvAddCurrentTaskToDelayedList() function. */ + if( xWaitIndefinitely != pdFALSE ) + { + xTicksToWait = portMAX_DELAY; + } + + traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); + prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); + } + +#endif /* configUSE_TIMERS */ +/*-----------------------------------------------------------*/ + +BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) +{ +TCB_t *pxUnblockedTCB; +BaseType_t xReturn; + + /* THIS FUNCTION MUST BE CALLED FROM A CRITICAL SECTION. It can also be + called from a critical section within an ISR. */ + + /* The event list is sorted in priority order, so the first in the list can + be removed as it is known to be the highest priority. Remove the TCB from + the delayed list, and add it to the ready list. + + If an event is for a queue that is locked then this function will never + get called - the lock count on the queue will get modified instead. This + means exclusive access to the event list is guaranteed here. + + This function assumes that a check has already been made to ensure that + pxEventList is not empty. */ + pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + } + else + { + /* The delayed and ready lists cannot be accessed, so hold this task + pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); + } + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* Return true if the task removed from the event list has a higher + priority than the calling task. This allows the calling task to know if + it should force a context switch now. */ + xReturn = pdTRUE; + + /* Mark that a yield is pending in case the user is not using the + "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + xReturn = pdFALSE; + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue ) +{ +TCB_t *pxUnblockedTCB; + + /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. It is used by + the event flags implementation. */ + configASSERT( uxSchedulerSuspended != pdFALSE ); + + /* Store the new item value in the event list. */ + listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); + + /* Remove the event list form the event flag. Interrupts do not access + event flags. */ + pxUnblockedTCB = listGET_LIST_ITEM_OWNER( pxEventListItem ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + configASSERT( pxUnblockedTCB ); + ( void ) uxListRemove( pxEventListItem ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked on a kernel object then xNextTaskUnblockTime + might be set to the blocked task's time out time. If the task is + unblocked for a reason other than a timeout xNextTaskUnblockTime is + normally left unchanged, because it is automatically reset to a new + value when the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter sleep mode + at the earliest possible time - so reset xNextTaskUnblockTime here to + ensure it is updated at the earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + /* Remove the task from the delayed list and add it to the ready list. The + scheduler is suspended so interrupts will not be accessing the ready + lists. */ + ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxUnblockedTCB ); + + if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The unblocked task has a priority above that of the calling task, so + a context switch is required. This function is called with the + scheduler suspended so xYieldPending is set so the context switch + occurs immediately that the scheduler is resumed (unsuspended). */ + xYieldPending = pdTRUE; + } +} +/*-----------------------------------------------------------*/ + +void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + configASSERT( pxTimeOut ); + taskENTER_CRITICAL(); + { + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) +{ + /* For internal use only as it does not use a critical section. */ + pxTimeOut->xOverflowCount = xNumOfOverflows; + pxTimeOut->xTimeOnEntering = xTickCount; +} +/*-----------------------------------------------------------*/ + +BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) +{ +BaseType_t xReturn; + + configASSERT( pxTimeOut ); + configASSERT( pxTicksToWait ); + + taskENTER_CRITICAL(); + { + /* Minor optimisation. The tick count cannot change in this block. */ + const TickType_t xConstTickCount = xTickCount; + const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE ) + { + /* The delay was aborted, which is not the same as a time out, + but has the same result. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + xReturn = pdTRUE; + } + else + #endif + + #if ( INCLUDE_vTaskSuspend == 1 ) + if( *pxTicksToWait == portMAX_DELAY ) + { + /* If INCLUDE_vTaskSuspend is set to 1 and the block time + specified is the maximum block time then the task should block + indefinitely, and therefore never time out. */ + xReturn = pdFALSE; + } + else + #endif + + if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ + { + /* The tick count is greater than the time at which + vTaskSetTimeout() was called, but has also overflowed since + vTaskSetTimeOut() was called. It must have wrapped all the way + around and gone past again. This passed since vTaskSetTimeout() + was called. */ + xReturn = pdTRUE; + } + else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ + { + /* Not a genuine timeout. Adjust parameters for time remaining. */ + *pxTicksToWait -= xElapsedTime; + vTaskInternalSetTimeOutState( pxTimeOut ); + xReturn = pdFALSE; + } + else + { + *pxTicksToWait = 0; + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} +/*-----------------------------------------------------------*/ + +void vTaskMissedYield( void ) +{ + xYieldPending = pdTRUE; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask ) + { + UBaseType_t uxReturn; + TCB_t const *pxTCB; + + if( xTask != NULL ) + { + pxTCB = xTask; + uxReturn = pxTCB->uxTaskNumber; + } + else + { + uxReturn = 0U; + } + + return uxReturn; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle ) + { + TCB_t * pxTCB; + + if( xTask != NULL ) + { + pxTCB = xTask; + pxTCB->uxTaskNumber = uxHandle; + } + } + +#endif /* configUSE_TRACE_FACILITY */ + +/* + * ----------------------------------------------------------- + * The Idle task. + * ---------------------------------------------------------- + * + * The portTASK_FUNCTION() macro is used to allow port/compiler specific + * language extensions. The equivalent prototype for this function is: + * + * void prvIdleTask( void *pvParameters ); + * + */ +static portTASK_FUNCTION( prvIdleTask, pvParameters ) +{ + /* Stop warnings. */ + ( void ) pvParameters; + + /** THIS IS THE RTOS IDLE TASK - WHICH IS CREATED AUTOMATICALLY WHEN THE + SCHEDULER IS STARTED. **/ + + /* In case a task that has a secure context deletes itself, in which case + the idle task is responsible for deleting the task's secure context, if + any. */ + portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE ); + + for( ;; ) + { + /* See if any tasks have deleted themselves - if so then the idle task + is responsible for freeing the deleted task's TCB and stack. */ + prvCheckTasksWaitingTermination(); + + #if ( configUSE_PREEMPTION == 0 ) + { + /* If we are not using preemption we keep forcing a task switch to + see if any other task has become available. If we are using + preemption we don't need to do this as any task becoming available + will automatically get the processor anyway. */ + taskYIELD(); + } + #endif /* configUSE_PREEMPTION */ + + #if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) + { + /* When using preemption tasks of equal priority will be + timesliced. If a task that is sharing the idle priority is ready + to run then the idle task should yield before the end of the + timeslice. + + A critical region is not required here as we are just reading from + the list, and an occasional incorrect value will not matter. If + the ready list at the idle priority contains more than one task + then a task other than the idle task is ready to execute. */ + if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) + { + taskYIELD(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) ) */ + + #if ( configUSE_IDLE_HOOK == 1 ) + { + extern void vApplicationIdleHook( void ); + + /* Call the user defined function from within the idle task. This + allows the application designer to add background functionality + without the overhead of a separate task. + NOTE: vApplicationIdleHook() MUST NOT, UNDER ANY CIRCUMSTANCES, + CALL A FUNCTION THAT MIGHT BLOCK. */ + vApplicationIdleHook(); + } + #endif /* configUSE_IDLE_HOOK */ + + /* This conditional compilation should use inequality to 0, not equality + to 1. This is to ensure portSUPPRESS_TICKS_AND_SLEEP() is called when + user defined low power mode implementations require + configUSE_TICKLESS_IDLE to be set to a value other than 1. */ + #if ( configUSE_TICKLESS_IDLE != 0 ) + { + TickType_t xExpectedIdleTime; + + /* It is not desirable to suspend then resume the scheduler on + each iteration of the idle task. Therefore, a preliminary + test of the expected idle time is performed without the + scheduler suspended. The result here is not necessarily + valid. */ + xExpectedIdleTime = prvGetExpectedIdleTime(); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + vTaskSuspendAll(); + { + /* Now the scheduler is suspended, the expected idle + time can be sampled again, and this time its value can + be used. */ + configASSERT( xNextTaskUnblockTime >= xTickCount ); + xExpectedIdleTime = prvGetExpectedIdleTime(); + + /* Define the following macro to set xExpectedIdleTime to 0 + if the application does not want + portSUPPRESS_TICKS_AND_SLEEP() to be called. */ + configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( xExpectedIdleTime ); + + if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP ) + { + traceLOW_POWER_IDLE_BEGIN(); + portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime ); + traceLOW_POWER_IDLE_END(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + ( void ) xTaskResumeAll(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configUSE_TICKLESS_IDLE */ + } +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TICKLESS_IDLE != 0 ) + + eSleepModeStatus eTaskConfirmSleepModeStatus( void ) + { + /* The idle task exists in addition to the application tasks. */ + const UBaseType_t uxNonApplicationTasks = 1; + eSleepModeStatus eReturn = eStandardSleep; + + /* This function must be called from a critical section. */ + + if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 ) + { + /* A task was made ready while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else if( xYieldPending != pdFALSE ) + { + /* A yield was pended while the scheduler was suspended. */ + eReturn = eAbortSleep; + } + else + { + /* If all the tasks are in the suspended list (which might mean they + have an infinite block time rather than actually being suspended) + then it is safe to turn all clocks off and just wait for external + interrupts. */ + if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) ) + { + eReturn = eNoTasksWaitingTimeout; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + return eReturn; + } + +#endif /* configUSE_TICKLESS_IDLE */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue ) + { + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToSet ); + configASSERT( pxTCB != NULL ); + pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue; + } + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 ) + + void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex ) + { + void *pvReturn = NULL; + TCB_t *pxTCB; + + if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS ) + { + pxTCB = prvGetTCBFromHandle( xTaskToQuery ); + pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ]; + } + else + { + pvReturn = NULL; + } + + return pvReturn; + } + +#endif /* configNUM_THREAD_LOCAL_STORAGE_POINTERS */ +/*-----------------------------------------------------------*/ + +#if ( portUSING_MPU_WRAPPERS == 1 ) + + void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions ) + { + TCB_t *pxTCB; + + /* If null is passed in here then we are modifying the MPU settings of + the calling task. */ + pxTCB = prvGetTCBFromHandle( xTaskToModify ); + + vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 ); + } + +#endif /* portUSING_MPU_WRAPPERS */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseTaskLists( void ) +{ +UBaseType_t uxPriority; + + for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) + { + vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); + } + + vListInitialise( &xDelayedTaskList1 ); + vListInitialise( &xDelayedTaskList2 ); + vListInitialise( &xPendingReadyList ); + + #if ( INCLUDE_vTaskDelete == 1 ) + { + vListInitialise( &xTasksWaitingTermination ); + } + #endif /* INCLUDE_vTaskDelete */ + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + vListInitialise( &xSuspendedTaskList ); + } + #endif /* INCLUDE_vTaskSuspend */ + + /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList + using list2. */ + pxDelayedTaskList = &xDelayedTaskList1; + pxOverflowDelayedTaskList = &xDelayedTaskList2; +} +/*-----------------------------------------------------------*/ + +static void prvCheckTasksWaitingTermination( void ) +{ + + /** THIS FUNCTION IS CALLED FROM THE RTOS IDLE TASK **/ + + #if ( INCLUDE_vTaskDelete == 1 ) + { + TCB_t *pxTCB; + + /* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL() + being called too often in the idle task. */ + while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) + { + taskENTER_CRITICAL(); + { + pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + --uxCurrentNumberOfTasks; + --uxDeletedTasksWaitingCleanUp; + } + taskEXIT_CRITICAL(); + + prvDeleteTCB( pxTCB ); + } + } + #endif /* INCLUDE_vTaskDelete */ +} +/*-----------------------------------------------------------*/ + +#if( configUSE_TRACE_FACILITY == 1 ) + + void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState ) + { + TCB_t *pxTCB; + + /* xTask is NULL then get the state of the calling task. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; + pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] ); + pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority; + pxTaskStatus->pxStackBase = pxTCB->pxStack; + pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber; + + #if ( configUSE_MUTEXES == 1 ) + { + pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority; + } + #else + { + pxTaskStatus->uxBasePriority = 0; + } + #endif + + #if ( configGENERATE_RUN_TIME_STATS == 1 ) + { + pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter; + } + #else + { + pxTaskStatus->ulRunTimeCounter = 0; + } + #endif + + /* Obtaining the task state is a little fiddly, so is only done if the + value of eState passed into this function is eInvalid - otherwise the + state is just set to whatever is passed in. */ + if( eState != eInvalid ) + { + if( pxTCB == pxCurrentTCB ) + { + pxTaskStatus->eCurrentState = eRunning; + } + else + { + pxTaskStatus->eCurrentState = eState; + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + /* If the task is in the suspended list then there is a + chance it is actually just blocked indefinitely - so really + it should be reported as being in the Blocked state. */ + if( eState == eSuspended ) + { + vTaskSuspendAll(); + { + if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) + { + pxTaskStatus->eCurrentState = eBlocked; + } + } + ( void ) xTaskResumeAll(); + } + } + #endif /* INCLUDE_vTaskSuspend */ + } + } + else + { + pxTaskStatus->eCurrentState = eTaskGetState( pxTCB ); + } + + /* Obtaining the stack space takes some time, so the xGetFreeStackSpace + parameter is provided to allow it to be skipped. */ + if( xGetFreeStackSpace != pdFALSE ) + { + #if ( portSTACK_GROWTH > 0 ) + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack ); + } + #else + { + pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack ); + } + #endif + } + else + { + pxTaskStatus->usStackHighWaterMark = 0; + } + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) + { + configLIST_VOLATILE TCB_t *pxNextTCB, *pxFirstTCB; + UBaseType_t uxTask = 0; + + if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 ) + { + listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Populate an TaskStatus_t structure within the + pxTaskStatusArray array for each task that is referenced from + pxList. See the definition of TaskStatus_t in task.h for the + meaning of each TaskStatus_t structure member. */ + do + { + listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState ); + uxTask++; + } while( pxNextTCB != pxFirstTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return uxTask; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) + + static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) + { + uint32_t ulCount = 0U; + + while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE ) + { + pucStackByte -= portSTACK_GROWTH; + ulCount++; + } + + ulCount /= ( uint32_t ) sizeof( StackType_t ); /*lint !e961 Casting is not redundant on smaller architectures. */ + + return ( configSTACK_DEPTH_TYPE ) ulCount; + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) + + /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are the + same except for their return type. Using configSTACK_DEPTH_TYPE allows the + user to determine the return type. It gets around the problem of the value + overflowing on 8-bit types without breaking backward compatibility for + applications that expect an 8-bit return type. */ + configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + configSTACK_DEPTH_TYPE uxReturn; + + /* uxTaskGetStackHighWaterMark() and uxTaskGetStackHighWaterMark2() are + the same except for their return type. Using configSTACK_DEPTH_TYPE + allows the user to determine the return type. It gets around the + problem of the value overflowing on 8-bit types without breaking + backward compatibility for applications that expect an 8-bit return + type. */ + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark2 */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) + + UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + uint8_t *pucEndOfStack; + UBaseType_t uxReturn; + + pxTCB = prvGetTCBFromHandle( xTask ); + + #if portSTACK_GROWTH < 0 + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxStack; + } + #else + { + pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack; + } + #endif + + uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack ); + + return uxReturn; + } + +#endif /* INCLUDE_uxTaskGetStackHighWaterMark */ +/*-----------------------------------------------------------*/ + +#if ( INCLUDE_vTaskDelete == 1 ) + + static void prvDeleteTCB( TCB_t *pxTCB ) + { + /* This call is required specifically for the TriCore port. It must be + above the vPortFree() calls. The call is also used by ports/demos that + want to allocate and clean RAM statically. */ + portCLEAN_UP_TCB( pxTCB ); + + /* Free up the memory allocated by the scheduler for the task. It is up + to the task to free any memory allocated at the application level. + See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html + for additional information. */ + #if ( configUSE_NEWLIB_REENTRANT == 1 ) + { + _reclaim_reent( &( pxTCB->xNewLib_reent ) ); + } + #endif /* configUSE_NEWLIB_REENTRANT */ + + #if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) ) + { + /* The task can only have been allocated dynamically - free both + the stack and TCB. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ + { + /* The task could have been allocated statically or dynamically, so + check what was statically allocated before trying to free the + memory. */ + if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) + { + /* Both the stack and TCB were allocated dynamically, so both + must be freed. */ + vPortFree( pxTCB->pxStack ); + vPortFree( pxTCB ); + } + else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) + { + /* Only the stack was statically allocated, so the TCB is the + only memory that must be freed. */ + vPortFree( pxTCB ); + } + else + { + /* Neither the stack nor the TCB were allocated dynamically, so + nothing needs to be freed. */ + configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + } + +#endif /* INCLUDE_vTaskDelete */ +/*-----------------------------------------------------------*/ + +static void prvResetNextTaskUnblockTime( void ) +{ +TCB_t *pxTCB; + + if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) + { + /* The new current delayed list is empty. Set xNextTaskUnblockTime to + the maximum possible value so it is extremely unlikely that the + if( xTickCount >= xNextTaskUnblockTime ) test will pass until + there is an item in the delayed list. */ + xNextTaskUnblockTime = portMAX_DELAY; + } + else + { + /* The new current delayed list is not empty, get the value of + the item at the head of the delayed list. This is the time at + which the task at the head of the delayed list should be removed + from the Blocked state. */ + ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); + } +} +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) + + TaskHandle_t xTaskGetCurrentTaskHandle( void ) + { + TaskHandle_t xReturn; + + /* A critical section is not required as this is not called from + an interrupt and the current TCB will always be the same for any + individual execution thread. */ + xReturn = pxCurrentTCB; + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) + + BaseType_t xTaskGetSchedulerState( void ) + { + BaseType_t xReturn; + + if( xSchedulerRunning == pdFALSE ) + { + xReturn = taskSCHEDULER_NOT_STARTED; + } + else + { + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + xReturn = taskSCHEDULER_RUNNING; + } + else + { + xReturn = taskSCHEDULER_SUSPENDED; + } + } + + return xReturn; + } + +#endif /* ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxMutexHolderTCB = pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + /* If the mutex was given back by an interrupt while the queue was + locked then the mutex holder might now be NULL. _RB_ Is this still + needed as interrupts can no longer use mutexes? */ + if( pxMutexHolder != NULL ) + { + /* If the holder of the mutex has a priority below the priority of + the task attempting to obtain the mutex then it will temporarily + inherit the priority of the task attempting to obtain the mutex. */ + if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority ) + { + /* Adjust the mutex holder state to account for its new + priority. Only reset the event list item value if the value is + not being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the task being modified is in the ready state it will need + to be moved into a new list. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Inherit the priority before being moved into the new list. */ + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; + prvAddTaskToReadyList( pxMutexHolderTCB ); + } + else + { + /* Just inherit the priority. */ + pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority; + } + + traceTASK_PRIORITY_INHERIT( pxMutexHolderTCB, pxCurrentTCB->uxPriority ); + + /* Inheritance occurred. */ + xReturn = pdTRUE; + } + else + { + if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority ) + { + /* The base priority of the mutex holder is lower than the + priority of the task attempting to take the mutex, but the + current priority of the mutex holder is not lower than the + priority of the task attempting to take the mutex. + Therefore the mutex holder must have already inherited a + priority, but inheritance would have occurred if that had + not been the case. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) + { + TCB_t * const pxTCB = pxMutexHolder; + BaseType_t xReturn = pdFALSE; + + if( pxMutexHolder != NULL ) + { + /* A task can only have an inherited priority if it holds the mutex. + If the mutex is held by a task then it cannot be given from an + interrupt, and if a mutex is given by the holding task then it must + be the running state task. */ + configASSERT( pxTCB == pxCurrentTCB ); + configASSERT( pxTCB->uxMutexesHeld ); + ( pxTCB->uxMutexesHeld )--; + + /* Has the holder of the mutex inherited the priority of another + task? */ + if( pxTCB->uxPriority != pxTCB->uxBasePriority ) + { + /* Only disinherit if no other mutexes are held. */ + if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) + { + /* A task can only have an inherited priority if it holds + the mutex. If the mutex is held by a task then it cannot be + given from an interrupt, and if a mutex is given by the + holding task then it must be the running state task. Remove + the holding task from the ready/delayed list. */ + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + taskRESET_READY_PRIORITY( pxTCB->uxPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Disinherit the priority before adding the task into the + new ready list. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + pxTCB->uxPriority = pxTCB->uxBasePriority; + + /* Reset the event list item value. It cannot be in use for + any other purpose if this task is running, and it must be + running to give back the mutex. */ + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + prvAddTaskToReadyList( pxTCB ); + + /* Return true to indicate that a context switch is required. + This is only actually required in the corner case whereby + multiple mutexes were held and the mutexes were given back + in an order different to that in which they were taken. + If a context switch did not occur when the first mutex was + returned, even if a task was waiting on it, then a context + switch should occur when the last mutex is returned whether + a task is waiting on it or not. */ + xReturn = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask ) + { + TCB_t * const pxTCB = pxMutexHolder; + UBaseType_t uxPriorityUsedOnEntry, uxPriorityToUse; + const UBaseType_t uxOnlyOneMutexHeld = ( UBaseType_t ) 1; + + if( pxMutexHolder != NULL ) + { + /* If pxMutexHolder is not NULL then the holder must hold at least + one mutex. */ + configASSERT( pxTCB->uxMutexesHeld ); + + /* Determine the priority to which the priority of the task that + holds the mutex should be set. This will be the greater of the + holding task's base priority and the priority of the highest + priority task that is waiting to obtain the mutex. */ + if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask ) + { + uxPriorityToUse = uxHighestPriorityWaitingTask; + } + else + { + uxPriorityToUse = pxTCB->uxBasePriority; + } + + /* Does the priority need to change? */ + if( pxTCB->uxPriority != uxPriorityToUse ) + { + /* Only disinherit if no other mutexes are held. This is a + simplification in the priority inheritance implementation. If + the task that holds the mutex is also holding other mutexes then + the other mutexes may have caused the priority inheritance. */ + if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld ) + { + /* If a task has timed out because it already holds the + mutex it was trying to obtain then it cannot of inherited + its own priority. */ + configASSERT( pxTCB != pxCurrentTCB ); + + /* Disinherit the priority, remembering the previous + priority to facilitate determining the subject task's + state. */ + traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); + uxPriorityUsedOnEntry = pxTCB->uxPriority; + pxTCB->uxPriority = uxPriorityToUse; + + /* Only reset the event list item value if the value is not + being used for anything else. */ + if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL ) + { + listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* If the running task is not the task that holds the mutex + then the task that holds the mutex could be in either the + Ready, Blocked or Suspended states. Only remove the task + from its current state list if it is in the Ready state as + the task's priority is going to change and there is one + Ready list per priority. */ + if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE ) + { + if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* It is known that the task is in its ready list so + there is no need to check again and the port level + reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + prvAddTaskToReadyList( pxTCB ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskEnterCritical( void ) + { + portDISABLE_INTERRUPTS(); + + if( xSchedulerRunning != pdFALSE ) + { + ( pxCurrentTCB->uxCriticalNesting )++; + + /* This is not the interrupt safe version of the enter critical + function so assert() if it is being called from an interrupt + context. Only API functions that end in "FromISR" can be used in an + interrupt. Only assert if the critical nesting count is 1 to + protect against recursive calls if the assert function also uses a + critical section. */ + if( pxCurrentTCB->uxCriticalNesting == 1 ) + { + portASSERT_IF_IN_ISR(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( portCRITICAL_NESTING_IN_TCB == 1 ) + + void vTaskExitCritical( void ) + { + if( xSchedulerRunning != pdFALSE ) + { + if( pxCurrentTCB->uxCriticalNesting > 0U ) + { + ( pxCurrentTCB->uxCriticalNesting )--; + + if( pxCurrentTCB->uxCriticalNesting == 0U ) + { + portENABLE_INTERRUPTS(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* portCRITICAL_NESTING_IN_TCB */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) ) + + static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) + { + size_t x; + + /* Start by copying the entire string. */ + strcpy( pcBuffer, pcTaskName ); + + /* Pad the end of the string with spaces to ensure columns line up when + printed out. */ + for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ ) + { + pcBuffer[ x ] = ' '; + } + + /* Terminate. */ + pcBuffer[ x ] = ( char ) 0x00; + + /* Return the new end of string. */ + return &( pcBuffer[ x ] ); + } + +#endif /* ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) */ +/*-----------------------------------------------------------*/ + +#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + void vTaskList( char * pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + UBaseType_t uxArraySize, x; + char cStatus; + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskList() calls uxTaskGetSystemState(), then formats part of the + * uxTaskGetSystemState() output into a human readable table that + * displays task names, states and stack usage. + * + * vTaskList() has a dependency on the sprintf() C library function that + * might bloat the code size, use a lot of stack, and provide different + * results on different platforms. An alternative, tiny, third party, + * and limited functionality implementation of sprintf() is provided in + * many of the FreeRTOS/Demo sub-directories in a file called + * printf-stdarg.c (note printf-stdarg.c does not provide a full + * snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskList(). + */ + + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = ( char ) 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! if + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL ); + + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + switch( pxTaskStatusArray[ x ].eCurrentState ) + { + case eRunning: cStatus = tskRUNNING_CHAR; + break; + + case eReady: cStatus = tskREADY_CHAR; + break; + + case eBlocked: cStatus = tskBLOCKED_CHAR; + break; + + case eSuspended: cStatus = tskSUSPENDED_CHAR; + break; + + case eDeleted: cStatus = tskDELETED_CHAR; + break; + + case eInvalid: /* Fall through. */ + default: /* Should not get here, but it is included + to prevent static checking errors. */ + cStatus = ( char ) 0x00; + break; + } + + /* Write the task name to the string, padding with spaces so it + can be printed in tabular form more easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + /* Write the rest of the string. */ + sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ +/*----------------------------------------------------------*/ + +#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) + + void vTaskGetRunTimeStats( char *pcWriteBuffer ) + { + TaskStatus_t *pxTaskStatusArray; + UBaseType_t uxArraySize, x; + uint32_t ulTotalTime, ulStatsAsPercentage; + + #if( configUSE_TRACE_FACILITY != 1 ) + { + #error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats(). + } + #endif + + /* + * PLEASE NOTE: + * + * This function is provided for convenience only, and is used by many + * of the demo applications. Do not consider it to be part of the + * scheduler. + * + * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part + * of the uxTaskGetSystemState() output into a human readable table that + * displays the amount of time each task has spent in the Running state + * in both absolute and percentage terms. + * + * vTaskGetRunTimeStats() has a dependency on the sprintf() C library + * function that might bloat the code size, use a lot of stack, and + * provide different results on different platforms. An alternative, + * tiny, third party, and limited functionality implementation of + * sprintf() is provided in many of the FreeRTOS/Demo sub-directories in + * a file called printf-stdarg.c (note printf-stdarg.c does not provide + * a full snprintf() implementation!). + * + * It is recommended that production systems call uxTaskGetSystemState() + * directly to get access to raw stats data, rather than indirectly + * through a call to vTaskGetRunTimeStats(). + */ + + /* Make sure the write buffer does not contain a string. */ + *pcWriteBuffer = ( char ) 0x00; + + /* Take a snapshot of the number of tasks in case it changes while this + function is executing. */ + uxArraySize = uxCurrentNumberOfTasks; + + /* Allocate an array index for each task. NOTE! If + configSUPPORT_DYNAMIC_ALLOCATION is set to 0 then pvPortMalloc() will + equate to NULL. */ + pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation allocates a struct that has the alignment requirements of a pointer. */ + + if( pxTaskStatusArray != NULL ) + { + /* Generate the (binary) data. */ + uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime ); + + /* For percentage calculations. */ + ulTotalTime /= 100UL; + + /* Avoid divide by zero errors. */ + if( ulTotalTime > 0UL ) + { + /* Create a human readable table from the binary data. */ + for( x = 0; x < uxArraySize; x++ ) + { + /* What percentage of the total run time has the task used? + This will always be rounded down to the nearest integer. + ulTotalRunTimeDiv100 has already been divided by 100. */ + ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime; + + /* Write the task name to the string, padding with + spaces so it can be printed in tabular form more + easily. */ + pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName ); + + if( ulStatsAsPercentage > 0UL ) + { + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + } + #endif + } + else + { + /* If the percentage is zero here then the task has + consumed less than 1% of the total run time. */ + #ifdef portLU_PRINTF_SPECIFIER_REQUIRED + { + sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter ); + } + #else + { + /* sizeof( int ) == sizeof( long ) so a smaller + printf() library can be used. */ + sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter ); /*lint !e586 sprintf() allowed as this is compiled with many compilers and this is a utility function only - not part of the core kernel implementation. */ + } + #endif + } + + pcWriteBuffer += strlen( pcWriteBuffer ); /*lint !e9016 Pointer arithmetic ok on char pointers especially as in this case where it best denotes the intent of the code. */ + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + /* Free the array again. NOTE! If configSUPPORT_DYNAMIC_ALLOCATION + is 0 then vPortFree() will be #defined to nothing. */ + vPortFree( pxTaskStatusArray ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + +#endif /* ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) */ +/*-----------------------------------------------------------*/ + +TickType_t uxTaskResetEventItemValue( void ) +{ +TickType_t uxReturn; + + uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) ); + + /* Reset the event list item to its normal value - so it can be used with + queues and semaphores. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +#if ( configUSE_MUTEXES == 1 ) + + TaskHandle_t pvTaskIncrementMutexHeldCount( void ) + { + /* If xSemaphoreCreateMutex() is called before any tasks have been created + then pxCurrentTCB will be NULL. */ + if( pxCurrentTCB != NULL ) + { + ( pxCurrentTCB->uxMutexesHeld )++; + } + + return pxCurrentTCB; + } + +#endif /* configUSE_MUTEXES */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait ) + { + uint32_t ulReturn; + + taskENTER_CRITICAL(); + { + /* Only block if the notification count is not already non-zero. */ + if( pxCurrentTCB->ulNotifiedValue == 0UL ) + { + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_TAKE_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_TAKE(); + ulReturn = pxCurrentTCB->ulNotifiedValue; + + if( ulReturn != 0UL ) + { + if( xClearCountOnExit != pdFALSE ) + { + pxCurrentTCB->ulNotifiedValue = 0UL; + } + else + { + pxCurrentTCB->ulNotifiedValue = ulReturn - ( uint32_t ) 1; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait ) + { + BaseType_t xReturn; + + taskENTER_CRITICAL(); + { + /* Only block if a notification is not already pending. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* Clear bits in the task's notification value as bits may get + set by the notifying task or interrupt. This can be used to + clear the value to zero. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry; + + /* Mark this task as waiting for a notification. */ + pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION; + + if( xTicksToWait > ( TickType_t ) 0 ) + { + prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); + traceTASK_NOTIFY_WAIT_BLOCK(); + + /* All ports are written to allow a yield in a critical + section (some will yield immediately, others wait until the + critical section exits) - but it is not something that + application code should ever do. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + taskENTER_CRITICAL(); + { + traceTASK_NOTIFY_WAIT(); + + if( pulNotificationValue != NULL ) + { + /* Output the current notification value, which may or may not + have changed. */ + *pulNotificationValue = pxCurrentTCB->ulNotifiedValue; + } + + /* If ucNotifyValue is set then either the task never entered the + blocked state (because a notification was already pending) or the + task unblocked because of a notification. Otherwise the task + unblocked because of a timeout. */ + if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED ) + { + /* A notification was not received. */ + xReturn = pdFALSE; + } + else + { + /* A notification was already pending or a notification was + received while the task was waiting. */ + pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit; + xReturn = pdTRUE; + } + + pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue ) + { + TCB_t * pxTCB; + BaseType_t xReturn = pdPASS; + uint8_t ucOriginalNotifyState; + + configASSERT( xTaskToNotify ); + pxTCB = xTaskToNotify; + + taskENTER_CRITICAL(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction: + /* The task is being notified without its notify value being + updated. */ + break; + + default: + /* Should not get here if all enums are handled. + Artificially force an assert by testing a value the + compiler can't assume is const. */ + configASSERT( pxTCB->ulNotifiedValue == ~0UL ); + + break; + } + + traceTASK_NOTIFY(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + #if( configUSE_TICKLESS_IDLE != 0 ) + { + /* If a task is blocked waiting for a notification then + xNextTaskUnblockTime might be set to the blocked task's time + out time. If the task is unblocked for a reason other than + a timeout xNextTaskUnblockTime is normally left unchanged, + because it will automatically get reset to a new value when + the tick count equals xNextTaskUnblockTime. However if + tickless idling is used it might be more important to enter + sleep mode at the earliest possible time - so reset + xNextTaskUnblockTime here to ensure it is updated at the + earliest possible time. */ + prvResetNextTaskUnblockTime(); + } + #endif + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + taskYIELD_IF_USING_PREEMPTION(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + BaseType_t xReturn = pdPASS; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + if( pulPreviousNotificationValue != NULL ) + { + *pulPreviousNotificationValue = pxTCB->ulNotifiedValue; + } + + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + switch( eAction ) + { + case eSetBits : + pxTCB->ulNotifiedValue |= ulValue; + break; + + case eIncrement : + ( pxTCB->ulNotifiedValue )++; + break; + + case eSetValueWithOverwrite : + pxTCB->ulNotifiedValue = ulValue; + break; + + case eSetValueWithoutOverwrite : + if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED ) + { + pxTCB->ulNotifiedValue = ulValue; + } + else + { + /* The value could not be written to the task. */ + xReturn = pdFAIL; + } + break; + + case eNoAction : + /* The task is being notified without its notify value being + updated. */ + break; + + default: + /* Should not get here if all enums are handled. + Artificially force an assert by testing a value the + compiler can't assume is const. */ + configASSERT( pxTCB->ulNotifiedValue == ~0UL ); + break; + } + + traceTASK_NOTIFY_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter to an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken ) + { + TCB_t * pxTCB; + uint8_t ucOriginalNotifyState; + UBaseType_t uxSavedInterruptStatus; + + configASSERT( xTaskToNotify ); + + /* RTOS ports that support interrupt nesting have the concept of a + maximum system call (or maximum API call) interrupt priority. + Interrupts that are above the maximum system call priority are keep + permanently enabled, even when the RTOS kernel is in a critical section, + but cannot make any calls to FreeRTOS API functions. If configASSERT() + is defined in FreeRTOSConfig.h then + portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion + failure if a FreeRTOS API function is called from an interrupt that has + been assigned a priority above the configured maximum system call + priority. Only FreeRTOS functions that end in FromISR can be called + from interrupts that have been assigned a priority at or (logically) + below the maximum system call interrupt priority. FreeRTOS maintains a + separate interrupt safe API to ensure interrupt entry is as fast and as + simple as possible. More information (albeit Cortex-M specific) is + provided on the following link: + http://www.freertos.org/RTOS-Cortex-M3-M4.html */ + portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); + + pxTCB = xTaskToNotify; + + uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); + { + ucOriginalNotifyState = pxTCB->ucNotifyState; + pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED; + + /* 'Giving' is equivalent to incrementing a count in a counting + semaphore. */ + ( pxTCB->ulNotifiedValue )++; + + traceTASK_NOTIFY_GIVE_FROM_ISR(); + + /* If the task is in the blocked state specifically to wait for a + notification then unblock it now. */ + if( ucOriginalNotifyState == taskWAITING_NOTIFICATION ) + { + /* The task should not have been on an event list. */ + configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ); + + if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) + { + ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); + prvAddTaskToReadyList( pxTCB ); + } + else + { + /* The delayed and ready lists cannot be accessed, so hold + this task pending until the scheduler is resumed. */ + vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) ); + } + + if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) + { + /* The notified task has a priority above the currently + executing task so a yield is required. */ + if( pxHigherPriorityTaskWoken != NULL ) + { + *pxHigherPriorityTaskWoken = pdTRUE; + } + + /* Mark that a yield is pending in case the user is not + using the "xHigherPriorityTaskWoken" parameter in an ISR + safe FreeRTOS function. */ + xYieldPending = pdTRUE; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask ) + { + TCB_t *pxTCB; + BaseType_t xReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED ) + { + pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; + xReturn = pdPASS; + } + else + { + xReturn = pdFAIL; + } + } + taskEXIT_CRITICAL(); + + return xReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( configUSE_TASK_NOTIFICATIONS == 1 ) + + uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear ) + { + TCB_t *pxTCB; + uint32_t ulReturn; + + /* If null is passed in here then it is the calling task that is having + its notification state cleared. */ + pxTCB = prvGetTCBFromHandle( xTask ); + + taskENTER_CRITICAL(); + { + /* Return the notification as it was before the bits were cleared, + then clear the bit mask. */ + ulReturn = pxCurrentTCB->ulNotifiedValue; + pxTCB->ulNotifiedValue &= ~ulBitsToClear; + } + taskEXIT_CRITICAL(); + + return ulReturn; + } + +#endif /* configUSE_TASK_NOTIFICATIONS */ +/*-----------------------------------------------------------*/ + +#if( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) ) + + uint32_t ulTaskGetIdleRunTimeCounter( void ) + { + return xIdleTaskHandle->ulRunTimeCounter; + } + +#endif +/*-----------------------------------------------------------*/ + +static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) +{ +TickType_t xTimeToWake; +const TickType_t xConstTickCount = xTickCount; + + #if( INCLUDE_xTaskAbortDelay == 1 ) + { + /* About to enter a delayed list, so ensure the ucDelayAborted flag is + reset to pdFALSE so it can be detected as having been set to pdTRUE + when the task leaves the Blocked state. */ + pxCurrentTCB->ucDelayAborted = pdFALSE; + } + #endif + + /* Remove the task from the ready list before adding it to the blocked list + as the same list item is used for both lists. */ + if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) + { + /* The current task must be in a ready list, so there is no need to + check, and the port reset macro can be called directly. */ + portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority ); /*lint !e931 pxCurrentTCB cannot change as it is the calling task. pxCurrentTCB->uxPriority and uxTopReadyPriority cannot change as called with scheduler suspended or in a critical section. */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + #if ( INCLUDE_vTaskSuspend == 1 ) + { + if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) + { + /* Add the task to the suspended task list instead of a delayed task + list to ensure it is not woken by a timing event. It will block + indefinitely. */ + vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the + kernel will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow + list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list + is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the + head of the list of blocked tasks then xNextTaskUnblockTime + needs to be updated too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + } + #else /* INCLUDE_vTaskSuspend */ + { + /* Calculate the time at which the task should be woken if the event + does not occur. This may overflow but this doesn't matter, the kernel + will manage it correctly. */ + xTimeToWake = xConstTickCount + xTicksToWait; + + /* The list item will be inserted in wake time order. */ + listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); + + if( xTimeToWake < xConstTickCount ) + { + /* Wake time has overflowed. Place this item in the overflow list. */ + vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + } + else + { + /* The wake time has not overflowed, so the current block list is used. */ + vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); + + /* If the task entering the blocked state was placed at the head of the + list of blocked tasks then xNextTaskUnblockTime needs to be updated + too. */ + if( xTimeToWake < xNextTaskUnblockTime ) + { + xNextTaskUnblockTime = xTimeToWake; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ + ( void ) xCanBlockIndefinitely; + } + #endif /* INCLUDE_vTaskSuspend */ +} + +/* Code below here allows additional code to be inserted into this source file, +especially where access to file scope functions and data is needed (for example +when performing module tests). */ + +#ifdef FREERTOS_MODULE_TEST + #include "tasks_test_access_functions.h" +#endif + + +#if( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 ) + + #include "freertos_tasks_c_additions.h" + + #ifdef FREERTOS_TASKS_C_ADDITIONS_INIT + static void freertos_tasks_c_additions_init( void ) + { + FREERTOS_TASKS_C_ADDITIONS_INIT(); + } + #endif + +#endif + + diff --git a/Middlewares/Third_Party/FreeRTOS/Source/timers.c b/Middlewares/Third_Party/FreeRTOS/Source/timers.c new file mode 100644 index 0000000..00200b8 --- /dev/null +++ b/Middlewares/Third_Party/FreeRTOS/Source/timers.c @@ -0,0 +1,1127 @@ +/* + * FreeRTOS Kernel V10.3.1 + * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * http://www.FreeRTOS.org + * http://aws.amazon.com/freertos + * + * 1 tab == 4 spaces! + */ + +/* Standard includes. */ +#include + +/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining +all the API functions to use the MPU wrappers. That should only be done when +task.h is included from an application file. */ +#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE + +#include "FreeRTOS.h" +#include "task.h" +#include "queue.h" +#include "timers.h" + +#if ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 0 ) + #error configUSE_TIMERS must be set to 1 to make the xTimerPendFunctionCall() function available. +#endif + +/* Lint e9021, e961 and e750 are suppressed as a MISRA exception justified +because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined +for the header files above, but not in this file, in order to generate the +correct privileged Vs unprivileged linkage and placement. */ +#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e9021 !e961 !e750. */ + + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. This #if is closed at the very bottom +of this file. If you want to include software timer functionality then ensure +configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#if ( configUSE_TIMERS == 1 ) + +/* Misc definitions. */ +#define tmrNO_DELAY ( TickType_t ) 0U + +/* The name assigned to the timer service task. This can be overridden by +defining trmTIMER_SERVICE_TASK_NAME in FreeRTOSConfig.h. */ +#ifndef configTIMER_SERVICE_TASK_NAME + #define configTIMER_SERVICE_TASK_NAME "Tmr Svc" +#endif + +/* Bit definitions used in the ucStatus member of a timer structure. */ +#define tmrSTATUS_IS_ACTIVE ( ( uint8_t ) 0x01 ) +#define tmrSTATUS_IS_STATICALLY_ALLOCATED ( ( uint8_t ) 0x02 ) +#define tmrSTATUS_IS_AUTORELOAD ( ( uint8_t ) 0x04 ) + +/* The definition of the timers themselves. */ +typedef struct tmrTimerControl /* The old naming convention is used to prevent breaking kernel aware debuggers. */ +{ + const char *pcTimerName; /*<< Text name. This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + ListItem_t xTimerListItem; /*<< Standard linked list item as used by all kernel features for event management. */ + TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */ + void *pvTimerID; /*<< An ID to identify the timer. This allows the timer to be identified when the same callback is used for multiple timers. */ + TimerCallbackFunction_t pxCallbackFunction; /*<< The function that will be called when the timer expires. */ + #if( configUSE_TRACE_FACILITY == 1 ) + UBaseType_t uxTimerNumber; /*<< An ID assigned by trace tools such as FreeRTOS+Trace */ + #endif + uint8_t ucStatus; /*<< Holds bits to say if the timer was statically allocated or not, and if it is active or not. */ +} xTIMER; + +/* The old xTIMER name is maintained above then typedefed to the new Timer_t +name below to enable the use of older kernel aware debuggers. */ +typedef xTIMER Timer_t; + +/* The definition of messages that can be sent and received on the timer queue. +Two types of message can be queued - messages that manipulate a software timer, +and messages that request the execution of a non-timer related callback. The +two message types are defined in two separate structures, xTimerParametersType +and xCallbackParametersType respectively. */ +typedef struct tmrTimerParameters +{ + TickType_t xMessageValue; /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */ + Timer_t * pxTimer; /*<< The timer to which the command will be applied. */ +} TimerParameter_t; + + +typedef struct tmrCallbackParameters +{ + PendedFunction_t pxCallbackFunction; /* << The callback function to execute. */ + void *pvParameter1; /* << The value that will be used as the callback functions first parameter. */ + uint32_t ulParameter2; /* << The value that will be used as the callback functions second parameter. */ +} CallbackParameters_t; + +/* The structure that contains the two message types, along with an identifier +that is used to determine which message type is valid. */ +typedef struct tmrTimerQueueMessage +{ + BaseType_t xMessageID; /*<< The command being sent to the timer service task. */ + union + { + TimerParameter_t xTimerParameters; + + /* Don't include xCallbackParameters if it is not going to be used as + it makes the structure (and therefore the timer queue) larger. */ + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + CallbackParameters_t xCallbackParameters; + #endif /* INCLUDE_xTimerPendFunctionCall */ + } u; +} DaemonTaskMessage_t; + +/*lint -save -e956 A manual analysis and inspection has been used to determine +which static variables must be declared volatile. */ + +/* The list in which active timers are stored. Timers are referenced in expire +time order, with the nearest expiry time at the front of the list. Only the +timer service task is allowed to access these lists. +xActiveTimerList1 and xActiveTimerList2 could be at function scope but that +breaks some kernel aware debuggers, and debuggers that reply on removing the +static qualifier. */ +PRIVILEGED_DATA static List_t xActiveTimerList1; +PRIVILEGED_DATA static List_t xActiveTimerList2; +PRIVILEGED_DATA static List_t *pxCurrentTimerList; +PRIVILEGED_DATA static List_t *pxOverflowTimerList; + +/* A queue that is used to send commands to the timer service task. */ +PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL; +PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL; + +/*lint -restore */ + +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + /* If static allocation is supported then the application must provide the + following callback function - which enables the application to optionally + provide the memory that will be used by the timer task as the task's stack + and TCB. */ + extern void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize ); + +#endif + +/* + * Initialise the infrastructure used by the timer service task if it has not + * been initialised already. + */ +static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION; + +/* + * The timer service task (daemon). Timer functionality is controlled by this + * task. Other tasks communicate with the timer service task using the + * xTimerQueue queue. + */ +static portTASK_FUNCTION_PROTO( prvTimerTask, pvParameters ) PRIVILEGED_FUNCTION; + +/* + * Called by the timer service task to interpret and process a command it + * received on the timer queue. + */ +static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION; + +/* + * Insert the timer into either xActiveTimerList1, or xActiveTimerList2, + * depending on if the expire time causes a timer counter overflow. + */ +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION; + +/* + * An active timer has reached its expire time. Reload the timer if it is an + * auto-reload timer, then call its callback. + */ +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION; + +/* + * The tick count has overflowed. Switch the timer lists after ensuring the + * current timer list does not still reference some timers. + */ +static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION; + +/* + * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE + * if a tick count overflow occurred since prvSampleTimeNow() was last called. + */ +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION; + +/* + * If the timer list contains any active timers then return the expire time of + * the timer that will expire first and set *pxListWasEmpty to false. If the + * timer list does not contain any timers then return 0 and set *pxListWasEmpty + * to pdTRUE. + */ +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * If a timer has expired, process it. Otherwise, block the timer service task + * until either a timer does expire or a command is received. + */ +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION; + +/* + * Called after a Timer_t structure has been allocated either statically or + * dynamically to fill in the structure's members. + */ +static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; +/*-----------------------------------------------------------*/ + +BaseType_t xTimerCreateTimerTask( void ) +{ +BaseType_t xReturn = pdFAIL; + + /* This function is called when the scheduler is started if + configUSE_TIMERS is set to 1. Check that the infrastructure used by the + timer service task has been created/initialised. If timers have already + been created then the initialisation will already have been performed. */ + prvCheckForValidListAndQueue(); + + if( xTimerQueue != NULL ) + { + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + StaticTask_t *pxTimerTaskTCBBuffer = NULL; + StackType_t *pxTimerTaskStackBuffer = NULL; + uint32_t ulTimerTaskStackSize; + + vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); + xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, + configTIMER_SERVICE_TASK_NAME, + ulTimerTaskStackSize, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + pxTimerTaskStackBuffer, + pxTimerTaskTCBBuffer ); + + if( xTimerTaskHandle != NULL ) + { + xReturn = pdPASS; + } + } + #else + { + xReturn = xTaskCreate( prvTimerTask, + configTIMER_SERVICE_TASK_NAME, + configTIMER_TASK_STACK_DEPTH, + NULL, + ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, + &xTimerTaskHandle ); + } + #endif /* configSUPPORT_STATIC_ALLOCATION */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + configASSERT( xReturn ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreate( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction ) + { + Timer_t *pxNewTimer; + + pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of Timer_t is always a pointer to the timer's mame. */ + + if( pxNewTimer != NULL ) + { + /* Status is thus far zero as the timer is not created statically + and has not been started. The auto-reload bit may get set in + prvInitialiseNewTimer. */ + pxNewTimer->ucStatus = 0x00; + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_DYNAMIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +#if( configSUPPORT_STATIC_ALLOCATION == 1 ) + + TimerHandle_t xTimerCreateStatic( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + StaticTimer_t *pxTimerBuffer ) + { + Timer_t *pxNewTimer; + + #if( configASSERT_DEFINED == 1 ) + { + /* Sanity check that the size of the structure used to declare a + variable of type StaticTimer_t equals the size of the real timer + structure. */ + volatile size_t xSize = sizeof( StaticTimer_t ); + configASSERT( xSize == sizeof( Timer_t ) ); + ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ + } + #endif /* configASSERT_DEFINED */ + + /* A pointer to a StaticTimer_t structure MUST be provided, use it. */ + configASSERT( pxTimerBuffer ); + pxNewTimer = ( Timer_t * ) pxTimerBuffer; /*lint !e740 !e9087 StaticTimer_t is a pointer to a Timer_t, so guaranteed to be aligned and sized correctly (checked by an assert()), so this is safe. */ + + if( pxNewTimer != NULL ) + { + /* Timers can be created statically or dynamically so note this + timer was created statically in case it is later deleted. The + auto-reload bit may get set in prvInitialiseNewTimer(). */ + pxNewTimer->ucStatus = tmrSTATUS_IS_STATICALLY_ALLOCATED; + + prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxNewTimer ); + } + + return pxNewTimer; + } + +#endif /* configSUPPORT_STATIC_ALLOCATION */ +/*-----------------------------------------------------------*/ + +static void prvInitialiseNewTimer( const char * const pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ + const TickType_t xTimerPeriodInTicks, + const UBaseType_t uxAutoReload, + void * const pvTimerID, + TimerCallbackFunction_t pxCallbackFunction, + Timer_t *pxNewTimer ) +{ + /* 0 is not a valid value for xTimerPeriodInTicks. */ + configASSERT( ( xTimerPeriodInTicks > 0 ) ); + + if( pxNewTimer != NULL ) + { + /* Ensure the infrastructure used by the timer service task has been + created/initialised. */ + prvCheckForValidListAndQueue(); + + /* Initialise the timer structure members using the function + parameters. */ + pxNewTimer->pcTimerName = pcTimerName; + pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks; + pxNewTimer->pvTimerID = pvTimerID; + pxNewTimer->pxCallbackFunction = pxCallbackFunction; + vListInitialiseItem( &( pxNewTimer->xTimerListItem ) ); + if( uxAutoReload != pdFALSE ) + { + pxNewTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; + } + traceTIMER_CREATE( pxNewTimer ); + } +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) +{ +BaseType_t xReturn = pdFAIL; +DaemonTaskMessage_t xMessage; + + configASSERT( xTimer ); + + /* Send a message to the timer service task to perform a particular action + on a particular timer definition. */ + if( xTimerQueue != NULL ) + { + /* Send a command to the timer service task to start the xTimer timer. */ + xMessage.xMessageID = xCommandID; + xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; + xMessage.u.xTimerParameters.pxTimer = xTimer; + + if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) + { + if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + } + else + { + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); + } + } + else + { + xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + } + + traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + return xReturn; +} +/*-----------------------------------------------------------*/ + +TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) +{ + /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been + started, then xTimerTaskHandle will be NULL. */ + configASSERT( ( xTimerTaskHandle != NULL ) ); + return xTimerTaskHandle; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetPeriod( TimerHandle_t xTimer ) +{ +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + return pxTimer->xTimerPeriodInTicks; +} +/*-----------------------------------------------------------*/ + +void vTimerSetReloadMode( TimerHandle_t xTimer, const UBaseType_t uxAutoReload ) +{ +Timer_t * pxTimer = xTimer; + + configASSERT( xTimer ); + taskENTER_CRITICAL(); + { + if( uxAutoReload != pdFALSE ) + { + pxTimer->ucStatus |= tmrSTATUS_IS_AUTORELOAD; + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_AUTORELOAD; + } + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +UBaseType_t uxTimerGetReloadMode( TimerHandle_t xTimer ) +{ +Timer_t * pxTimer = xTimer; +UBaseType_t uxReturn; + + configASSERT( xTimer ); + taskENTER_CRITICAL(); + { + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) == 0 ) + { + /* Not an auto-reload timer. */ + uxReturn = ( UBaseType_t ) pdFALSE; + } + else + { + /* Is an auto-reload timer. */ + uxReturn = ( UBaseType_t ) pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return uxReturn; +} +/*-----------------------------------------------------------*/ + +TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer ) +{ +Timer_t * pxTimer = xTimer; +TickType_t xReturn; + + configASSERT( xTimer ); + xReturn = listGET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ) ); + return xReturn; +} +/*-----------------------------------------------------------*/ + +const char * pcTimerGetName( TimerHandle_t xTimer ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ +{ +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + return pxTimer->pcTimerName; +} +/*-----------------------------------------------------------*/ + +static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) +{ +BaseType_t xResult; +Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + + /* Remove the timer from the list of active timers. A check has already + been performed to ensure the list is not empty. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* If the timer is an auto-reload timer then calculate the next + expiry time and re-insert the timer in the list of active timers. */ + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + /* The timer is inserted into a list using a time relative to anything + other than the current time. It will therefore be inserted into the + correct list relative to the time this task thinks it is now. */ + if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) + { + /* The timer expired before it was added to the active timer + list. Reload it now. */ + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + mtCOVERAGE_TEST_MARKER(); + } + + /* Call the timer callback. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); +} +/*-----------------------------------------------------------*/ + +static portTASK_FUNCTION( prvTimerTask, pvParameters ) +{ +TickType_t xNextExpireTime; +BaseType_t xListWasEmpty; + + /* Just to avoid compiler warnings. */ + ( void ) pvParameters; + + #if( configUSE_DAEMON_TASK_STARTUP_HOOK == 1 ) + { + extern void vApplicationDaemonTaskStartupHook( void ); + + /* Allow the application writer to execute some code in the context of + this task at the point the task starts executing. This is useful if the + application includes initialisation code that would benefit from + executing after the scheduler has been started. */ + vApplicationDaemonTaskStartupHook(); + } + #endif /* configUSE_DAEMON_TASK_STARTUP_HOOK */ + + for( ;; ) + { + /* Query the timers list to see if it contains any timers, and if so, + obtain the time at which the next timer will expire. */ + xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); + + /* If a timer has expired, process it. Otherwise, block this task + until either a timer does expire, or a command is received. */ + prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); + + /* Empty the command queue. */ + prvProcessReceivedCommands(); + } +} +/*-----------------------------------------------------------*/ + +static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) +{ +TickType_t xTimeNow; +BaseType_t xTimerListsWereSwitched; + + vTaskSuspendAll(); + { + /* Obtain the time now to make an assessment as to whether the timer + has expired or not. If obtaining the time causes the lists to switch + then don't process this timer as any timers that remained in the list + when the lists were switched will have been processed within the + prvSampleTimeNow() function. */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + if( xTimerListsWereSwitched == pdFALSE ) + { + /* The tick count has not overflowed, has the timer expired? */ + if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) + { + ( void ) xTaskResumeAll(); + prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); + } + else + { + /* The tick count has not overflowed, and the next expire + time has not been reached yet. This task should therefore + block to wait for the next expire time or a command to be + received - whichever comes first. The following line cannot + be reached unless xNextExpireTime > xTimeNow, except in the + case when the current timer list is empty. */ + if( xListWasEmpty != pdFALSE ) + { + /* The current timer list is empty - is the overflow list + also empty? */ + xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); + } + + vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); + + if( xTaskResumeAll() == pdFALSE ) + { + /* Yield to wait for either a command to arrive, or the + block time to expire. If a command arrived between the + critical section being exited and this yield then the yield + will not cause the task to block. */ + portYIELD_WITHIN_API(); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + } + else + { + ( void ) xTaskResumeAll(); + } + } +} +/*-----------------------------------------------------------*/ + +static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) +{ +TickType_t xNextExpireTime; + + /* Timers are listed in expiry time order, with the head of the list + referencing the task that will expire first. Obtain the time at which + the timer with the nearest expiry time will expire. If there are no + active timers then just set the next expire time to 0. That will cause + this task to unblock when the tick count overflows, at which point the + timer lists will be switched and the next expiry time can be + re-assessed. */ + *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); + if( *pxListWasEmpty == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + } + else + { + /* Ensure the task unblocks when the tick count rolls over. */ + xNextExpireTime = ( TickType_t ) 0U; + } + + return xNextExpireTime; +} +/*-----------------------------------------------------------*/ + +static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) +{ +TickType_t xTimeNow; +PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ + + xTimeNow = xTaskGetTickCount(); + + if( xTimeNow < xLastTime ) + { + prvSwitchTimerLists(); + *pxTimerListsWereSwitched = pdTRUE; + } + else + { + *pxTimerListsWereSwitched = pdFALSE; + } + + xLastTime = xTimeNow; + + return xTimeNow; +} +/*-----------------------------------------------------------*/ + +static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) +{ +BaseType_t xProcessTimerNow = pdFALSE; + + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + + if( xNextExpiryTime <= xTimeNow ) + { + /* Has the expiry time elapsed between the command to start/reset a + timer was issued, and the time the command was processed? */ + if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ + { + /* The time between a command being issued and the command being + processed actually exceeds the timers period. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); + } + } + else + { + if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) + { + /* If, since the command was issued, the tick count has overflowed + but the expiry time has not, then the timer must have already passed + its expiry time and should be processed immediately. */ + xProcessTimerNow = pdTRUE; + } + else + { + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + } + + return xProcessTimerNow; +} +/*-----------------------------------------------------------*/ + +static void prvProcessReceivedCommands( void ) +{ +DaemonTaskMessage_t xMessage; +Timer_t *pxTimer; +BaseType_t xTimerListsWereSwitched, xResult; +TickType_t xTimeNow; + + while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ + { + #if ( INCLUDE_xTimerPendFunctionCall == 1 ) + { + /* Negative commands are pended function calls rather than timer + commands. */ + if( xMessage.xMessageID < ( BaseType_t ) 0 ) + { + const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); + + /* The timer uses the xCallbackParameters member to request a + callback be executed. Check the callback is not NULL. */ + configASSERT( pxCallback ); + + /* Call the function. */ + pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* INCLUDE_xTimerPendFunctionCall */ + + /* Commands that are positive are timer commands rather than pended + function calls. */ + if( xMessage.xMessageID >= ( BaseType_t ) 0 ) + { + /* The messages uses the xTimerParameters member to work on a + software timer. */ + pxTimer = xMessage.u.xTimerParameters.pxTimer; + + if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ + { + /* The timer is in a list, remove it. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + + traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue ); + + /* In this case the xTimerListsWereSwitched parameter is not used, but + it must be present in the function call. prvSampleTimeNow() must be + called after the message is received from xTimerQueue so there is no + possibility of a higher priority task adding a message to the message + queue with a time that is ahead of the timer daemon task (because it + pre-empted the timer daemon task after the xTimeNow value was set). */ + xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); + + switch( xMessage.xMessageID ) + { + case tmrCOMMAND_START : + case tmrCOMMAND_START_FROM_ISR : + case tmrCOMMAND_RESET : + case tmrCOMMAND_RESET_FROM_ISR : + case tmrCOMMAND_START_DONT_TRACE : + /* Start or restart a timer. */ + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; + if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) + { + /* The timer expired before it was added to the active + timer list. Process it now. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + traceTIMER_EXPIRED( pxTimer ); + + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + break; + + case tmrCOMMAND_STOP : + case tmrCOMMAND_STOP_FROM_ISR : + /* The timer has already been removed from the active list. */ + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + break; + + case tmrCOMMAND_CHANGE_PERIOD : + case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : + pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; + pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; + configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); + + /* The new period does not really have a reference, and can + be longer or shorter than the old one. The command time is + therefore set to the current time, and as the period cannot + be zero the next expiry time can only be in the future, + meaning (unlike for the xTimerStart() case above) there is + no fail case that needs to be handled here. */ + ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); + break; + + case tmrCOMMAND_DELETE : + #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) + { + /* The timer has already been removed from the active list, + just free up the memory if the memory was dynamically + allocated. */ + if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) + { + vPortFree( pxTimer ); + } + else + { + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + } + } + #else + { + /* If dynamic allocation is not enabled, the memory + could not have been dynamically allocated. So there is + no need to free the memory - just mark the timer as + "not active". */ + pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; + } + #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ + break; + + default : + /* Don't expect to get here. */ + break; + } + } + } +} +/*-----------------------------------------------------------*/ + +static void prvSwitchTimerLists( void ) +{ +TickType_t xNextExpireTime, xReloadTime; +List_t *pxTemp; +Timer_t *pxTimer; +BaseType_t xResult; + + /* The tick count has overflowed. The timer lists must be switched. + If there are any timers still referenced from the current timer list + then they must have expired and should be processed before the lists + are switched. */ + while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) + { + xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); + + /* Remove the timer from the list. */ + pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ + ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); + traceTIMER_EXPIRED( pxTimer ); + + /* Execute its callback, then send a command to restart the timer if + it is an auto-reload timer. It cannot be restarted here as the lists + have not yet been switched. */ + pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); + + if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) + { + /* Calculate the reload value, and if the reload value results in + the timer going into the same timer list then it has already expired + and the timer should be re-inserted into the current list so it is + processed again within this loop. Otherwise a command should be sent + to restart the timer to ensure it is only inserted into a list after + the lists have been swapped. */ + xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); + if( xReloadTime > xNextExpireTime ) + { + listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); + listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); + vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); + } + else + { + xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); + configASSERT( xResult ); + ( void ) xResult; + } + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + + pxTemp = pxCurrentTimerList; + pxCurrentTimerList = pxOverflowTimerList; + pxOverflowTimerList = pxTemp; +} +/*-----------------------------------------------------------*/ + +static void prvCheckForValidListAndQueue( void ) +{ + /* Check that the list from which active timers are referenced, and the + queue used to communicate with the timer service, have been + initialised. */ + taskENTER_CRITICAL(); + { + if( xTimerQueue == NULL ) + { + vListInitialise( &xActiveTimerList1 ); + vListInitialise( &xActiveTimerList2 ); + pxCurrentTimerList = &xActiveTimerList1; + pxOverflowTimerList = &xActiveTimerList2; + + #if( configSUPPORT_STATIC_ALLOCATION == 1 ) + { + /* The timer queue is allocated statically in case + configSUPPORT_DYNAMIC_ALLOCATION is 0. */ + static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ + static uint8_t ucStaticTimerQueueStorage[ ( size_t ) configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ + + xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); + } + #else + { + xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) ); + } + #endif + + #if ( configQUEUE_REGISTRY_SIZE > 0 ) + { + if( xTimerQueue != NULL ) + { + vQueueAddToRegistry( xTimerQueue, "TmrQ" ); + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + #endif /* configQUEUE_REGISTRY_SIZE */ + } + else + { + mtCOVERAGE_TEST_MARKER(); + } + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer ) +{ +BaseType_t xReturn; +Timer_t *pxTimer = xTimer; + + configASSERT( xTimer ); + + /* Is the timer in the list of active timers? */ + taskENTER_CRITICAL(); + { + if( ( pxTimer->ucStatus & tmrSTATUS_IS_ACTIVE ) == 0 ) + { + xReturn = pdFALSE; + } + else + { + xReturn = pdTRUE; + } + } + taskEXIT_CRITICAL(); + + return xReturn; +} /*lint !e818 Can't be pointer to const due to the typedef. */ +/*-----------------------------------------------------------*/ + +void *pvTimerGetTimerID( const TimerHandle_t xTimer ) +{ +Timer_t * const pxTimer = xTimer; +void *pvReturn; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pvReturn = pxTimer->pvTimerID; + } + taskEXIT_CRITICAL(); + + return pvReturn; +} +/*-----------------------------------------------------------*/ + +void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID ) +{ +Timer_t * const pxTimer = xTimer; + + configASSERT( xTimer ); + + taskENTER_CRITICAL(); + { + pxTimer->pvTimerID = pvNewID; + } + taskEXIT_CRITICAL(); +} +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); + + tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +#if( INCLUDE_xTimerPendFunctionCall == 1 ) + + BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait ) + { + DaemonTaskMessage_t xMessage; + BaseType_t xReturn; + + /* This function can only be called after a timer has been created or + after the scheduler has been started because, until then, the timer + queue does not exist. */ + configASSERT( xTimerQueue ); + + /* Complete the message with the function parameters and post it to the + daemon task. */ + xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK; + xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend; + xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1; + xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2; + + xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); + + tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); + + return xReturn; + } + +#endif /* INCLUDE_xTimerPendFunctionCall */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + UBaseType_t uxTimerGetTimerNumber( TimerHandle_t xTimer ) + { + return ( ( Timer_t * ) xTimer )->uxTimerNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +#if ( configUSE_TRACE_FACILITY == 1 ) + + void vTimerSetTimerNumber( TimerHandle_t xTimer, UBaseType_t uxTimerNumber ) + { + ( ( Timer_t * ) xTimer )->uxTimerNumber = uxTimerNumber; + } + +#endif /* configUSE_TRACE_FACILITY */ +/*-----------------------------------------------------------*/ + +/* This entire source file will be skipped if the application is not configured +to include software timer functionality. If you want to include software timer +functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */ +#endif /* configUSE_TIMERS == 1 */ + + + diff --git a/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h b/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h new file mode 100644 index 0000000..203f33a --- /dev/null +++ b/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h @@ -0,0 +1,429 @@ +/********************************************************************* +* SEGGER Microcontroller GmbH * +* The Embedded Experts * +********************************************************************** +* * +* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* * +* www.segger.com Support: support@segger.com * +* * +********************************************************************** +* * +* SEGGER RTT * Real Time Transfer for embedded targets * +* * +********************************************************************** +* * +* All rights reserved. * +* * +* SEGGER strongly recommends to not make any changes * +* to or modify the source code of this software in order to stay * +* compatible with the RTT protocol and J-Link. * +* * +* Redistribution and use in source and binary forms, with or * +* without modification, are permitted provided that the following * +* condition is met: * +* * +* o Redistributions of source code must retain the above copyright * +* notice, this condition and the following disclaimer. * +* * +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * +* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * +* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * +* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * +* DISCLAIMED. IN NO EVENT SHALL SEGGER Microcontroller BE LIABLE FOR * +* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * +* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * +* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * +* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * +* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * +* DAMAGE. * +* * +********************************************************************** +* * +* RTT version: 7.58c * +* * +********************************************************************** + +---------------------------END-OF-HEADER------------------------------ +File : SEGGER_RTT_Conf.h +Purpose : Implementation of SEGGER real-time transfer (RTT) which + allows real-time communication on targets which support + debugger memory accesses while the CPU is running. +Revision: $Rev: 24316 $ + +*/ + +#ifndef SEGGER_RTT_CONF_H +#define SEGGER_RTT_CONF_H + +#ifdef __IAR_SYSTEMS_ICC__ + #include +#endif + +/********************************************************************* +* +* Defines, configurable +* +********************************************************************** +*/ + +// +// Take in and set to correct values for Cortex-A systems with CPU cache +// +//#define SEGGER_RTT_CPU_CACHE_LINE_SIZE (32) // Largest cache line size (in bytes) in the current system +//#define SEGGER_RTT_UNCACHED_OFF (0xFB000000) // Address alias where RTT CB and buffers can be accessed uncached +// +// Most common case: +// Up-channel 0: RTT +// Up-channel 1: SystemView +// +#ifndef SEGGER_RTT_MAX_NUM_UP_BUFFERS + #define SEGGER_RTT_MAX_NUM_UP_BUFFERS (3) // Max. number of up-buffers (T->H) available on this target (Default: 3) +#endif +// +// Most common case: +// Down-channel 0: RTT +// Down-channel 1: SystemView +// +#ifndef SEGGER_RTT_MAX_NUM_DOWN_BUFFERS + #define SEGGER_RTT_MAX_NUM_DOWN_BUFFERS (3) // Max. number of down-buffers (H->T) available on this target (Default: 3) +#endif + +#ifndef BUFFER_SIZE_UP + #define BUFFER_SIZE_UP (1024) // Size of the buffer for terminal output of target, up to host (Default: 1k) +#endif + +#ifndef BUFFER_SIZE_DOWN + #define BUFFER_SIZE_DOWN (16) // Size of the buffer for terminal input to target from host (Usually keyboard input) (Default: 16) +#endif + +#ifndef SEGGER_RTT_PRINTF_BUFFER_SIZE + #define SEGGER_RTT_PRINTF_BUFFER_SIZE (64u) // Size of buffer for RTT printf to bulk-send chars via RTT (Default: 64) +#endif + +#ifndef SEGGER_RTT_MODE_DEFAULT + #define SEGGER_RTT_MODE_DEFAULT SEGGER_RTT_MODE_NO_BLOCK_SKIP // Mode for pre-initialized terminal channel (buffer 0) +#endif + +/********************************************************************* +* +* RTT memcpy configuration +* +* memcpy() is good for large amounts of data, +* but the overhead is big for small amounts, which are usually stored via RTT. +* With SEGGER_RTT_MEMCPY_USE_BYTELOOP a simple byte loop can be used instead. +* +* SEGGER_RTT_MEMCPY() can be used to replace standard memcpy() in RTT functions. +* This is may be required with memory access restrictions, +* such as on Cortex-A devices with MMU. +*/ +#ifndef SEGGER_RTT_MEMCPY_USE_BYTELOOP + #define SEGGER_RTT_MEMCPY_USE_BYTELOOP 0 // 0: Use memcpy/SEGGER_RTT_MEMCPY, 1: Use a simple byte-loop +#endif +// +// Example definition of SEGGER_RTT_MEMCPY to external memcpy with GCC toolchains and Cortex-A targets +// +//#if ((defined __SES_ARM) || (defined __CROSSWORKS_ARM) || (defined __GNUC__)) && (defined (__ARM_ARCH_7A__)) +// #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) SEGGER_memcpy((pDest), (pSrc), (NumBytes)) +//#endif + +// +// Target is not allowed to perform other RTT operations while string still has not been stored completely. +// Otherwise we would probably end up with a mixed string in the buffer. +// If using RTT from within interrupts, multiple tasks or multi processors, define the SEGGER_RTT_LOCK() and SEGGER_RTT_UNLOCK() function here. +// +// SEGGER_RTT_MAX_INTERRUPT_PRIORITY can be used in the sample lock routines on Cortex-M3/4. +// Make sure to mask all interrupts which can send RTT data, i.e. generate SystemView events, or cause task switches. +// When high-priority interrupts must not be masked while sending RTT data, SEGGER_RTT_MAX_INTERRUPT_PRIORITY needs to be adjusted accordingly. +// (Higher priority = lower priority number) +// Default value for embOS: 128u +// Default configuration in FreeRTOS: configMAX_SYSCALL_INTERRUPT_PRIORITY: ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS) ) +// In case of doubt mask all interrupts: 1 << (8 - BASEPRI_PRIO_BITS) i.e. 1 << 5 when 3 bits are implemented in NVIC +// or define SEGGER_RTT_LOCK() to completely disable interrupts. +// +#ifndef SEGGER_RTT_MAX_INTERRUPT_PRIORITY + #define SEGGER_RTT_MAX_INTERRUPT_PRIORITY (0x20) // Interrupt priority to lock on SEGGER_RTT_LOCK on Cortex-M3/4 (Default: 0x20) +#endif + +/********************************************************************* +* +* RTT lock configuration for SEGGER Embedded Studio, +* Rowley CrossStudio and GCC +*/ +#if ((defined(__SES_ARM) || defined(__SES_RISCV) || defined(__CROSSWORKS_ARM) || defined(__GNUC__) || defined(__clang__)) && !defined (__CC_ARM) && !defined(WIN32)) + #if (defined(__ARM_ARCH_6M__) || defined(__ARM_ARCH_8M_BASE__)) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + __asm volatile ("mrs %0, primask \n\t" \ + "movs r1, #1 \n\t" \ + "msr primask, r1 \n\t" \ + : "=r" (_SEGGER_RTT__LockState) \ + : \ + : "r1", "cc" \ + ); + + #define SEGGER_RTT_UNLOCK() __asm volatile ("msr primask, %0 \n\t" \ + : \ + : "r" (_SEGGER_RTT__LockState) \ + : \ + ); \ + } + #elif (defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_8M_MAIN__)) + #ifndef SEGGER_RTT_MAX_INTERRUPT_PRIORITY + #define SEGGER_RTT_MAX_INTERRUPT_PRIORITY (0x20) + #endif + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + __asm volatile ("mrs %0, basepri \n\t" \ + "mov r1, %1 \n\t" \ + "msr basepri, r1 \n\t" \ + : "=r" (_SEGGER_RTT__LockState) \ + : "i"(SEGGER_RTT_MAX_INTERRUPT_PRIORITY) \ + : "r1", "cc" \ + ); + + #define SEGGER_RTT_UNLOCK() __asm volatile ("msr basepri, %0 \n\t" \ + : \ + : "r" (_SEGGER_RTT__LockState) \ + : \ + ); \ + } + + #elif (defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__)) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + __asm volatile ("mrs r1, CPSR \n\t" \ + "mov %0, r1 \n\t" \ + "orr r1, r1, #0xC0 \n\t" \ + "msr CPSR_c, r1 \n\t" \ + : "=r" (_SEGGER_RTT__LockState) \ + : \ + : "r1", "cc" \ + ); + + #define SEGGER_RTT_UNLOCK() __asm volatile ("mov r0, %0 \n\t" \ + "mrs r1, CPSR \n\t" \ + "bic r1, r1, #0xC0 \n\t" \ + "and r0, r0, #0xC0 \n\t" \ + "orr r1, r1, r0 \n\t" \ + "msr CPSR_c, r1 \n\t" \ + : \ + : "r" (_SEGGER_RTT__LockState) \ + : "r0", "r1", "cc" \ + ); \ + } + #elif defined(__riscv) || defined(__riscv_xlen) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + __asm volatile ("csrr %0, mstatus \n\t" \ + "csrci mstatus, 8 \n\t" \ + "andi %0, %0, 8 \n\t" \ + : "=r" (_SEGGER_RTT__LockState) \ + : \ + : \ + ); + + #define SEGGER_RTT_UNLOCK() __asm volatile ("csrr a1, mstatus \n\t" \ + "or %0, %0, a1 \n\t" \ + "csrs mstatus, %0 \n\t" \ + : \ + : "r" (_SEGGER_RTT__LockState) \ + : "a1" \ + ); \ + } + #else + #define SEGGER_RTT_LOCK() + #define SEGGER_RTT_UNLOCK() + #endif +#endif + +/********************************************************************* +* +* RTT lock configuration for IAR EWARM +*/ +#ifdef __ICCARM__ + #if (defined (__ARM6M__) && (__CORE__ == __ARM6M__)) || \ + (defined (__ARM8M_BASELINE__) && (__CORE__ == __ARM8M_BASELINE__)) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = __get_PRIMASK(); \ + __set_PRIMASK(1); + + #define SEGGER_RTT_UNLOCK() __set_PRIMASK(_SEGGER_RTT__LockState); \ + } + #elif (defined (__ARM7EM__) && (__CORE__ == __ARM7EM__)) || \ + (defined (__ARM7M__) && (__CORE__ == __ARM7M__)) || \ + (defined (__ARM8M_MAINLINE__) && (__CORE__ == __ARM8M_MAINLINE__)) || \ + (defined (__ARM8M_MAINLINE__) && (__CORE__ == __ARM8M_MAINLINE__)) + #ifndef SEGGER_RTT_MAX_INTERRUPT_PRIORITY + #define SEGGER_RTT_MAX_INTERRUPT_PRIORITY (0x20) + #endif + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = __get_BASEPRI(); \ + __set_BASEPRI(SEGGER_RTT_MAX_INTERRUPT_PRIORITY); + + #define SEGGER_RTT_UNLOCK() __set_BASEPRI(_SEGGER_RTT__LockState); \ + } + #elif (defined (__ARM7A__) && (__CORE__ == __ARM7A__)) || \ + (defined (__ARM7R__) && (__CORE__ == __ARM7R__)) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + __asm volatile ("mrs r1, CPSR \n\t" \ + "mov %0, r1 \n\t" \ + "orr r1, r1, #0xC0 \n\t" \ + "msr CPSR_c, r1 \n\t" \ + : "=r" (_SEGGER_RTT__LockState) \ + : \ + : "r1", "cc" \ + ); + + #define SEGGER_RTT_UNLOCK() __asm volatile ("mov r0, %0 \n\t" \ + "mrs r1, CPSR \n\t" \ + "bic r1, r1, #0xC0 \n\t" \ + "and r0, r0, #0xC0 \n\t" \ + "orr r1, r1, r0 \n\t" \ + "msr CPSR_c, r1 \n\t" \ + : \ + : "r" (_SEGGER_RTT__LockState) \ + : "r0", "r1", "cc" \ + ); \ + } + #endif +#endif + +/********************************************************************* +* +* RTT lock configuration for IAR RX +*/ +#ifdef __ICCRX__ + #define SEGGER_RTT_LOCK() { \ + unsigned long _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = __get_interrupt_state(); \ + __disable_interrupt(); + + #define SEGGER_RTT_UNLOCK() __set_interrupt_state(_SEGGER_RTT__LockState); \ + } +#endif + +/********************************************************************* +* +* RTT lock configuration for IAR RL78 +*/ +#ifdef __ICCRL78__ + #define SEGGER_RTT_LOCK() { \ + __istate_t _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = __get_interrupt_state(); \ + __disable_interrupt(); + + #define SEGGER_RTT_UNLOCK() __set_interrupt_state(_SEGGER_RTT__LockState); \ + } +#endif + +/********************************************************************* +* +* RTT lock configuration for KEIL ARM +*/ +#ifdef __CC_ARM + #if (defined __TARGET_ARCH_6S_M) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + register unsigned char _SEGGER_RTT__PRIMASK __asm( "primask"); \ + _SEGGER_RTT__LockState = _SEGGER_RTT__PRIMASK; \ + _SEGGER_RTT__PRIMASK = 1u; \ + __schedule_barrier(); + + #define SEGGER_RTT_UNLOCK() _SEGGER_RTT__PRIMASK = _SEGGER_RTT__LockState; \ + __schedule_barrier(); \ + } + #elif (defined(__TARGET_ARCH_7_M) || defined(__TARGET_ARCH_7E_M)) + #ifndef SEGGER_RTT_MAX_INTERRUPT_PRIORITY + #define SEGGER_RTT_MAX_INTERRUPT_PRIORITY (0x20) + #endif + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + register unsigned char BASEPRI __asm( "basepri"); \ + _SEGGER_RTT__LockState = BASEPRI; \ + BASEPRI = SEGGER_RTT_MAX_INTERRUPT_PRIORITY; \ + __schedule_barrier(); + + #define SEGGER_RTT_UNLOCK() BASEPRI = _SEGGER_RTT__LockState; \ + __schedule_barrier(); \ + } + #endif +#endif + +/********************************************************************* +* +* RTT lock configuration for TI ARM +*/ +#ifdef __TI_ARM__ + #if defined (__TI_ARM_V6M0__) + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = __get_PRIMASK(); \ + __set_PRIMASK(1); + + #define SEGGER_RTT_UNLOCK() __set_PRIMASK(_SEGGER_RTT__LockState); \ + } + #elif (defined (__TI_ARM_V7M3__) || defined (__TI_ARM_V7M4__)) + #ifndef SEGGER_RTT_MAX_INTERRUPT_PRIORITY + #define SEGGER_RTT_MAX_INTERRUPT_PRIORITY (0x20) + #endif + #define SEGGER_RTT_LOCK() { \ + unsigned int _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = _set_interrupt_priority(SEGGER_RTT_MAX_INTERRUPT_PRIORITY); + + #define SEGGER_RTT_UNLOCK() _set_interrupt_priority(_SEGGER_RTT__LockState); \ + } + #endif +#endif + +/********************************************************************* +* +* RTT lock configuration for CCRX +*/ +#ifdef __RX + #include + #define SEGGER_RTT_LOCK() { \ + unsigned long _SEGGER_RTT__LockState; \ + _SEGGER_RTT__LockState = get_psw() & 0x010000; \ + clrpsw_i(); + + #define SEGGER_RTT_UNLOCK() set_psw(get_psw() | _SEGGER_RTT__LockState); \ + } +#endif + +/********************************************************************* +* +* RTT lock configuration for embOS Simulation on Windows +* (Can also be used for generic RTT locking with embOS) +*/ +#if defined(WIN32) || defined(SEGGER_RTT_LOCK_EMBOS) + +void OS_SIM_EnterCriticalSection(void); +void OS_SIM_LeaveCriticalSection(void); + +#define SEGGER_RTT_LOCK() { \ + OS_SIM_EnterCriticalSection(); + +#define SEGGER_RTT_UNLOCK() OS_SIM_LeaveCriticalSection(); \ + } +#endif + +/********************************************************************* +* +* RTT lock configuration fallback +*/ +#ifndef SEGGER_RTT_LOCK + #define SEGGER_RTT_LOCK() // Lock RTT (nestable) (i.e. disable interrupts) +#endif + +#ifndef SEGGER_RTT_UNLOCK + #define SEGGER_RTT_UNLOCK() // Unlock RTT (nestable) (i.e. enable previous interrupt lock state) +#endif + +#endif +/*************************** End of file ****************************/ diff --git a/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c new file mode 100644 index 0000000..23211cc --- /dev/null +++ b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c @@ -0,0 +1,2090 @@ +/********************************************************************* +* SEGGER Microcontroller GmbH * +* The Embedded Experts * +********************************************************************** +* * +* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* * +* www.segger.com Support: support@segger.com * +* * +********************************************************************** +* * +* SEGGER RTT * Real Time Transfer for embedded targets * +* * +********************************************************************** +* * +* All rights reserved. * +* * +* SEGGER strongly recommends to not make any changes * +* to or modify the source code of this software in order to stay * +* compatible with the RTT protocol and J-Link. * +* * +* Redistribution and use in source and binary forms, with or * +* without modification, are permitted provided that the following * +* condition is met: * +* * +* o Redistributions of source code must retain the above copyright * +* notice, this condition and the following disclaimer. * +* * +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * +* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * +* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * +* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * +* DISCLAIMED. IN NO EVENT SHALL SEGGER Microcontroller BE LIABLE FOR * +* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * +* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * +* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * +* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * +* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * +* DAMAGE. * +* * +********************************************************************** +* * +* RTT version: 7.58c * +* * +********************************************************************** + +---------------------------END-OF-HEADER------------------------------ +File : SEGGER_RTT.c +Purpose : Implementation of SEGGER real-time transfer (RTT) which + allows real-time communication on targets which support + debugger memory accesses while the CPU is running. +Revision: $Rev: 24715 $ + +Additional information: + Type "int" is assumed to be 32-bits in size + H->T Host to target communication + T->H Target to host communication + + RTT channel 0 is always present and reserved for Terminal usage. + Name is fixed to "Terminal" + + Effective buffer size: SizeOfBuffer - 1 + + WrOff == RdOff: Buffer is empty + WrOff == (RdOff - 1): Buffer is full + WrOff > RdOff: Free space includes wrap-around + WrOff < RdOff: Used space includes wrap-around + (WrOff == (SizeOfBuffer - 1)) && (RdOff == 0): + Buffer full and wrap-around after next byte + + +---------------------------------------------------------------------- +*/ + +#include "SEGGER_RTT.h" + +#include // for memcpy + +/********************************************************************* +* +* Configuration, default values +* +********************************************************************** +*/ + +#if SEGGER_RTT_CPU_CACHE_LINE_SIZE + #ifdef SEGGER_RTT_CB_ALIGN + #error "Custom SEGGER_RTT_CB_ALIGN() is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif + #ifdef SEGGER_RTT_BUFFER_ALIGN + #error "Custom SEGGER_RTT_BUFFER_ALIGN() is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif + #ifdef SEGGER_RTT_PUT_CB_SECTION + #error "Custom SEGGER_RTT_PUT_CB_SECTION() is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif + #ifdef SEGGER_RTT_PUT_BUFFER_SECTION + #error "Custom SEGGER_RTT_PUT_BUFFER_SECTION() is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif + #ifdef SEGGER_RTT_BUFFER_ALIGNMENT + #error "Custom SEGGER_RTT_BUFFER_ALIGNMENT is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif + #ifdef SEGGER_RTT_ALIGNMENT + #error "Custom SEGGER_RTT_ALIGNMENT is not supported for SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif +#endif + +#ifndef BUFFER_SIZE_UP + #define BUFFER_SIZE_UP 1024 // Size of the buffer for terminal output of target, up to host +#endif + +#ifndef BUFFER_SIZE_DOWN + #define BUFFER_SIZE_DOWN 16 // Size of the buffer for terminal input to target from host (Usually keyboard input) +#endif + +#ifndef SEGGER_RTT_MAX_NUM_UP_BUFFERS + #define SEGGER_RTT_MAX_NUM_UP_BUFFERS 2 // Number of up-buffers (T->H) available on this target +#endif + +#ifndef SEGGER_RTT_MAX_NUM_DOWN_BUFFERS + #define SEGGER_RTT_MAX_NUM_DOWN_BUFFERS 2 // Number of down-buffers (H->T) available on this target +#endif + +#ifndef SEGGER_RTT_BUFFER_SECTION + #if defined(SEGGER_RTT_SECTION) + #define SEGGER_RTT_BUFFER_SECTION SEGGER_RTT_SECTION + #endif +#endif + +#ifndef SEGGER_RTT_ALIGNMENT + #define SEGGER_RTT_ALIGNMENT SEGGER_RTT_CPU_CACHE_LINE_SIZE +#endif + +#ifndef SEGGER_RTT_BUFFER_ALIGNMENT + #define SEGGER_RTT_BUFFER_ALIGNMENT SEGGER_RTT_CPU_CACHE_LINE_SIZE +#endif + +#ifndef SEGGER_RTT_MODE_DEFAULT + #define SEGGER_RTT_MODE_DEFAULT SEGGER_RTT_MODE_NO_BLOCK_SKIP +#endif + +#ifndef SEGGER_RTT_LOCK + #define SEGGER_RTT_LOCK() +#endif + +#ifndef SEGGER_RTT_UNLOCK + #define SEGGER_RTT_UNLOCK() +#endif + +#ifndef STRLEN + #define STRLEN(a) strlen((a)) +#endif + +#ifndef STRCPY + #define STRCPY(pDest, pSrc) strcpy((pDest), (pSrc)) +#endif + +#ifndef SEGGER_RTT_MEMCPY_USE_BYTELOOP + #define SEGGER_RTT_MEMCPY_USE_BYTELOOP 0 +#endif + +#ifndef SEGGER_RTT_MEMCPY + #ifdef MEMCPY + #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) MEMCPY((pDest), (pSrc), (NumBytes)) + #else + #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) memcpy((pDest), (pSrc), (NumBytes)) + #endif +#endif + +#ifndef MIN + #define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#ifndef MAX + #define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif +// +// For some environments, NULL may not be defined until certain headers are included +// +#ifndef NULL + #define NULL 0 +#endif + +/********************************************************************* +* +* Defines, fixed +* +********************************************************************** +*/ +#if (defined __ICCARM__) || (defined __ICCRX__) + #define RTT_PRAGMA(P) _Pragma(#P) +#endif + +#if SEGGER_RTT_ALIGNMENT || SEGGER_RTT_BUFFER_ALIGNMENT + #if ((defined __GNUC__) || (defined __clang__)) + #define SEGGER_RTT_ALIGN(Var, Alignment) Var __attribute__ ((aligned (Alignment))) + #elif (defined __ICCARM__) || (defined __ICCRX__) + #define PRAGMA(A) _Pragma(#A) +#define SEGGER_RTT_ALIGN(Var, Alignment) RTT_PRAGMA(data_alignment=Alignment) \ + Var + #elif (defined __CC_ARM) + #define SEGGER_RTT_ALIGN(Var, Alignment) Var __attribute__ ((aligned (Alignment))) + #else + #error "Alignment not supported for this compiler." + #endif +#else + #define SEGGER_RTT_ALIGN(Var, Alignment) Var +#endif + +#if defined(SEGGER_RTT_SECTION) || defined (SEGGER_RTT_BUFFER_SECTION) + #if ((defined __GNUC__) || (defined __clang__)) + #define SEGGER_RTT_PUT_SECTION(Var, Section) __attribute__ ((section (Section))) Var + #elif (defined __ICCARM__) || (defined __ICCRX__) +#define SEGGER_RTT_PUT_SECTION(Var, Section) RTT_PRAGMA(location=Section) \ + Var + #elif (defined __CC_ARM) + #define SEGGER_RTT_PUT_SECTION(Var, Section) __attribute__ ((section (Section), zero_init)) Var + #else + #error "Section placement not supported for this compiler." + #endif +#else + #define SEGGER_RTT_PUT_SECTION(Var, Section) Var +#endif + +#if SEGGER_RTT_ALIGNMENT + #define SEGGER_RTT_CB_ALIGN(Var) SEGGER_RTT_ALIGN(Var, SEGGER_RTT_ALIGNMENT) +#else + #define SEGGER_RTT_CB_ALIGN(Var) Var +#endif + +#if SEGGER_RTT_BUFFER_ALIGNMENT + #define SEGGER_RTT_BUFFER_ALIGN(Var) SEGGER_RTT_ALIGN(Var, SEGGER_RTT_BUFFER_ALIGNMENT) +#else + #define SEGGER_RTT_BUFFER_ALIGN(Var) Var +#endif + + +#if defined(SEGGER_RTT_SECTION) + #define SEGGER_RTT_PUT_CB_SECTION(Var) SEGGER_RTT_PUT_SECTION(Var, SEGGER_RTT_SECTION) +#else + #define SEGGER_RTT_PUT_CB_SECTION(Var) Var +#endif + +#if defined(SEGGER_RTT_BUFFER_SECTION) + #define SEGGER_RTT_PUT_BUFFER_SECTION(Var) SEGGER_RTT_PUT_SECTION(Var, SEGGER_RTT_BUFFER_SECTION) +#else + #define SEGGER_RTT_PUT_BUFFER_SECTION(Var) Var +#endif + +/********************************************************************* +* +* Static const data +* +********************************************************************** +*/ + +static unsigned char _aTerminalId[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; + +/********************************************************************* +* +* Static data +* +********************************************************************** +*/ + +// +// RTT Control Block and allocate buffers for channel 0 +// +#if SEGGER_RTT_CPU_CACHE_LINE_SIZE + #if ((defined __GNUC__) || (defined __clang__)) + SEGGER_RTT_CB _SEGGER_RTT __attribute__ ((aligned (SEGGER_RTT_CPU_CACHE_LINE_SIZE))); + static char _acUpBuffer [SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(BUFFER_SIZE_UP)] __attribute__ ((aligned (SEGGER_RTT_CPU_CACHE_LINE_SIZE))); + static char _acDownBuffer[SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(BUFFER_SIZE_DOWN)] __attribute__ ((aligned (SEGGER_RTT_CPU_CACHE_LINE_SIZE))); + #else + #error "Don't know how to place _SEGGER_RTT, _acUpBuffer, _acDownBuffer cache-line aligned" + #endif +#else + SEGGER_RTT_PUT_CB_SECTION(SEGGER_RTT_CB_ALIGN(SEGGER_RTT_CB _SEGGER_RTT)); + SEGGER_RTT_PUT_BUFFER_SECTION(SEGGER_RTT_BUFFER_ALIGN(static char _acUpBuffer [BUFFER_SIZE_UP])); + SEGGER_RTT_PUT_BUFFER_SECTION(SEGGER_RTT_BUFFER_ALIGN(static char _acDownBuffer[BUFFER_SIZE_DOWN])); +#endif + +static unsigned char _ActiveTerminal; + +/********************************************************************* +* +* Static functions +* +********************************************************************** +*/ + +/********************************************************************* +* +* _DoInit() +* +* Function description +* Initializes the control block an buffers. +* May only be called via INIT() to avoid overriding settings. +* +*/ +#define INIT() { \ + volatile SEGGER_RTT_CB* pRTTCBInit; \ + pRTTCBInit = (volatile SEGGER_RTT_CB*)((char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); \ + do { \ + if (pRTTCBInit->acID[0] == '\0') { \ + _DoInit(); \ + } \ + } while (0); \ + } + +static void _DoInit(void) { + volatile SEGGER_RTT_CB* p; // Volatile to make sure that compiler cannot change the order of accesses to the control block + static const char _aInitStr[] = "\0\0\0\0\0\0TTR REGGES"; // Init complete ID string to make sure that things also work if RTT is linked to a no-init memory area + unsigned i; + // + // Initialize control block + // + p = (volatile SEGGER_RTT_CB*)((char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access control block uncached so that nothing in the cache ever becomes dirty and all changes are visible in HW directly + memset((SEGGER_RTT_CB*)p, 0, sizeof(_SEGGER_RTT)); // Make sure that the RTT CB is always zero initialized. + p->MaxNumUpBuffers = SEGGER_RTT_MAX_NUM_UP_BUFFERS; + p->MaxNumDownBuffers = SEGGER_RTT_MAX_NUM_DOWN_BUFFERS; + // + // Initialize up buffer 0 + // + p->aUp[0].sName = "Terminal"; + p->aUp[0].pBuffer = _acUpBuffer; + p->aUp[0].SizeOfBuffer = BUFFER_SIZE_UP; + p->aUp[0].RdOff = 0u; + p->aUp[0].WrOff = 0u; + p->aUp[0].Flags = SEGGER_RTT_MODE_DEFAULT; + // + // Initialize down buffer 0 + // + p->aDown[0].sName = "Terminal"; + p->aDown[0].pBuffer = _acDownBuffer; + p->aDown[0].SizeOfBuffer = BUFFER_SIZE_DOWN; + p->aDown[0].RdOff = 0u; + p->aDown[0].WrOff = 0u; + p->aDown[0].Flags = SEGGER_RTT_MODE_DEFAULT; + // + // Finish initialization of the control block. + // Copy Id string backwards to make sure that "SEGGER RTT" is not found in initializer memory (usually flash), + // as this would cause J-Link to "find" the control block at a wrong address. + // + RTT__DMB(); // Force order of memory accesses for cores that may perform out-of-order memory accesses + for (i = 0; i < sizeof(_aInitStr) - 1; ++i) { + p->acID[i] = _aInitStr[sizeof(_aInitStr) - 2 - i]; // Skip terminating \0 at the end of the array + } + RTT__DMB(); // Force order of memory accesses for cores that may perform out-of-order memory accesses +} + +/********************************************************************* +* +* _WriteBlocking() +* +* Function description +* Stores a specified number of characters in SEGGER RTT ring buffer +* and updates the associated write pointer which is periodically +* read by the host. +* The caller is responsible for managing the write chunk sizes as +* _WriteBlocking() will block until all data has been posted successfully. +* +* Parameters +* pRing Ring buffer to post to. +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Return value +* >= 0 - Number of bytes written into buffer. +*/ +static unsigned _WriteBlocking(SEGGER_RTT_BUFFER_UP* pRing, const char* pBuffer, unsigned NumBytes) { + unsigned NumBytesToWrite; + unsigned NumBytesWritten; + unsigned RdOff; + unsigned WrOff; + volatile char* pDst; + // + // Write data to buffer and handle wrap-around if necessary + // + NumBytesWritten = 0u; + WrOff = pRing->WrOff; + do { + RdOff = pRing->RdOff; // May be changed by host (debug probe) in the meantime + if (RdOff > WrOff) { + NumBytesToWrite = RdOff - WrOff - 1u; + } else { + NumBytesToWrite = pRing->SizeOfBuffer - (WrOff - RdOff + 1u); + } + NumBytesToWrite = MIN(NumBytesToWrite, (pRing->SizeOfBuffer - WrOff)); // Number of bytes that can be written until buffer wrap-around + NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytesWritten += NumBytesToWrite; + NumBytes -= NumBytesToWrite; + WrOff += NumBytesToWrite; + while (NumBytesToWrite--) { + *pDst++ = *pBuffer++; + }; +#else + SEGGER_RTT_MEMCPY((void*)pDst, pBuffer, NumBytesToWrite); + NumBytesWritten += NumBytesToWrite; + pBuffer += NumBytesToWrite; + NumBytes -= NumBytesToWrite; + WrOff += NumBytesToWrite; +#endif + if (WrOff == pRing->SizeOfBuffer) { + WrOff = 0u; + } + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff; + } while (NumBytes); + return NumBytesWritten; +} + +/********************************************************************* +* +* _WriteNoCheck() +* +* Function description +* Stores a specified number of characters in SEGGER RTT ring buffer +* and updates the associated write pointer which is periodically +* read by the host. +* It is callers responsibility to make sure data actually fits in buffer. +* +* Parameters +* pRing Ring buffer to post to. +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Notes +* (1) If there might not be enough space in the "Up"-buffer, call _WriteBlocking +*/ +static void _WriteNoCheck(SEGGER_RTT_BUFFER_UP* pRing, const char* pData, unsigned NumBytes) { + unsigned NumBytesAtOnce; + unsigned WrOff; + unsigned Rem; + volatile char* pDst; + + WrOff = pRing->WrOff; + Rem = pRing->SizeOfBuffer - WrOff; + if (Rem > NumBytes) { + // + // All data fits before wrap around + // + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + WrOff += NumBytes; + while (NumBytes--) { + *pDst++ = *pData++; + }; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff; +#else + SEGGER_RTT_MEMCPY((void*)pDst, pData, NumBytes); + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff + NumBytes; +#endif + } else { + // + // We reach the end of the buffer, so need to wrap around + // +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; + NumBytesAtOnce = Rem; + while (NumBytesAtOnce--) { + *pDst++ = *pData++; + }; + pDst = pRing->pBuffer + SEGGER_RTT_UNCACHED_OFF; + NumBytesAtOnce = NumBytes - Rem; + while (NumBytesAtOnce--) { + *pDst++ = *pData++; + }; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = NumBytes - Rem; +#else + NumBytesAtOnce = Rem; + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; + SEGGER_RTT_MEMCPY((void*)pDst, pData, NumBytesAtOnce); + NumBytesAtOnce = NumBytes - Rem; + pDst = pRing->pBuffer + SEGGER_RTT_UNCACHED_OFF; + SEGGER_RTT_MEMCPY((void*)pDst, pData + Rem, NumBytesAtOnce); + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = NumBytesAtOnce; +#endif + } +} + +/********************************************************************* +* +* _PostTerminalSwitch() +* +* Function description +* Switch terminal to the given terminal ID. It is the caller's +* responsibility to ensure the terminal ID is correct and there is +* enough space in the buffer for this to complete successfully. +* +* Parameters +* pRing Ring buffer to post to. +* TerminalId Terminal ID to switch to. +*/ +static void _PostTerminalSwitch(SEGGER_RTT_BUFFER_UP* pRing, unsigned char TerminalId) { + unsigned char ac[2]; + + ac[0] = 0xFFu; + ac[1] = _aTerminalId[TerminalId]; // Caller made already sure that TerminalId does not exceed our terminal limit + _WriteBlocking(pRing, (const char*)ac, 2u); +} + +/********************************************************************* +* +* _GetAvailWriteSpace() +* +* Function description +* Returns the number of bytes that can be written to the ring +* buffer without blocking. +* +* Parameters +* pRing Ring buffer to check. +* +* Return value +* Number of bytes that are free in the buffer. +*/ +static unsigned _GetAvailWriteSpace(SEGGER_RTT_BUFFER_UP* pRing) { + unsigned RdOff; + unsigned WrOff; + unsigned r; + // + // Avoid warnings regarding volatile access order. It's not a problem + // in this case, but dampen compiler enthusiasm. + // + RdOff = pRing->RdOff; + WrOff = pRing->WrOff; + if (RdOff <= WrOff) { + r = pRing->SizeOfBuffer - 1u - WrOff + RdOff; + } else { + r = RdOff - WrOff - 1u; + } + return r; +} + +/********************************************************************* +* +* Public code +* +********************************************************************** +*/ + +/********************************************************************* +* +* SEGGER_RTT_ReadUpBufferNoLock() +* +* Function description +* Reads characters from SEGGER real-time-terminal control block +* which have been previously stored by the application. +* Do not lock against interrupts and multiple access. +* Used to do the same operation that J-Link does, to transfer +* RTT data via other channels, such as TCP/IP or UART. +* +* Parameters +* BufferIndex Index of Up-buffer to be used. +* pBuffer Pointer to buffer provided by target application, to copy characters from RTT-up-buffer to. +* BufferSize Size of the target application buffer. +* +* Return value +* Number of bytes that have been read. +* +* Additional information +* This function must not be called when J-Link might also do RTT. +*/ +unsigned SEGGER_RTT_ReadUpBufferNoLock(unsigned BufferIndex, void* pData, unsigned BufferSize) { + unsigned NumBytesRem; + unsigned NumBytesRead; + unsigned RdOff; + unsigned WrOff; + unsigned char* pBuffer; + SEGGER_RTT_BUFFER_UP* pRing; + volatile char* pSrc; + + INIT(); + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + pBuffer = (unsigned char*)pData; + RdOff = pRing->RdOff; + WrOff = pRing->WrOff; + NumBytesRead = 0u; + // + // Read from current read position to wrap-around of buffer, first + // + if (RdOff > WrOff) { + NumBytesRem = pRing->SizeOfBuffer - RdOff; + NumBytesRem = MIN(NumBytesRem, BufferSize); + pSrc = (pRing->pBuffer + RdOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytesRead += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; + while (NumBytesRem--) { + *pBuffer++ = *pSrc++; + }; +#else + SEGGER_RTT_MEMCPY(pBuffer, (void*)pSrc, NumBytesRem); + NumBytesRead += NumBytesRem; + pBuffer += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; +#endif + // + // Handle wrap-around of buffer + // + if (RdOff == pRing->SizeOfBuffer) { + RdOff = 0u; + } + } + // + // Read remaining items of buffer + // + NumBytesRem = WrOff - RdOff; + NumBytesRem = MIN(NumBytesRem, BufferSize); + if (NumBytesRem > 0u) { + pSrc = (pRing->pBuffer + RdOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytesRead += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; + while (NumBytesRem--) { + *pBuffer++ = *pSrc++; + }; +#else + SEGGER_RTT_MEMCPY(pBuffer, (void*)pSrc, NumBytesRem); + NumBytesRead += NumBytesRem; + pBuffer += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; +#endif + } + // + // Update read offset of buffer + // + if (NumBytesRead) { + pRing->RdOff = RdOff; + } + // + return NumBytesRead; +} + +/********************************************************************* +* +* SEGGER_RTT_ReadNoLock() +* +* Function description +* Reads characters from SEGGER real-time-terminal control block +* which have been previously stored by the host. +* Do not lock against interrupts and multiple access. +* +* Parameters +* BufferIndex Index of Down-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to buffer provided by target application, to copy characters from RTT-down-buffer to. +* BufferSize Size of the target application buffer. +* +* Return value +* Number of bytes that have been read. +*/ +unsigned SEGGER_RTT_ReadNoLock(unsigned BufferIndex, void* pData, unsigned BufferSize) { + unsigned NumBytesRem; + unsigned NumBytesRead; + unsigned RdOff; + unsigned WrOff; + unsigned char* pBuffer; + SEGGER_RTT_BUFFER_DOWN* pRing; + volatile char* pSrc; + // + INIT(); + pRing = (SEGGER_RTT_BUFFER_DOWN*)((char*)&_SEGGER_RTT.aDown[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + pBuffer = (unsigned char*)pData; + RdOff = pRing->RdOff; + WrOff = pRing->WrOff; + NumBytesRead = 0u; + // + // Read from current read position to wrap-around of buffer, first + // + if (RdOff > WrOff) { + NumBytesRem = pRing->SizeOfBuffer - RdOff; + NumBytesRem = MIN(NumBytesRem, BufferSize); + pSrc = (pRing->pBuffer + RdOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytesRead += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; + while (NumBytesRem--) { + *pBuffer++ = *pSrc++; + }; +#else + SEGGER_RTT_MEMCPY(pBuffer, (void*)pSrc, NumBytesRem); + NumBytesRead += NumBytesRem; + pBuffer += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; +#endif + // + // Handle wrap-around of buffer + // + if (RdOff == pRing->SizeOfBuffer) { + RdOff = 0u; + } + } + // + // Read remaining items of buffer + // + NumBytesRem = WrOff - RdOff; + NumBytesRem = MIN(NumBytesRem, BufferSize); + if (NumBytesRem > 0u) { + pSrc = (pRing->pBuffer + RdOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytesRead += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; + while (NumBytesRem--) { + *pBuffer++ = *pSrc++; + }; +#else + SEGGER_RTT_MEMCPY(pBuffer, (void*)pSrc, NumBytesRem); + NumBytesRead += NumBytesRem; + pBuffer += NumBytesRem; + BufferSize -= NumBytesRem; + RdOff += NumBytesRem; +#endif + } + if (NumBytesRead) { + pRing->RdOff = RdOff; + } + // + return NumBytesRead; +} + +/********************************************************************* +* +* SEGGER_RTT_ReadUpBuffer +* +* Function description +* Reads characters from SEGGER real-time-terminal control block +* which have been previously stored by the application. +* Used to do the same operation that J-Link does, to transfer +* RTT data via other channels, such as TCP/IP or UART. +* +* Parameters +* BufferIndex Index of Up-buffer to be used. +* pBuffer Pointer to buffer provided by target application, to copy characters from RTT-up-buffer to. +* BufferSize Size of the target application buffer. +* +* Return value +* Number of bytes that have been read. +* +* Additional information +* This function must not be called when J-Link might also do RTT. +* This function locks against all other RTT operations. I.e. during +* the read operation, writing is also locked. +* If only one consumer reads from the up buffer, +* call sEGGER_RTT_ReadUpBufferNoLock() instead. +*/ +unsigned SEGGER_RTT_ReadUpBuffer(unsigned BufferIndex, void* pBuffer, unsigned BufferSize) { + unsigned NumBytesRead; + + SEGGER_RTT_LOCK(); + // + // Call the non-locking read function + // + NumBytesRead = SEGGER_RTT_ReadUpBufferNoLock(BufferIndex, pBuffer, BufferSize); + // + // Finish up. + // + SEGGER_RTT_UNLOCK(); + // + return NumBytesRead; +} + +/********************************************************************* +* +* SEGGER_RTT_Read +* +* Function description +* Reads characters from SEGGER real-time-terminal control block +* which have been previously stored by the host. +* +* Parameters +* BufferIndex Index of Down-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to buffer provided by target application, to copy characters from RTT-down-buffer to. +* BufferSize Size of the target application buffer. +* +* Return value +* Number of bytes that have been read. +*/ +unsigned SEGGER_RTT_Read(unsigned BufferIndex, void* pBuffer, unsigned BufferSize) { + unsigned NumBytesRead; + + SEGGER_RTT_LOCK(); + // + // Call the non-locking read function + // + NumBytesRead = SEGGER_RTT_ReadNoLock(BufferIndex, pBuffer, BufferSize); + // + // Finish up. + // + SEGGER_RTT_UNLOCK(); + // + return NumBytesRead; +} + +/********************************************************************* +* +* SEGGER_RTT_WriteWithOverwriteNoLock +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block. +* SEGGER_RTT_WriteWithOverwriteNoLock does not lock the application +* and overwrites data if the data does not fit into the buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Notes +* (1) If there is not enough space in the "Up"-buffer, data is overwritten. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +* (3) Do not use SEGGER_RTT_WriteWithOverwriteNoLock if a J-Link +* connection reads RTT data. +*/ +void SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + const char* pData; + SEGGER_RTT_BUFFER_UP* pRing; + unsigned Avail; + volatile char* pDst; + // + // Get "to-host" ring buffer and copy some elements into local variables. + // + pData = (const char *)pBuffer; + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // Check if we will overwrite data and need to adjust the RdOff. + // + if (pRing->WrOff == pRing->RdOff) { + Avail = pRing->SizeOfBuffer - 1u; + } else if ( pRing->WrOff < pRing->RdOff) { + Avail = pRing->RdOff - pRing->WrOff - 1u; + } else { + Avail = pRing->RdOff - pRing->WrOff - 1u + pRing->SizeOfBuffer; + } + if (NumBytes > Avail) { + pRing->RdOff += (NumBytes - Avail); + while (pRing->RdOff >= pRing->SizeOfBuffer) { + pRing->RdOff -= pRing->SizeOfBuffer; + } + } + // + // Write all data, no need to check the RdOff, but possibly handle multiple wrap-arounds + // + Avail = pRing->SizeOfBuffer - pRing->WrOff; + do { + if (Avail > NumBytes) { + // + // Last round + // + pDst = (pRing->pBuffer + pRing->WrOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + Avail = NumBytes; + while (NumBytes--) { + *pDst++ = *pData++; + }; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff += Avail; +#else + SEGGER_RTT_MEMCPY((void*)pDst, pData, NumBytes); + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff += NumBytes; +#endif + break; + } else { + // + // Wrap-around necessary, write until wrap-around and reset WrOff + // + pDst = (pRing->pBuffer + pRing->WrOff) + SEGGER_RTT_UNCACHED_OFF; +#if SEGGER_RTT_MEMCPY_USE_BYTELOOP + NumBytes -= Avail; + while (Avail--) { + *pDst++ = *pData++; + }; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = 0; +#else + SEGGER_RTT_MEMCPY((void*)pDst, pData, Avail); + pData += Avail; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = 0; + NumBytes -= Avail; +#endif + Avail = (pRing->SizeOfBuffer - 1); + } + } while (NumBytes); +} + +/********************************************************************* +* +* SEGGER_RTT_WriteSkipNoLock +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block which is then read by the host. +* SEGGER_RTT_WriteSkipNoLock does not lock the application and +* skips all data, if the data does not fit into the buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* MUST be > 0!!! +* This is done for performance reasons, so no initial check has do be done. +* +* Return value +* 1: Data has been copied +* 0: No space, data has not been copied +* +* Notes +* (1) If there is not enough space in the "Up"-buffer, all data is dropped. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +*/ +#if (RTT_USE_ASM == 0) +unsigned SEGGER_RTT_WriteSkipNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + const char* pData; + SEGGER_RTT_BUFFER_UP* pRing; + unsigned Avail; + unsigned RdOff; + unsigned WrOff; + unsigned Rem; + volatile char* pDst; + // + // Cases: + // 1) RdOff <= WrOff => Space until wrap-around is sufficient + // 2) RdOff <= WrOff => Space after wrap-around needed (copy in 2 chunks) + // 3) RdOff < WrOff => No space in buf + // 4) RdOff > WrOff => Space is sufficient + // 5) RdOff > WrOff => No space in buf + // + // 1) is the most common case for large buffers and assuming that J-Link reads the data fast enough + // + pData = (const char *)pBuffer; + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + RdOff = pRing->RdOff; + WrOff = pRing->WrOff; + if (RdOff <= WrOff) { // Case 1), 2) or 3) + Avail = pRing->SizeOfBuffer - WrOff - 1u; // Space until wrap-around (assume 1 byte not usable for case that RdOff == 0) + if (Avail >= NumBytes) { // Case 1)? +CopyStraight: + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; + memcpy((void*)pDst, pData, NumBytes); + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff + NumBytes; + return 1; + } + Avail += RdOff; // Space incl. wrap-around + if (Avail >= NumBytes) { // Case 2? => If not, we have case 3) (does not fit) + Rem = pRing->SizeOfBuffer - WrOff; // Space until end of buffer + pDst = (pRing->pBuffer + WrOff) + SEGGER_RTT_UNCACHED_OFF; + memcpy((void*)pDst, pData, Rem); // Copy 1st chunk + NumBytes -= Rem; + // + // Special case: First check that assumed RdOff == 0 calculated that last element before wrap-around could not be used + // But 2nd check (considering space until wrap-around and until RdOff) revealed that RdOff is not 0, so we can use the last element + // In this case, we may use a copy straight until buffer end anyway without needing to copy 2 chunks + // Therefore, check if 2nd memcpy is necessary at all + // + if (NumBytes) { + pDst = pRing->pBuffer + SEGGER_RTT_UNCACHED_OFF; + memcpy((void*)pDst, pData + Rem, NumBytes); + } + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = NumBytes; + return 1; + } + } else { // Potential case 4) + Avail = RdOff - WrOff - 1u; + if (Avail >= NumBytes) { // Case 4)? => If not, we have case 5) (does not fit) + goto CopyStraight; + } + } + return 0; // No space in buffer +} +#endif + +/********************************************************************* +* +* SEGGER_RTT_WriteDownBufferNoLock +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block inside a buffer. +* SEGGER_RTT_WriteDownBufferNoLock does not lock the application. +* Used to do the same operation that J-Link does, to transfer +* RTT data from other channels, such as TCP/IP or UART. +* +* Parameters +* BufferIndex Index of "Down"-buffer to be used. +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Return value +* Number of bytes which have been stored in the "Down"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +* +* Additional information +* This function must not be called when J-Link might also do RTT. +*/ +unsigned SEGGER_RTT_WriteDownBufferNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + unsigned Status; + unsigned Avail; + const char* pData; + SEGGER_RTT_BUFFER_UP* pRing; + // + // Get "to-target" ring buffer. + // It is save to cast that to a "to-host" buffer. Up and Down buffer differ in volatility of offsets that might be modified by J-Link. + // + pData = (const char *)pBuffer; + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aDown[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // How we output depends upon the mode... + // + switch (pRing->Flags) { + case SEGGER_RTT_MODE_NO_BLOCK_SKIP: + // + // If we are in skip mode and there is no space for the whole + // of this output, don't bother. + // + Avail = _GetAvailWriteSpace(pRing); + if (Avail < NumBytes) { + Status = 0u; + } else { + Status = NumBytes; + _WriteNoCheck(pRing, pData, NumBytes); + } + break; + case SEGGER_RTT_MODE_NO_BLOCK_TRIM: + // + // If we are in trim mode, trim to what we can output without blocking. + // + Avail = _GetAvailWriteSpace(pRing); + Status = Avail < NumBytes ? Avail : NumBytes; + _WriteNoCheck(pRing, pData, Status); + break; + case SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL: + // + // If we are in blocking mode, output everything. + // + Status = _WriteBlocking(pRing, pData, NumBytes); + break; + default: + Status = 0u; + break; + } + // + // Finish up. + // + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_WriteNoLock +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block which is then read by the host. +* SEGGER_RTT_WriteNoLock does not lock the application. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +*/ +unsigned SEGGER_RTT_WriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + unsigned Status; + unsigned Avail; + const char* pData; + SEGGER_RTT_BUFFER_UP* pRing; + // + // Get "to-host" ring buffer. + // + pData = (const char *)pBuffer; + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // How we output depends upon the mode... + // + switch (pRing->Flags) { + case SEGGER_RTT_MODE_NO_BLOCK_SKIP: + // + // If we are in skip mode and there is no space for the whole + // of this output, don't bother. + // + Avail = _GetAvailWriteSpace(pRing); + if (Avail < NumBytes) { + Status = 0u; + } else { + Status = NumBytes; + _WriteNoCheck(pRing, pData, NumBytes); + } + break; + case SEGGER_RTT_MODE_NO_BLOCK_TRIM: + // + // If we are in trim mode, trim to what we can output without blocking. + // + Avail = _GetAvailWriteSpace(pRing); + Status = Avail < NumBytes ? Avail : NumBytes; + _WriteNoCheck(pRing, pData, Status); + break; + case SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL: + // + // If we are in blocking mode, output everything. + // + Status = _WriteBlocking(pRing, pData, NumBytes); + break; + default: + Status = 0u; + break; + } + // + // Finish up. + // + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_WriteDownBuffer +* +* Function description +* Stores a specified number of characters in SEGGER RTT control block in a buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Return value +* Number of bytes which have been stored in the "Down"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +* +* Additional information +* This function must not be called when J-Link might also do RTT. +* This function locks against all other RTT operations. I.e. during +* the write operation, writing from the application is also locked. +* If only one consumer writes to the down buffer, +* call SEGGER_RTT_WriteDownBufferNoLock() instead. +*/ +unsigned SEGGER_RTT_WriteDownBuffer(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + unsigned Status; + + INIT(); + SEGGER_RTT_LOCK(); + Status = SEGGER_RTT_WriteDownBufferNoLock(BufferIndex, pBuffer, NumBytes); // Call the non-locking write function + SEGGER_RTT_UNLOCK(); + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_Write +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block which is then read by the host. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +*/ +unsigned SEGGER_RTT_Write(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes) { + unsigned Status; + + INIT(); + SEGGER_RTT_LOCK(); + Status = SEGGER_RTT_WriteNoLock(BufferIndex, pBuffer, NumBytes); // Call the non-locking write function + SEGGER_RTT_UNLOCK(); + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_WriteString +* +* Function description +* Stores string in SEGGER RTT control block. +* This data is read by the host. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* s Pointer to string. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +* (2) String passed to this function has to be \0 terminated +* (3) \0 termination character is *not* stored in RTT buffer +*/ +unsigned SEGGER_RTT_WriteString(unsigned BufferIndex, const char* s) { + unsigned Len; + + Len = STRLEN(s); + return SEGGER_RTT_Write(BufferIndex, s, Len); +} + +/********************************************************************* +* +* SEGGER_RTT_PutCharSkipNoLock +* +* Function description +* Stores a single character/byte in SEGGER RTT buffer. +* SEGGER_RTT_PutCharSkipNoLock does not lock the application and +* skips the byte, if it does not fit into the buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* c Byte to be stored. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) If there is not enough space in the "Up"-buffer, the character is dropped. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +*/ + +unsigned SEGGER_RTT_PutCharSkipNoLock(unsigned BufferIndex, char c) { + SEGGER_RTT_BUFFER_UP* pRing; + unsigned WrOff; + unsigned Status; + volatile char* pDst; + // + // Get "to-host" ring buffer. + // + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // Get write position and handle wrap-around if necessary + // + WrOff = pRing->WrOff + 1; + if (WrOff == pRing->SizeOfBuffer) { + WrOff = 0; + } + // + // Output byte if free space is available + // + if (WrOff != pRing->RdOff) { + pDst = (pRing->pBuffer + pRing->WrOff) + SEGGER_RTT_UNCACHED_OFF; + *pDst = c; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff; + Status = 1; + } else { + Status = 0; + } + // + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_PutCharSkip +* +* Function description +* Stores a single character/byte in SEGGER RTT buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* c Byte to be stored. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) If there is not enough space in the "Up"-buffer, the character is dropped. +*/ + +unsigned SEGGER_RTT_PutCharSkip(unsigned BufferIndex, char c) { + SEGGER_RTT_BUFFER_UP* pRing; + unsigned WrOff; + unsigned Status; + volatile char* pDst; + // + // Prepare + // + INIT(); + SEGGER_RTT_LOCK(); + // + // Get "to-host" ring buffer. + // + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // Get write position and handle wrap-around if necessary + // + WrOff = pRing->WrOff + 1; + if (WrOff == pRing->SizeOfBuffer) { + WrOff = 0; + } + // + // Output byte if free space is available + // + if (WrOff != pRing->RdOff) { + pDst = (pRing->pBuffer + pRing->WrOff) + SEGGER_RTT_UNCACHED_OFF; + *pDst = c; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff; + Status = 1; + } else { + Status = 0; + } + // + // Finish up. + // + SEGGER_RTT_UNLOCK(); + // + return Status; +} + + /********************************************************************* +* +* SEGGER_RTT_PutChar +* +* Function description +* Stores a single character/byte in SEGGER RTT buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* c Byte to be stored. +* +* Return value +* Number of bytes which have been stored in the "Up"-buffer. +* +* Notes +* (1) Data is stored according to buffer flags. +*/ + +unsigned SEGGER_RTT_PutChar(unsigned BufferIndex, char c) { + SEGGER_RTT_BUFFER_UP* pRing; + unsigned WrOff; + unsigned Status; + volatile char* pDst; + // + // Prepare + // + INIT(); + SEGGER_RTT_LOCK(); + // + // Get "to-host" ring buffer. + // + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // Get write position and handle wrap-around if necessary + // + WrOff = pRing->WrOff + 1; + if (WrOff == pRing->SizeOfBuffer) { + WrOff = 0; + } + // + // Wait for free space if mode is set to blocking + // + if (pRing->Flags == SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL) { + while (WrOff == pRing->RdOff) { + ; + } + } + // + // Output byte if free space is available + // + if (WrOff != pRing->RdOff) { + pDst = (pRing->pBuffer + pRing->WrOff) + SEGGER_RTT_UNCACHED_OFF; + *pDst = c; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + pRing->WrOff = WrOff; + Status = 1; + } else { + Status = 0; + } + // + // Finish up. + // + SEGGER_RTT_UNLOCK(); + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_GetKey +* +* Function description +* Reads one character from the SEGGER RTT buffer. +* Host has previously stored data there. +* +* Return value +* < 0 - No character available (buffer empty). +* >= 0 - Character which has been read. (Possible values: 0 - 255) +* +* Notes +* (1) This function is only specified for accesses to RTT buffer 0. +*/ +int SEGGER_RTT_GetKey(void) { + char c; + int r; + + r = (int)SEGGER_RTT_Read(0u, &c, 1u); + if (r == 1) { + r = (int)(unsigned char)c; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_WaitKey +* +* Function description +* Waits until at least one character is avaible in the SEGGER RTT buffer. +* Once a character is available, it is read and this function returns. +* +* Return value +* >=0 - Character which has been read. +* +* Notes +* (1) This function is only specified for accesses to RTT buffer 0 +* (2) This function is blocking if no character is present in RTT buffer +*/ +int SEGGER_RTT_WaitKey(void) { + int r; + + do { + r = SEGGER_RTT_GetKey(); + } while (r < 0); + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_HasKey +* +* Function description +* Checks if at least one character for reading is available in the SEGGER RTT buffer. +* +* Return value +* == 0 - No characters are available to read. +* == 1 - At least one character is available. +* +* Notes +* (1) This function is only specified for accesses to RTT buffer 0 +*/ +int SEGGER_RTT_HasKey(void) { + SEGGER_RTT_BUFFER_DOWN* pRing; + unsigned RdOff; + int r; + + INIT(); + pRing = (SEGGER_RTT_BUFFER_DOWN*)((char*)&_SEGGER_RTT.aDown[0] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + RdOff = pRing->RdOff; + if (RdOff != pRing->WrOff) { + r = 1; + } else { + r = 0; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_HasData +* +* Function description +* Check if there is data from the host in the given buffer. +* +* Return value: +* ==0: No data +* !=0: Data in buffer +* +*/ +unsigned SEGGER_RTT_HasData(unsigned BufferIndex) { + SEGGER_RTT_BUFFER_DOWN* pRing; + unsigned v; + + pRing = (SEGGER_RTT_BUFFER_DOWN*)((char*)&_SEGGER_RTT.aDown[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + v = pRing->WrOff; + return v - pRing->RdOff; +} + +/********************************************************************* +* +* SEGGER_RTT_HasDataUp +* +* Function description +* Check if there is data remaining to be sent in the given buffer. +* +* Return value: +* ==0: No data +* !=0: Data in buffer +* +*/ +unsigned SEGGER_RTT_HasDataUp(unsigned BufferIndex) { + SEGGER_RTT_BUFFER_UP* pRing; + unsigned v; + + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + v = pRing->RdOff; + return pRing->WrOff - v; +} + +/********************************************************************* +* +* SEGGER_RTT_AllocDownBuffer +* +* Function description +* Run-time configuration of the next down-buffer (H->T). +* The next buffer, which is not used yet is configured. +* This includes: Buffer address, size, name, flags, ... +* +* Parameters +* sName Pointer to a constant name string. +* pBuffer Pointer to a buffer to be used. +* BufferSize Size of the buffer. +* Flags Operating modes. Define behavior if buffer is full (not enough space for entire message). +* +* Return value +* >= 0 - O.K. Buffer Index +* < 0 - Error +*/ +int SEGGER_RTT_AllocDownBuffer(const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags) { + int BufferIndex; + volatile SEGGER_RTT_CB* pRTTCB; + + INIT(); + SEGGER_RTT_LOCK(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + BufferIndex = 0; + do { + if (pRTTCB->aDown[BufferIndex].pBuffer == NULL) { + break; + } + BufferIndex++; + } while (BufferIndex < pRTTCB->MaxNumDownBuffers); + if (BufferIndex < pRTTCB->MaxNumDownBuffers) { + pRTTCB->aDown[BufferIndex].sName = sName; + pRTTCB->aDown[BufferIndex].pBuffer = (char*)pBuffer; + pRTTCB->aDown[BufferIndex].SizeOfBuffer = BufferSize; + pRTTCB->aDown[BufferIndex].RdOff = 0u; + pRTTCB->aDown[BufferIndex].WrOff = 0u; + pRTTCB->aDown[BufferIndex].Flags = Flags; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + } else { + BufferIndex = -1; + } + SEGGER_RTT_UNLOCK(); + return BufferIndex; +} + +/********************************************************************* +* +* SEGGER_RTT_AllocUpBuffer +* +* Function description +* Run-time configuration of the next up-buffer (T->H). +* The next buffer, which is not used yet is configured. +* This includes: Buffer address, size, name, flags, ... +* +* Parameters +* sName Pointer to a constant name string. +* pBuffer Pointer to a buffer to be used. +* BufferSize Size of the buffer. +* Flags Operating modes. Define behavior if buffer is full (not enough space for entire message). +* +* Return value +* >= 0 - O.K. Buffer Index +* < 0 - Error +*/ +int SEGGER_RTT_AllocUpBuffer(const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags) { + int BufferIndex; + volatile SEGGER_RTT_CB* pRTTCB; + + INIT(); + SEGGER_RTT_LOCK(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + BufferIndex = 0; + do { + if (pRTTCB->aUp[BufferIndex].pBuffer == NULL) { + break; + } + BufferIndex++; + } while (BufferIndex < pRTTCB->MaxNumUpBuffers); + if (BufferIndex < pRTTCB->MaxNumUpBuffers) { + pRTTCB->aUp[BufferIndex].sName = sName; + pRTTCB->aUp[BufferIndex].pBuffer = (char*)pBuffer; + pRTTCB->aUp[BufferIndex].SizeOfBuffer = BufferSize; + pRTTCB->aUp[BufferIndex].RdOff = 0u; + pRTTCB->aUp[BufferIndex].WrOff = 0u; + pRTTCB->aUp[BufferIndex].Flags = Flags; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + } else { + BufferIndex = -1; + } + SEGGER_RTT_UNLOCK(); + return BufferIndex; +} + +/********************************************************************* +* +* SEGGER_RTT_ConfigUpBuffer +* +* Function description +* Run-time configuration of a specific up-buffer (T->H). +* Buffer to be configured is specified by index. +* This includes: Buffer address, size, name, flags, ... +* +* Parameters +* BufferIndex Index of the buffer to configure. +* sName Pointer to a constant name string. +* pBuffer Pointer to a buffer to be used. +* BufferSize Size of the buffer. +* Flags Operating modes. Define behavior if buffer is full (not enough space for entire message). +* +* Return value +* >= 0 - O.K. +* < 0 - Error +* +* Additional information +* Buffer 0 is configured on compile-time. +* May only be called once per buffer. +* Buffer name and flags can be reconfigured using the appropriate functions. +*/ +int SEGGER_RTT_ConfigUpBuffer(unsigned BufferIndex, const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_UP* pUp; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_UP_BUFFERS) { + SEGGER_RTT_LOCK(); + pUp = &pRTTCB->aUp[BufferIndex]; + if (BufferIndex) { + pUp->sName = sName; + pUp->pBuffer = (char*)pBuffer; + pUp->SizeOfBuffer = BufferSize; + pUp->RdOff = 0u; + pUp->WrOff = 0u; + } + pUp->Flags = Flags; + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_ConfigDownBuffer +* +* Function description +* Run-time configuration of a specific down-buffer (H->T). +* Buffer to be configured is specified by index. +* This includes: Buffer address, size, name, flags, ... +* +* Parameters +* BufferIndex Index of the buffer to configure. +* sName Pointer to a constant name string. +* pBuffer Pointer to a buffer to be used. +* BufferSize Size of the buffer. +* Flags Operating modes. Define behavior if buffer is full (not enough space for entire message). +* +* Return value +* >= 0 O.K. +* < 0 Error +* +* Additional information +* Buffer 0 is configured on compile-time. +* May only be called once per buffer. +* Buffer name and flags can be reconfigured using the appropriate functions. +*/ +int SEGGER_RTT_ConfigDownBuffer(unsigned BufferIndex, const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_DOWN* pDown; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_DOWN_BUFFERS) { + SEGGER_RTT_LOCK(); + pDown = &pRTTCB->aDown[BufferIndex]; + if (BufferIndex) { + pDown->sName = sName; + pDown->pBuffer = (char*)pBuffer; + pDown->SizeOfBuffer = BufferSize; + pDown->RdOff = 0u; + pDown->WrOff = 0u; + } + pDown->Flags = Flags; + RTT__DMB(); // Force data write to be complete before writing the , in case CPU is allowed to change the order of memory accesses + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_SetNameUpBuffer +* +* Function description +* Run-time configuration of a specific up-buffer name (T->H). +* Buffer to be configured is specified by index. +* +* Parameters +* BufferIndex Index of the buffer to renamed. +* sName Pointer to a constant name string. +* +* Return value +* >= 0 O.K. +* < 0 Error +*/ +int SEGGER_RTT_SetNameUpBuffer(unsigned BufferIndex, const char* sName) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_UP* pUp; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_UP_BUFFERS) { + SEGGER_RTT_LOCK(); + pUp = &pRTTCB->aUp[BufferIndex]; + pUp->sName = sName; + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_SetNameDownBuffer +* +* Function description +* Run-time configuration of a specific Down-buffer name (T->H). +* Buffer to be configured is specified by index. +* +* Parameters +* BufferIndex Index of the buffer to renamed. +* sName Pointer to a constant name string. +* +* Return value +* >= 0 O.K. +* < 0 Error +*/ +int SEGGER_RTT_SetNameDownBuffer(unsigned BufferIndex, const char* sName) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_DOWN* pDown; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_DOWN_BUFFERS) { + SEGGER_RTT_LOCK(); + pDown = &pRTTCB->aDown[BufferIndex]; + pDown->sName = sName; + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_SetFlagsUpBuffer +* +* Function description +* Run-time configuration of specific up-buffer flags (T->H). +* Buffer to be configured is specified by index. +* +* Parameters +* BufferIndex Index of the buffer. +* Flags Flags to set for the buffer. +* +* Return value +* >= 0 O.K. +* < 0 Error +*/ +int SEGGER_RTT_SetFlagsUpBuffer(unsigned BufferIndex, unsigned Flags) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_UP* pUp; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_UP_BUFFERS) { + SEGGER_RTT_LOCK(); + pUp = &pRTTCB->aUp[BufferIndex]; + pUp->Flags = Flags; + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_SetFlagsDownBuffer +* +* Function description +* Run-time configuration of specific Down-buffer flags (T->H). +* Buffer to be configured is specified by index. +* +* Parameters +* BufferIndex Index of the buffer to renamed. +* Flags Flags to set for the buffer. +* +* Return value +* >= 0 O.K. +* < 0 Error +*/ +int SEGGER_RTT_SetFlagsDownBuffer(unsigned BufferIndex, unsigned Flags) { + int r; + volatile SEGGER_RTT_CB* pRTTCB; + volatile SEGGER_RTT_BUFFER_DOWN* pDown; + + INIT(); + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + if (BufferIndex < SEGGER_RTT_MAX_NUM_DOWN_BUFFERS) { + SEGGER_RTT_LOCK(); + pDown = &pRTTCB->aDown[BufferIndex]; + pDown->Flags = Flags; + SEGGER_RTT_UNLOCK(); + r = 0; + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_Init +* +* Function description +* Initializes the RTT Control Block. +* Should be used in RAM targets, at start of the application. +* +*/ +void SEGGER_RTT_Init (void) { + _DoInit(); +} + +/********************************************************************* +* +* SEGGER_RTT_SetTerminal +* +* Function description +* Sets the terminal to be used for output on channel 0. +* +* Parameters +* TerminalId Index of the terminal. +* +* Return value +* >= 0 O.K. +* < 0 Error (e.g. if RTT is configured for non-blocking mode and there was no space in the buffer to set the new terminal Id) +* +* Notes +* (1) Buffer 0 is always reserved for terminal I/O, so we can use index 0 here, fixed +*/ +int SEGGER_RTT_SetTerminal (unsigned char TerminalId) { + unsigned char ac[2]; + SEGGER_RTT_BUFFER_UP* pRing; + unsigned Avail; + int r; + + INIT(); + r = 0; + ac[0] = 0xFFu; + if (TerminalId < sizeof(_aTerminalId)) { // We only support a certain number of channels + ac[1] = _aTerminalId[TerminalId]; + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[0] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + SEGGER_RTT_LOCK(); // Lock to make sure that no other task is writing into buffer, while we are and number of free bytes in buffer does not change downwards after checking and before writing + if ((pRing->Flags & SEGGER_RTT_MODE_MASK) == SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL) { + _ActiveTerminal = TerminalId; + _WriteBlocking(pRing, (const char*)ac, 2u); + } else { // Skipping mode or trim mode? => We cannot trim this command so handling is the same for both modes + Avail = _GetAvailWriteSpace(pRing); + if (Avail >= 2) { + _ActiveTerminal = TerminalId; // Only change active terminal in case of success + _WriteNoCheck(pRing, (const char*)ac, 2u); + } else { + r = -1; + } + } + SEGGER_RTT_UNLOCK(); + } else { + r = -1; + } + return r; +} + +/********************************************************************* +* +* SEGGER_RTT_TerminalOut +* +* Function description +* Writes a string to the given terminal +* without changing the terminal for channel 0. +* +* Parameters +* TerminalId Index of the terminal. +* s String to be printed on the terminal. +* +* Return value +* >= 0 - Number of bytes written. +* < 0 - Error. +* +*/ +int SEGGER_RTT_TerminalOut (unsigned char TerminalId, const char* s) { + int Status; + unsigned FragLen; + unsigned Avail; + SEGGER_RTT_BUFFER_UP* pRing; + // + INIT(); + // + // Validate terminal ID. + // + if (TerminalId < (char)sizeof(_aTerminalId)) { // We only support a certain number of channels + // + // Get "to-host" ring buffer. + // + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[0] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + // + // Need to be able to change terminal, write data, change back. + // Compute the fixed and variable sizes. + // + FragLen = STRLEN(s); + // + // How we output depends upon the mode... + // + SEGGER_RTT_LOCK(); + Avail = _GetAvailWriteSpace(pRing); + switch (pRing->Flags & SEGGER_RTT_MODE_MASK) { + case SEGGER_RTT_MODE_NO_BLOCK_SKIP: + // + // If we are in skip mode and there is no space for the whole + // of this output, don't bother switching terminals at all. + // + if (Avail < (FragLen + 4u)) { + Status = 0; + } else { + _PostTerminalSwitch(pRing, TerminalId); + Status = (int)_WriteBlocking(pRing, s, FragLen); + _PostTerminalSwitch(pRing, _ActiveTerminal); + } + break; + case SEGGER_RTT_MODE_NO_BLOCK_TRIM: + // + // If we are in trim mode and there is not enough space for everything, + // trim the output but always include the terminal switch. If no room + // for terminal switch, skip that totally. + // + if (Avail < 4u) { + Status = -1; + } else { + _PostTerminalSwitch(pRing, TerminalId); + Status = (int)_WriteBlocking(pRing, s, (FragLen < (Avail - 4u)) ? FragLen : (Avail - 4u)); + _PostTerminalSwitch(pRing, _ActiveTerminal); + } + break; + case SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL: + // + // If we are in blocking mode, output everything. + // + _PostTerminalSwitch(pRing, TerminalId); + Status = (int)_WriteBlocking(pRing, s, FragLen); + _PostTerminalSwitch(pRing, _ActiveTerminal); + break; + default: + Status = -1; + break; + } + // + // Finish up. + // + SEGGER_RTT_UNLOCK(); + } else { + Status = -1; + } + return Status; +} + +/********************************************************************* +* +* SEGGER_RTT_GetAvailWriteSpace +* +* Function description +* Returns the number of bytes available in the ring buffer. +* +* Parameters +* BufferIndex Index of the up buffer. +* +* Return value +* Number of bytes that are free in the selected up buffer. +*/ +unsigned SEGGER_RTT_GetAvailWriteSpace (unsigned BufferIndex) { + SEGGER_RTT_BUFFER_UP* pRing; + + pRing = (SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[BufferIndex] + SEGGER_RTT_UNCACHED_OFF); // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + return _GetAvailWriteSpace(pRing); +} + + +/********************************************************************* +* +* SEGGER_RTT_GetBytesInBuffer() +* +* Function description +* Returns the number of bytes currently used in the up buffer. +* +* Parameters +* BufferIndex Index of the up buffer. +* +* Return value +* Number of bytes that are used in the buffer. +*/ +unsigned SEGGER_RTT_GetBytesInBuffer(unsigned BufferIndex) { + unsigned RdOff; + unsigned WrOff; + unsigned r; + volatile SEGGER_RTT_CB* pRTTCB; + // + // Avoid warnings regarding volatile access order. It's not a problem + // in this case, but dampen compiler enthusiasm. + // + pRTTCB = (volatile SEGGER_RTT_CB*)((unsigned char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); // Access RTTCB uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + RdOff = pRTTCB->aUp[BufferIndex].RdOff; + WrOff = pRTTCB->aUp[BufferIndex].WrOff; + if (RdOff <= WrOff) { + r = WrOff - RdOff; + } else { + r = pRTTCB->aUp[BufferIndex].SizeOfBuffer - (WrOff - RdOff); + } + return r; +} + +/*************************** End of file ****************************/ diff --git a/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h new file mode 100644 index 0000000..a636f0a --- /dev/null +++ b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h @@ -0,0 +1,493 @@ +/********************************************************************* +* SEGGER Microcontroller GmbH * +* The Embedded Experts * +********************************************************************** +* * +* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* * +* www.segger.com Support: support@segger.com * +* * +********************************************************************** +* * +* SEGGER RTT * Real Time Transfer for embedded targets * +* * +********************************************************************** +* * +* All rights reserved. * +* * +* SEGGER strongly recommends to not make any changes * +* to or modify the source code of this software in order to stay * +* compatible with the RTT protocol and J-Link. * +* * +* Redistribution and use in source and binary forms, with or * +* without modification, are permitted provided that the following * +* condition is met: * +* * +* o Redistributions of source code must retain the above copyright * +* notice, this condition and the following disclaimer. * +* * +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * +* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * +* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * +* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * +* DISCLAIMED. IN NO EVENT SHALL SEGGER Microcontroller BE LIABLE FOR * +* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * +* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * +* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * +* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * +* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * +* DAMAGE. * +* * +********************************************************************** +* * +* RTT version: 7.58c * +* * +********************************************************************** + +---------------------------END-OF-HEADER------------------------------ +File : SEGGER_RTT.h +Purpose : Implementation of SEGGER real-time transfer which allows + real-time communication on targets which support debugger + memory accesses while the CPU is running. +Revision: $Rev: 24346 $ +---------------------------------------------------------------------- +*/ + +#ifndef SEGGER_RTT_H +#define SEGGER_RTT_H + +#include "../Config/SEGGER_RTT_Conf.h" + +/********************************************************************* +* +* Defines, defaults +* +********************************************************************** +*/ + +#ifndef RTT_USE_ASM + // + // Some cores support out-of-order memory accesses (reordering of memory accesses in the core) + // For such cores, we need to define a memory barrier to guarantee the order of certain accesses to the RTT ring buffers. + // Needed for: + // Cortex-M7 (ARMv7-M) + // Cortex-M23 (ARM-v8M) + // Cortex-M33 (ARM-v8M) + // Cortex-A/R (ARM-v7A/R) + // + // We do not explicitly check for "Embedded Studio" as the compiler in use determines what we support. + // You can use an external toolchain like IAR inside ES. So there is no point in checking for "Embedded Studio" + // + #if (defined __CROSSWORKS_ARM) // Rowley Crossworks + #define _CC_HAS_RTT_ASM_SUPPORT 1 + #if (defined __ARM_ARCH_7M__) // Cortex-M3 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #elif (defined __ARM_ARCH_7EM__) // Cortex-M4/M7 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_BASE__) // Cortex-M23 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_MAIN__) // Cortex-M33 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #else + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #endif + #elif (defined __ARMCC_VERSION) + // + // ARM compiler + // ARM compiler V6.0 and later is clang based. + // Our ASM part is compatible to clang. + // + #if (__ARMCC_VERSION >= 6000000) + #define _CC_HAS_RTT_ASM_SUPPORT 1 + #else + #define _CC_HAS_RTT_ASM_SUPPORT 0 + #endif + #if (defined __ARM_ARCH_6M__) // Cortex-M0 / M1 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 // No ASM support for this architecture + #elif (defined __ARM_ARCH_7M__) // Cortex-M3 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #elif (defined __ARM_ARCH_7EM__) // Cortex-M4/M7 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_BASE__) // Cortex-M23 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_MAIN__) // Cortex-M33 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif ((defined __ARM_ARCH_7A__) || (defined __ARM_ARCH_7R__)) // Cortex-A/R 32-bit ARMv7-A/R + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #else + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #endif + #elif ((defined __GNUC__) || (defined __clang__)) + // + // GCC / Clang + // + #define _CC_HAS_RTT_ASM_SUPPORT 1 + // ARM 7/9: __ARM_ARCH_5__ / __ARM_ARCH_5E__ / __ARM_ARCH_5T__ / __ARM_ARCH_5T__ / __ARM_ARCH_5TE__ + #if (defined __ARM_ARCH_7M__) // Cortex-M3 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #elif (defined __ARM_ARCH_7EM__) // Cortex-M4/M7 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 // Only Cortex-M7 needs a DMB but we cannot distinguish M4 and M7 here... + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_BASE__) // Cortex-M23 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8M_MAIN__) // Cortex-M33 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif ((defined __ARM_ARCH_7A__) || (defined __ARM_ARCH_7R__)) // Cortex-A/R 32-bit ARMv7-A/R + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #else + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #endif + #elif ((defined __IASMARM__) || (defined __ICCARM__)) + // + // IAR assembler/compiler + // + #define _CC_HAS_RTT_ASM_SUPPORT 1 + #if (__VER__ < 6300000) + #define VOLATILE + #else + #define VOLATILE volatile + #endif + #if (defined __ARM7M__) // Needed for old versions that do not know the define yet + #if (__CORE__ == __ARM7M__) // Cortex-M3 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #endif + #endif + #if (defined __ARM7EM__) + #if (__CORE__ == __ARM7EM__) // Cortex-M4/M7 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif + #if (defined __ARM8M_BASELINE__) + #if (__CORE__ == __ARM8M_BASELINE__) // Cortex-M23 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif + #if (defined __ARM8M_MAINLINE__) + #if (__CORE__ == __ARM8M_MAINLINE__) // Cortex-M33 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif + #if (defined __ARM8EM_MAINLINE__) + #if (__CORE__ == __ARM8EM_MAINLINE__) // Cortex-??? + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif + #if (defined __ARM7A__) + #if (__CORE__ == __ARM7A__) // Cortex-A 32-bit ARMv7-A + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif + #if (defined __ARM7R__) + #if (__CORE__ == __ARM7R__) // Cortex-R 32-bit ARMv7-R + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() asm VOLATILE ("DMB"); + #endif + #endif +// TBD: __ARM8A__ => Cortex-A 64-bit ARMv8-A +// TBD: __ARM8R__ => Cortex-R 64-bit ARMv8-R + #else + // + // Other compilers + // + #define _CC_HAS_RTT_ASM_SUPPORT 0 + #define _CORE_HAS_RTT_ASM_SUPPORT 0 + #endif + // + // If IDE and core support the ASM version, enable ASM version by default + // + #ifndef _CORE_HAS_RTT_ASM_SUPPORT + #define _CORE_HAS_RTT_ASM_SUPPORT 0 // Default for unknown cores + #endif + #if (_CC_HAS_RTT_ASM_SUPPORT && _CORE_HAS_RTT_ASM_SUPPORT) + #define RTT_USE_ASM (1) + #else + #define RTT_USE_ASM (0) + #endif +#endif + +#ifndef _CORE_NEEDS_DMB + #define _CORE_NEEDS_DMB 0 +#endif + +#ifndef RTT__DMB + #if _CORE_NEEDS_DMB + #error "Don't know how to place inline assembly for DMB" + #else + #define RTT__DMB() + #endif +#endif + +#ifndef SEGGER_RTT_CPU_CACHE_LINE_SIZE + #define SEGGER_RTT_CPU_CACHE_LINE_SIZE (0) // On most target systems where RTT is used, we do not have a CPU cache, therefore 0 is a good default here +#endif + +#ifndef SEGGER_RTT_UNCACHED_OFF + #if SEGGER_RTT_CPU_CACHE_LINE_SIZE + #error "SEGGER_RTT_UNCACHED_OFF must be defined when setting SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #else + #define SEGGER_RTT_UNCACHED_OFF (0) + #endif +#endif +#if RTT_USE_ASM + #if SEGGER_RTT_CPU_CACHE_LINE_SIZE + #error "RTT_USE_ASM is not available if SEGGER_RTT_CPU_CACHE_LINE_SIZE != 0" + #endif +#endif + +#ifndef SEGGER_RTT_ASM // defined when SEGGER_RTT.h is included from assembly file +#include +#include + +/********************************************************************* +* +* Defines, fixed +* +********************************************************************** +*/ + +// +// Determine how much we must pad the control block to make it a multiple of a cache line in size +// Assuming: U8 = 1B +// U16 = 2B +// U32 = 4B +// U8/U16/U32* = 4B +// +#if SEGGER_RTT_CPU_CACHE_LINE_SIZE // Avoid division by zero in case we do not have any cache + #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (((NumBytes + SEGGER_RTT_CPU_CACHE_LINE_SIZE - 1) / SEGGER_RTT_CPU_CACHE_LINE_SIZE) * SEGGER_RTT_CPU_CACHE_LINE_SIZE) +#else + #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (NumBytes) +#endif +#define SEGGER_RTT__CB_SIZE (16 + 4 + 4 + (SEGGER_RTT_MAX_NUM_UP_BUFFERS * 24) + (SEGGER_RTT_MAX_NUM_DOWN_BUFFERS * 24)) +#define SEGGER_RTT__CB_PADDING (SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(SEGGER_RTT__CB_SIZE) - SEGGER_RTT__CB_SIZE) + +/********************************************************************* +* +* Types +* +********************************************************************** +*/ + +// +// Description for a circular buffer (also called "ring buffer") +// which is used as up-buffer (T->H) +// +typedef struct { + const char* sName; // Optional name. Standard names so far are: "Terminal", "SysView", "J-Scope_t4i4" + char* pBuffer; // Pointer to start of buffer + unsigned SizeOfBuffer; // Buffer size in bytes. Note that one byte is lost, as this implementation does not fill up the buffer in order to avoid the problem of being unable to distinguish between full and empty. + unsigned WrOff; // Position of next item to be written by either target. + volatile unsigned RdOff; // Position of next item to be read by host. Must be volatile since it may be modified by host. + unsigned Flags; // Contains configuration flags +} SEGGER_RTT_BUFFER_UP; + +// +// Description for a circular buffer (also called "ring buffer") +// which is used as down-buffer (H->T) +// +typedef struct { + const char* sName; // Optional name. Standard names so far are: "Terminal", "SysView", "J-Scope_t4i4" + char* pBuffer; // Pointer to start of buffer + unsigned SizeOfBuffer; // Buffer size in bytes. Note that one byte is lost, as this implementation does not fill up the buffer in order to avoid the problem of being unable to distinguish between full and empty. + volatile unsigned WrOff; // Position of next item to be written by host. Must be volatile since it may be modified by host. + unsigned RdOff; // Position of next item to be read by target (down-buffer). + unsigned Flags; // Contains configuration flags +} SEGGER_RTT_BUFFER_DOWN; + +// +// RTT control block which describes the number of buffers available +// as well as the configuration for each buffer +// +// +typedef struct { + char acID[16]; // Initialized to "SEGGER RTT" + int MaxNumUpBuffers; // Initialized to SEGGER_RTT_MAX_NUM_UP_BUFFERS (type. 2) + int MaxNumDownBuffers; // Initialized to SEGGER_RTT_MAX_NUM_DOWN_BUFFERS (type. 2) + SEGGER_RTT_BUFFER_UP aUp[SEGGER_RTT_MAX_NUM_UP_BUFFERS]; // Up buffers, transferring information up from target via debug probe to host + SEGGER_RTT_BUFFER_DOWN aDown[SEGGER_RTT_MAX_NUM_DOWN_BUFFERS]; // Down buffers, transferring information down from host via debug probe to target +#if SEGGER_RTT__CB_PADDING + unsigned char aDummy[SEGGER_RTT__CB_PADDING]; +#endif +} SEGGER_RTT_CB; + +/********************************************************************* +* +* Global data +* +********************************************************************** +*/ +extern SEGGER_RTT_CB _SEGGER_RTT; + +/********************************************************************* +* +* RTT API functions +* +********************************************************************** +*/ +#ifdef __cplusplus + extern "C" { +#endif +int SEGGER_RTT_AllocDownBuffer (const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags); +int SEGGER_RTT_AllocUpBuffer (const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags); +int SEGGER_RTT_ConfigUpBuffer (unsigned BufferIndex, const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags); +int SEGGER_RTT_ConfigDownBuffer (unsigned BufferIndex, const char* sName, void* pBuffer, unsigned BufferSize, unsigned Flags); +int SEGGER_RTT_GetKey (void); +unsigned SEGGER_RTT_HasData (unsigned BufferIndex); +int SEGGER_RTT_HasKey (void); +unsigned SEGGER_RTT_HasDataUp (unsigned BufferIndex); +void SEGGER_RTT_Init (void); +unsigned SEGGER_RTT_Read (unsigned BufferIndex, void* pBuffer, unsigned BufferSize); +unsigned SEGGER_RTT_ReadNoLock (unsigned BufferIndex, void* pData, unsigned BufferSize); +int SEGGER_RTT_SetNameDownBuffer (unsigned BufferIndex, const char* sName); +int SEGGER_RTT_SetNameUpBuffer (unsigned BufferIndex, const char* sName); +int SEGGER_RTT_SetFlagsDownBuffer (unsigned BufferIndex, unsigned Flags); +int SEGGER_RTT_SetFlagsUpBuffer (unsigned BufferIndex, unsigned Flags); +int SEGGER_RTT_WaitKey (void); +unsigned SEGGER_RTT_Write (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_WriteNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_ASM_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_WriteString (unsigned BufferIndex, const char* s); +void SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_PutChar (unsigned BufferIndex, char c); +unsigned SEGGER_RTT_PutCharSkip (unsigned BufferIndex, char c); +unsigned SEGGER_RTT_PutCharSkipNoLock (unsigned BufferIndex, char c); +unsigned SEGGER_RTT_GetAvailWriteSpace (unsigned BufferIndex); +unsigned SEGGER_RTT_GetBytesInBuffer (unsigned BufferIndex); +// +// Function macro for performance optimization +// +#define SEGGER_RTT_HASDATA(n) (((SEGGER_RTT_BUFFER_DOWN*)((char*)&_SEGGER_RTT.aDown[n] + SEGGER_RTT_UNCACHED_OFF))->WrOff - ((SEGGER_RTT_BUFFER_DOWN*)((char*)&_SEGGER_RTT.aDown[n] + SEGGER_RTT_UNCACHED_OFF))->RdOff) + +#if RTT_USE_ASM + #define SEGGER_RTT_WriteSkipNoLock SEGGER_RTT_ASM_WriteSkipNoLock +#endif + +/********************************************************************* +* +* RTT transfer functions to send RTT data via other channels. +* +********************************************************************** +*/ +unsigned SEGGER_RTT_ReadUpBuffer (unsigned BufferIndex, void* pBuffer, unsigned BufferSize); +unsigned SEGGER_RTT_ReadUpBufferNoLock (unsigned BufferIndex, void* pData, unsigned BufferSize); +unsigned SEGGER_RTT_WriteDownBuffer (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); +unsigned SEGGER_RTT_WriteDownBufferNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); + +#define SEGGER_RTT_HASDATA_UP(n) (((SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->WrOff - ((SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->RdOff) // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly + +/********************************************************************* +* +* RTT "Terminal" API functions +* +********************************************************************** +*/ +int SEGGER_RTT_SetTerminal (unsigned char TerminalId); +int SEGGER_RTT_TerminalOut (unsigned char TerminalId, const char* s); + +/********************************************************************* +* +* RTT printf functions (require SEGGER_RTT_printf.c) +* +********************************************************************** +*/ +int SEGGER_RTT_printf(unsigned BufferIndex, const char * sFormat, ...); +int SEGGER_RTT_vprintf(unsigned BufferIndex, const char * sFormat, va_list * pParamList); + +#ifdef __cplusplus + } +#endif + +#endif // ifndef(SEGGER_RTT_ASM) + +/********************************************************************* +* +* Defines +* +********************************************************************** +*/ + +// +// Operating modes. Define behavior if buffer is full (not enough space for entire message) +// +#define SEGGER_RTT_MODE_NO_BLOCK_SKIP (0) // Skip. Do not block, output nothing. (Default) +#define SEGGER_RTT_MODE_NO_BLOCK_TRIM (1) // Trim: Do not block, output as much as fits. +#define SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL (2) // Block: Wait until there is space in the buffer. +#define SEGGER_RTT_MODE_MASK (3) + +// +// Control sequences, based on ANSI. +// Can be used to control color, and clear the screen +// +#define RTT_CTRL_RESET "\x1B[0m" // Reset to default colors +#define RTT_CTRL_CLEAR "\x1B[2J" // Clear screen, reposition cursor to top left + +#define RTT_CTRL_TEXT_BLACK "\x1B[2;30m" +#define RTT_CTRL_TEXT_RED "\x1B[2;31m" +#define RTT_CTRL_TEXT_GREEN "\x1B[2;32m" +#define RTT_CTRL_TEXT_YELLOW "\x1B[2;33m" +#define RTT_CTRL_TEXT_BLUE "\x1B[2;34m" +#define RTT_CTRL_TEXT_MAGENTA "\x1B[2;35m" +#define RTT_CTRL_TEXT_CYAN "\x1B[2;36m" +#define RTT_CTRL_TEXT_WHITE "\x1B[2;37m" + +#define RTT_CTRL_TEXT_BRIGHT_BLACK "\x1B[1;30m" +#define RTT_CTRL_TEXT_BRIGHT_RED "\x1B[1;31m" +#define RTT_CTRL_TEXT_BRIGHT_GREEN "\x1B[1;32m" +#define RTT_CTRL_TEXT_BRIGHT_YELLOW "\x1B[1;33m" +#define RTT_CTRL_TEXT_BRIGHT_BLUE "\x1B[1;34m" +#define RTT_CTRL_TEXT_BRIGHT_MAGENTA "\x1B[1;35m" +#define RTT_CTRL_TEXT_BRIGHT_CYAN "\x1B[1;36m" +#define RTT_CTRL_TEXT_BRIGHT_WHITE "\x1B[1;37m" + +#define RTT_CTRL_BG_BLACK "\x1B[24;40m" +#define RTT_CTRL_BG_RED "\x1B[24;41m" +#define RTT_CTRL_BG_GREEN "\x1B[24;42m" +#define RTT_CTRL_BG_YELLOW "\x1B[24;43m" +#define RTT_CTRL_BG_BLUE "\x1B[24;44m" +#define RTT_CTRL_BG_MAGENTA "\x1B[24;45m" +#define RTT_CTRL_BG_CYAN "\x1B[24;46m" +#define RTT_CTRL_BG_WHITE "\x1B[24;47m" + +#define RTT_CTRL_BG_BRIGHT_BLACK "\x1B[4;40m" +#define RTT_CTRL_BG_BRIGHT_RED "\x1B[4;41m" +#define RTT_CTRL_BG_BRIGHT_GREEN "\x1B[4;42m" +#define RTT_CTRL_BG_BRIGHT_YELLOW "\x1B[4;43m" +#define RTT_CTRL_BG_BRIGHT_BLUE "\x1B[4;44m" +#define RTT_CTRL_BG_BRIGHT_MAGENTA "\x1B[4;45m" +#define RTT_CTRL_BG_BRIGHT_CYAN "\x1B[4;46m" +#define RTT_CTRL_BG_BRIGHT_WHITE "\x1B[4;47m" + + +#endif + +/*************************** End of file ****************************/ diff --git a/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s new file mode 100644 index 0000000..cbbc52f --- /dev/null +++ b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s @@ -0,0 +1,242 @@ +/********************************************************************* +* (c) SEGGER Microcontroller GmbH * +* The Embedded Experts * +* www.segger.com * +********************************************************************** + +-------------------------- END-OF-HEADER ----------------------------- + +File : SEGGER_RTT_ASM_ARMv7M.S +Purpose : Assembler implementation of RTT functions for ARMv7M + +Additional information: + This module is written to be assembler-independent and works with + GCC and clang (Embedded Studio) and IAR. +*/ + +#define SEGGER_RTT_ASM // Used to control processed input from header file +#include "SEGGER_RTT.h" + +/********************************************************************* +* +* Defines, fixed +* +********************************************************************** +*/ + +#define _CCIAR 0 +#define _CCCLANG 1 + +#if (defined __SES_ARM) || (defined __GNUC__) || (defined __clang__) + #define _CC_TYPE _CCCLANG + #define _PUB_SYM .global + #define _EXT_SYM .extern + #define _END .end + #define _WEAK .weak + #define _THUMB_FUNC .thumb_func + #define _THUMB_CODE .code 16 + #define _WORD .word + #define _SECTION(Sect, Type, AlignExp) .section Sect ##, "ax" + #define _ALIGN(Exp) .align Exp + #define _PLACE_LITS .ltorg + #define _DATA_SECT_START + #define _C_STARTUP _start + #define _STACK_END __stack_end__ + #define _RAMFUNC + // + // .text => Link to flash + // .fast => Link to RAM + // OtherSect => Usually link to RAM + // Alignment is 2^x + // +#elif defined (__IASMARM__) + #define _CC_TYPE _CCIAR + #define _PUB_SYM PUBLIC + #define _EXT_SYM EXTERN + #define _END END + #define _WEAK _WEAK + #define _THUMB_FUNC + #define _THUMB_CODE THUMB + #define _WORD DCD + #define _SECTION(Sect, Type, AlignExp) SECTION Sect ## : ## Type ## :REORDER:NOROOT ## (AlignExp) + #define _ALIGN(Exp) alignrom Exp + #define _PLACE_LITS + #define _DATA_SECT_START DATA + #define _C_STARTUP __iar_program_start + #define _STACK_END sfe(CSTACK) + #define _RAMFUNC SECTION_TYPE SHT_PROGBITS, SHF_WRITE | SHF_EXECINSTR + // + // .text => Link to flash + // .textrw => Link to RAM + // OtherSect => Usually link to RAM + // NOROOT => Allows linker to throw away the function, if not referenced + // Alignment is 2^x + // +#endif + +#if (_CC_TYPE == _CCIAR) + NAME SEGGER_RTT_ASM_ARMv7M +#else + .syntax unified +#endif + +#if defined (RTT_USE_ASM) && (RTT_USE_ASM == 1) + #define SHT_PROGBITS 0x1 + +/********************************************************************* +* +* Public / external symbols +* +********************************************************************** +*/ + + _EXT_SYM __aeabi_memcpy + _EXT_SYM __aeabi_memcpy4 + _EXT_SYM _SEGGER_RTT + + _PUB_SYM SEGGER_RTT_ASM_WriteSkipNoLock + +/********************************************************************* +* +* SEGGER_RTT_WriteSkipNoLock +* +* Function description +* Stores a specified number of characters in SEGGER RTT +* control block which is then read by the host. +* SEGGER_RTT_WriteSkipNoLock does not lock the application and +* skips all data, if the data does not fit into the buffer. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used (e.g. 0 for "Terminal"). +* pBuffer Pointer to character array. Does not need to point to a \0 terminated string. +* NumBytes Number of bytes to be stored in the SEGGER RTT control block. +* MUST be > 0!!! +* This is done for performance reasons, so no initial check has do be done. +* +* Return value +* 1: Data has been copied +* 0: No space, data has not been copied +* +* Notes +* (1) If there is not enough space in the "Up"-buffer, all data is dropped. +* (2) For performance reasons this function does not call Init() +* and may only be called after RTT has been initialized. +* Either by calling SEGGER_RTT_Init() or calling another RTT API function first. +*/ + _SECTION(.text, CODE, 2) + _ALIGN(2) + _THUMB_FUNC +SEGGER_RTT_ASM_WriteSkipNoLock: // unsigned SEGGER_RTT_WriteSkipNoLock(unsigned BufferIndex, const void* pData, unsigned NumBytes) { + // + // Cases: + // 1) RdOff <= WrOff => Space until wrap-around is sufficient + // 2) RdOff <= WrOff => Space after wrap-around needed (copy in 2 chunks) + // 3) RdOff < WrOff => No space in buf + // 4) RdOff > WrOff => Space is sufficient + // 5) RdOff > WrOff => No space in buf + // + // 1) is the most common case for large buffers and assuming that J-Link reads the data fast enough + // + // Register usage: + // R0 Temporary needed as RdOff, register later on + // R1 pData + // R2 + // R3 register. Hold free for subroutine calls + // R4 + // R5 pRing->pBuffer + // R6 pRing (Points to active struct SEGGER_RTT_BUFFER_DOWN) + // R7 WrOff + // + PUSH {R4-R7} + ADD R3,R0,R0, LSL #+1 + LDR.W R0,=_SEGGER_RTT // pRing = &_SEGGER_RTT.aUp[BufferIndex]; + ADD R0,R0,R3, LSL #+3 + ADD R6,R0,#+24 + LDR R0,[R6, #+16] // RdOff = pRing->RdOff; + LDR R7,[R6, #+12] // WrOff = pRing->WrOff; + LDR R5,[R6, #+4] // pRing->pBuffer + CMP R7,R0 + BCC.N _CheckCase4 // if (RdOff <= WrOff) { => Case 1), 2) or 3) + // + // Handling for case 1, later on identical to case 4 + // + LDR R3,[R6, #+8] // Avail = pRing->SizeOfBuffer - WrOff - 1u; => Space until wrap-around (assume 1 byte not usable for case that RdOff == 0) + SUBS R4,R3,R7 // (Used in case we jump into case 2 afterwards) + SUBS R3,R4,#+1 // + CMP R3,R2 + BCC.N _CheckCase2 // if (Avail >= NumBytes) { => Case 1)? +_Case4: + ADDS R5,R7,R5 // pBuffer += WrOff + ADDS R0,R2,R7 // v = WrOff + NumBytes + // + // 2x unrolling for the copy loop that is used most of the time + // This is a special optimization for small SystemView packets and makes them even faster + // + _ALIGN(2) +_LoopCopyStraight: // memcpy(pRing->pBuffer + WrOff, pData, NumBytes); + LDRB R3,[R1], #+1 + STRB R3,[R5], #+1 // *pDest++ = *pSrc++ + SUBS R2,R2,#+1 + BEQ _CSDone + LDRB R3,[R1], #+1 + STRB R3,[R5], #+1 // *pDest++ = *pSrc++ + SUBS R2,R2,#+1 + BNE _LoopCopyStraight +_CSDone: +#if _CORE_NEEDS_DMB // Do not slow down cores that do not need a DMB instruction here + DMB // Cortex-M7 may delay memory writes and also change the order in which the writes happen. Therefore, make sure that all buffer writes are finished, before updating the in the struct +#endif + STR R0,[R6, #+12] // pRing->WrOff = WrOff + NumBytes; + MOVS R0,#+1 + POP {R4-R7} + BX LR // Return 1 +_CheckCase2: + ADDS R0,R0,R3 // Avail += RdOff; => Space incl. wrap-around + CMP R0,R2 + BCC.N _Case3 // if (Avail >= NumBytes) { => Case 2? => If not, we have case 3) (does not fit) + // + // Handling for case 2 + // + ADDS R0,R7,R5 // v = pRing->pBuffer + WrOff => Do not change pRing->pBuffer here because 2nd chunk needs org. value + SUBS R2,R2,R4 // NumBytes -= Rem; (Rem = pRing->SizeOfBuffer - WrOff; => Space until end of buffer) +_LoopCopyBeforeWrapAround: // memcpy(pRing->pBuffer + WrOff, pData, Rem); => Copy 1st chunk + LDRB R3,[R1], #+1 + STRB R3,[R0], #+1 // *pDest++ = *pSrc++ + SUBS R4,R4,#+1 + BNE _LoopCopyBeforeWrapAround + // + // Special case: First check that assumed RdOff == 0 calculated that last element before wrap-around could not be used + // But 2nd check (considering space until wrap-around and until RdOff) revealed that RdOff is not 0, so we can use the last element + // In this case, we may use a copy straight until buffer end anyway without needing to copy 2 chunks + // Therefore, check if 2nd memcpy is necessary at all + // + ADDS R4,R2,#+0 // Save (needed as counter in loop but must be written to after the loop). Also use this inst to update the flags to skip 2nd loop if possible + BEQ.N _No2ChunkNeeded // if (NumBytes) { +_LoopCopyAfterWrapAround: // memcpy(pRing->pBuffer, pData + Rem, NumBytes); + LDRB R3,[R1], #+1 // pData already points to the next src byte due to copy loop increment before this loop + STRB R3,[R5], #+1 // *pDest++ = *pSrc++ + SUBS R2,R2,#+1 + BNE _LoopCopyAfterWrapAround +_No2ChunkNeeded: +#if _CORE_NEEDS_DMB // Do not slow down cores that do not need a DMB instruction here + DMB // Cortex-M7 may delay memory writes and also change the order in which the writes happen. Therefore, make sure that all buffer writes are finished, before updating the in the struct +#endif + STR R4,[R6, #+12] // pRing->WrOff = NumBytes; => Must be written after copying data because J-Link may read control block asynchronously while writing into buffer + MOVS R0,#+1 + POP {R4-R7} + BX LR // Return 1 +_CheckCase4: + SUBS R0,R0,R7 + SUBS R0,R0,#+1 // Avail = RdOff - WrOff - 1u; + CMP R0,R2 + BCS.N _Case4 // if (Avail >= NumBytes) { => Case 4) == 1) ? => If not, we have case 5) == 3) (does not fit) +_Case3: + MOVS R0,#+0 + POP {R4-R7} + BX LR // Return 0 + _PLACE_LITS + +#endif // defined (RTT_USE_ASM) && (RTT_USE_ASM == 1) + _END + +/*************************** End of file ****************************/ diff --git a/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c new file mode 100644 index 0000000..23fc445 --- /dev/null +++ b/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c @@ -0,0 +1,505 @@ +/********************************************************************* +* SEGGER Microcontroller GmbH * +* The Embedded Experts * +********************************************************************** +* * +* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* * +* www.segger.com Support: support@segger.com * +* * +********************************************************************** +* * +* SEGGER RTT * Real Time Transfer for embedded targets * +* * +********************************************************************** +* * +* All rights reserved. * +* * +* SEGGER strongly recommends to not make any changes * +* to or modify the source code of this software in order to stay * +* compatible with the RTT protocol and J-Link. * +* * +* Redistribution and use in source and binary forms, with or * +* without modification, are permitted provided that the following * +* condition is met: * +* * +* o Redistributions of source code must retain the above copyright * +* notice, this condition and the following disclaimer. * +* * +* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND * +* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, * +* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * +* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * +* DISCLAIMED. IN NO EVENT SHALL SEGGER Microcontroller BE LIABLE FOR * +* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * +* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT * +* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * +* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * +* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * +* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * +* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * +* DAMAGE. * +* * +********************************************************************** +* * +* RTT version: 7.58c * +* * +********************************************************************** + +---------------------------END-OF-HEADER------------------------------ +File : SEGGER_RTT_printf.c +Purpose : Replacement for printf to write formatted data via RTT +Revision: $Rev: 17697 $ +---------------------------------------------------------------------- +*/ +#include "SEGGER_RTT.h" +#include "SEGGER_RTT_Conf.h" + +/********************************************************************* +* +* Defines, configurable +* +********************************************************************** +*/ + +#ifndef SEGGER_RTT_PRINTF_BUFFER_SIZE + #define SEGGER_RTT_PRINTF_BUFFER_SIZE (64) +#endif + +#include +#include + + +#define FORMAT_FLAG_LEFT_JUSTIFY (1u << 0) +#define FORMAT_FLAG_PAD_ZERO (1u << 1) +#define FORMAT_FLAG_PRINT_SIGN (1u << 2) +#define FORMAT_FLAG_ALTERNATE (1u << 3) + +/********************************************************************* +* +* Types +* +********************************************************************** +*/ + +typedef struct { + char* pBuffer; + unsigned BufferSize; + unsigned Cnt; + + int ReturnValue; + + unsigned RTTBufferIndex; +} SEGGER_RTT_PRINTF_DESC; + +/********************************************************************* +* +* Function prototypes +* +********************************************************************** +*/ + +/********************************************************************* +* +* Static code +* +********************************************************************** +*/ +/********************************************************************* +* +* _StoreChar +*/ +static void _StoreChar(SEGGER_RTT_PRINTF_DESC * p, char c) { + unsigned Cnt; + + Cnt = p->Cnt; + if ((Cnt + 1u) <= p->BufferSize) { + *(p->pBuffer + Cnt) = c; + p->Cnt = Cnt + 1u; + p->ReturnValue++; + } + // + // Write part of string, when the buffer is full + // + if (p->Cnt == p->BufferSize) { + if (SEGGER_RTT_Write(p->RTTBufferIndex, p->pBuffer, p->Cnt) != p->Cnt) { + p->ReturnValue = -1; + } else { + p->Cnt = 0u; + } + } +} + +/********************************************************************* +* +* _PrintUnsigned +*/ +static void _PrintUnsigned(SEGGER_RTT_PRINTF_DESC * pBufferDesc, unsigned v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned FormatFlags) { + static const char _aV2C[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; + unsigned Div; + unsigned Digit; + unsigned Number; + unsigned Width; + char c; + + Number = v; + Digit = 1u; + // + // Get actual field width + // + Width = 1u; + while (Number >= Base) { + Number = (Number / Base); + Width++; + } + if (NumDigits > Width) { + Width = NumDigits; + } + // + // Print leading chars if necessary + // + if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) { + if (FieldWidth != 0u) { + if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && (NumDigits == 0u)) { + c = '0'; + } else { + c = ' '; + } + while ((FieldWidth != 0u) && (Width < FieldWidth)) { + FieldWidth--; + _StoreChar(pBufferDesc, c); + if (pBufferDesc->ReturnValue < 0) { + break; + } + } + } + } + if (pBufferDesc->ReturnValue >= 0) { + // + // Compute Digit. + // Loop until Digit has the value of the highest digit required. + // Example: If the output is 345 (Base 10), loop 2 times until Digit is 100. + // + while (1) { + if (NumDigits > 1u) { // User specified a min number of digits to print? => Make sure we loop at least that often, before checking anything else (> 1 check avoids problems with NumDigits being signed / unsigned) + NumDigits--; + } else { + Div = v / Digit; + if (Div < Base) { // Is our divider big enough to extract the highest digit from value? => Done + break; + } + } + Digit *= Base; + } + // + // Output digits + // + do { + Div = v / Digit; + v -= Div * Digit; + _StoreChar(pBufferDesc, _aV2C[Div]); + if (pBufferDesc->ReturnValue < 0) { + break; + } + Digit /= Base; + } while (Digit); + // + // Print trailing spaces if necessary + // + if ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == FORMAT_FLAG_LEFT_JUSTIFY) { + if (FieldWidth != 0u) { + while ((FieldWidth != 0u) && (Width < FieldWidth)) { + FieldWidth--; + _StoreChar(pBufferDesc, ' '); + if (pBufferDesc->ReturnValue < 0) { + break; + } + } + } + } + } +} + +/********************************************************************* +* +* _PrintInt +*/ +static void _PrintInt(SEGGER_RTT_PRINTF_DESC * pBufferDesc, int v, unsigned Base, unsigned NumDigits, unsigned FieldWidth, unsigned FormatFlags) { + unsigned Width; + int Number; + + Number = (v < 0) ? -v : v; + + // + // Get actual field width + // + Width = 1u; + while (Number >= (int)Base) { + Number = (Number / (int)Base); + Width++; + } + if (NumDigits > Width) { + Width = NumDigits; + } + if ((FieldWidth > 0u) && ((v < 0) || ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_SIGN))) { + FieldWidth--; + } + + // + // Print leading spaces if necessary + // + if ((((FormatFlags & FORMAT_FLAG_PAD_ZERO) == 0u) || (NumDigits != 0u)) && ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u)) { + if (FieldWidth != 0u) { + while ((FieldWidth != 0u) && (Width < FieldWidth)) { + FieldWidth--; + _StoreChar(pBufferDesc, ' '); + if (pBufferDesc->ReturnValue < 0) { + break; + } + } + } + } + // + // Print sign if necessary + // + if (pBufferDesc->ReturnValue >= 0) { + if (v < 0) { + v = -v; + _StoreChar(pBufferDesc, '-'); + } else if ((FormatFlags & FORMAT_FLAG_PRINT_SIGN) == FORMAT_FLAG_PRINT_SIGN) { + _StoreChar(pBufferDesc, '+'); + } else { + + } + if (pBufferDesc->ReturnValue >= 0) { + // + // Print leading zeros if necessary + // + if (((FormatFlags & FORMAT_FLAG_PAD_ZERO) == FORMAT_FLAG_PAD_ZERO) && ((FormatFlags & FORMAT_FLAG_LEFT_JUSTIFY) == 0u) && (NumDigits == 0u)) { + if (FieldWidth != 0u) { + while ((FieldWidth != 0u) && (Width < FieldWidth)) { + FieldWidth--; + _StoreChar(pBufferDesc, '0'); + if (pBufferDesc->ReturnValue < 0) { + break; + } + } + } + } + if (pBufferDesc->ReturnValue >= 0) { + // + // Print number without sign + // + _PrintUnsigned(pBufferDesc, (unsigned)v, Base, NumDigits, FieldWidth, FormatFlags); + } + } + } +} + +/********************************************************************* +* +* Public code +* +********************************************************************** +*/ +/********************************************************************* +* +* SEGGER_RTT_vprintf +* +* Function description +* Stores a formatted string in SEGGER RTT control block. +* This data is read by the host. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used. (e.g. 0 for "Terminal") +* sFormat Pointer to format string +* pParamList Pointer to the list of arguments for the format string +* +* Return values +* >= 0: Number of bytes which have been stored in the "Up"-buffer. +* < 0: Error +*/ +int SEGGER_RTT_vprintf(unsigned BufferIndex, const char * sFormat, va_list * pParamList) { + char c; + SEGGER_RTT_PRINTF_DESC BufferDesc; + int v; + unsigned NumDigits; + unsigned FormatFlags; + unsigned FieldWidth; + char acBuffer[SEGGER_RTT_PRINTF_BUFFER_SIZE]; + + BufferDesc.pBuffer = acBuffer; + BufferDesc.BufferSize = SEGGER_RTT_PRINTF_BUFFER_SIZE; + BufferDesc.Cnt = 0u; + BufferDesc.RTTBufferIndex = BufferIndex; + BufferDesc.ReturnValue = 0; + + do { + c = *sFormat; + sFormat++; + if (c == 0u) { + break; + } + if (c == '%') { + // + // Filter out flags + // + FormatFlags = 0u; + v = 1; + do { + c = *sFormat; + switch (c) { + case '-': FormatFlags |= FORMAT_FLAG_LEFT_JUSTIFY; sFormat++; break; + case '0': FormatFlags |= FORMAT_FLAG_PAD_ZERO; sFormat++; break; + case '+': FormatFlags |= FORMAT_FLAG_PRINT_SIGN; sFormat++; break; + case '#': FormatFlags |= FORMAT_FLAG_ALTERNATE; sFormat++; break; + default: v = 0; break; + } + } while (v); + // + // filter out field with + // + FieldWidth = 0u; + do { + c = *sFormat; + if ((c < '0') || (c > '9')) { + break; + } + sFormat++; + FieldWidth = (FieldWidth * 10u) + ((unsigned)c - '0'); + } while (1); + + // + // Filter out precision (number of digits to display) + // + NumDigits = 0u; + c = *sFormat; + if (c == '.') { + sFormat++; + do { + c = *sFormat; + if ((c < '0') || (c > '9')) { + break; + } + sFormat++; + NumDigits = NumDigits * 10u + ((unsigned)c - '0'); + } while (1); + } + // + // Filter out length modifier + // + c = *sFormat; + do { + if ((c == 'l') || (c == 'h')) { + sFormat++; + c = *sFormat; + } else { + break; + } + } while (1); + // + // Handle specifiers + // + switch (c) { + case 'c': { + char c0; + v = va_arg(*pParamList, int); + c0 = (char)v; + _StoreChar(&BufferDesc, c0); + break; + } + case 'd': + v = va_arg(*pParamList, int); + _PrintInt(&BufferDesc, v, 10u, NumDigits, FieldWidth, FormatFlags); + break; + case 'u': + v = va_arg(*pParamList, int); + _PrintUnsigned(&BufferDesc, (unsigned)v, 10u, NumDigits, FieldWidth, FormatFlags); + break; + case 'x': + case 'X': + v = va_arg(*pParamList, int); + _PrintUnsigned(&BufferDesc, (unsigned)v, 16u, NumDigits, FieldWidth, FormatFlags); + break; + case 's': + { + const char * s = va_arg(*pParamList, const char *); + do { + c = *s; + s++; + if (c == '\0') { + break; + } + _StoreChar(&BufferDesc, c); + } while (BufferDesc.ReturnValue >= 0); + } + break; + case 'p': + v = va_arg(*pParamList, int); + _PrintUnsigned(&BufferDesc, (unsigned)v, 16u, 8u, 8u, 0u); + break; + case '%': + _StoreChar(&BufferDesc, '%'); + break; + default: + break; + } + sFormat++; + } else { + _StoreChar(&BufferDesc, c); + } + } while (BufferDesc.ReturnValue >= 0); + + if (BufferDesc.ReturnValue > 0) { + // + // Write remaining data, if any + // + if (BufferDesc.Cnt != 0u) { + SEGGER_RTT_Write(BufferIndex, acBuffer, BufferDesc.Cnt); + } + BufferDesc.ReturnValue += (int)BufferDesc.Cnt; + } + return BufferDesc.ReturnValue; +} + +/********************************************************************* +* +* SEGGER_RTT_printf +* +* Function description +* Stores a formatted string in SEGGER RTT control block. +* This data is read by the host. +* +* Parameters +* BufferIndex Index of "Up"-buffer to be used. (e.g. 0 for "Terminal") +* sFormat Pointer to format string, followed by the arguments for conversion +* +* Return values +* >= 0: Number of bytes which have been stored in the "Up"-buffer. +* < 0: Error +* +* Notes +* (1) Conversion specifications have following syntax: +* %[flags][FieldWidth][.Precision]ConversionSpecifier +* (2) Supported flags: +* -: Left justify within the field width +* +: Always print sign extension for signed conversions +* 0: Pad with 0 instead of spaces. Ignored when using '-'-flag or precision +* Supported conversion specifiers: +* c: Print the argument as one char +* d: Print the argument as a signed integer +* u: Print the argument as an unsigned integer +* x: Print the argument as an hexadecimal integer +* s: Print the string pointed to by the argument +* p: Print the argument as an 8-digit hexadecimal integer. (Argument shall be a pointer to void.) +*/ +int SEGGER_RTT_printf(unsigned BufferIndex, const char * sFormat, ...) { + int r; + va_list ParamList; + + va_start(ParamList, sFormat); + r = SEGGER_RTT_vprintf(BufferIndex, sFormat, &ParamList); + va_end(ParamList); + return r; +} +/*************************** End of file ****************************/ diff --git a/STM32F407IGHX_FLASH.ld b/STM32F407IGHX_FLASH.ld new file mode 100644 index 0000000..ab536de --- /dev/null +++ b/STM32F407IGHX_FLASH.ld @@ -0,0 +1,206 @@ +/* +****************************************************************************** +** +** @file : LinkerScript.ld +** +** @author : Auto-generated by STM32CubeIDE +** +** @brief : Linker script for STM32F407IGHx Device from STM32F4 series +** 1024Kbytes FLASH +** 64Kbytes CCMRAM +** 128Kbytes RAM +** +** Set heap size, stack size and stack location according +** to application requirements. +** +** Set memory bank area and size if external memory is used +** +** Target : STMicroelectronics STM32 +** +** Distribution: The file is distributed as is, without any warranty +** of any kind. +** +****************************************************************************** +** @attention +** +** Copyright (c) 2023 STMicroelectronics. +** All rights reserved. +** +** This software is licensed under terms that can be found in the LICENSE file +** in the root directory of this software component. +** If no LICENSE file comes with this software, it is provided AS-IS. +** +****************************************************************************** +*/ + +/* Entry Point */ +ENTRY(Reset_Handler) + +/* Highest address of the user mode stack */ +_estack = ORIGIN(RAM) + LENGTH(RAM); /* end of "RAM" Ram type memory */ + +_Min_Heap_Size = 0x5000; /* required amount of heap */ +_Min_Stack_Size = 0x5000; /* required amount of stack */ + +/* Memories definition */ +MEMORY +{ + CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 64K + RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K + FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 1024K +} + +/* Sections */ +SECTIONS +{ + /* The startup code into "FLASH" Rom type memory */ + .isr_vector : + { + . = ALIGN(4); + KEEP(*(.isr_vector)) /* Startup code */ + . = ALIGN(4); + } >FLASH + + /* The program code and other data into "FLASH" Rom type memory */ + .text : + { + . = ALIGN(4); + *(.text) /* .text sections (code) */ + *(.text*) /* .text* sections (code) */ + *(.glue_7) /* glue arm to thumb code */ + *(.glue_7t) /* glue thumb to arm code */ + *(.eh_frame) + + KEEP (*(.init)) + KEEP (*(.fini)) + + . = ALIGN(4); + _etext = .; /* define a global symbols at end of code */ + } >FLASH + + /* Constant data into "FLASH" Rom type memory */ + .rodata : + { + . = ALIGN(4); + *(.rodata) /* .rodata sections (constants, strings, etc.) */ + *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ + . = ALIGN(4); + } >FLASH + + .ARM.extab : { + . = ALIGN(4); + *(.ARM.extab* .gnu.linkonce.armextab.*) + . = ALIGN(4); + } >FLASH + + .ARM : { + . = ALIGN(4); + __exidx_start = .; + *(.ARM.exidx*) + __exidx_end = .; + . = ALIGN(4); + } >FLASH + + .preinit_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__preinit_array_start = .); + KEEP (*(.preinit_array*)) + PROVIDE_HIDDEN (__preinit_array_end = .); + . = ALIGN(4); + } >FLASH + + .init_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__init_array_start = .); + KEEP (*(SORT(.init_array.*))) + KEEP (*(.init_array*)) + PROVIDE_HIDDEN (__init_array_end = .); + . = ALIGN(4); + } >FLASH + + .fini_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__fini_array_start = .); + KEEP (*(SORT(.fini_array.*))) + KEEP (*(.fini_array*)) + PROVIDE_HIDDEN (__fini_array_end = .); + . = ALIGN(4); + } >FLASH + + /* Used by the startup to initialize data */ + _sidata = LOADADDR(.data); + + /* Initialized data sections into "RAM" Ram type memory */ + .data : + { + . = ALIGN(4); + _sdata = .; /* create a global symbol at data start */ + *(.data) /* .data sections */ + *(.data*) /* .data* sections */ + *(.RamFunc) /* .RamFunc sections */ + *(.RamFunc*) /* .RamFunc* sections */ + + . = ALIGN(4); + _edata = .; /* define a global symbol at data end */ + + } >RAM AT> FLASH + + _siccmram = LOADADDR(.ccmram); + + /* CCM-RAM section + * + * IMPORTANT NOTE! + * If initialized variables will be placed in this section, + * the startup code needs to be modified to copy the init-values. + */ + .ccmram : + { + . = ALIGN(4); + _sccmram = .; /* create a global symbol at ccmram start */ + *(.ccmram) + *(.ccmram*) + + . = ALIGN(4); + _eccmram = .; /* create a global symbol at ccmram end */ + } >CCMRAM AT> FLASH + + /* Uninitialized data section into "RAM" Ram type memory */ + . = ALIGN(4); + .bss : + { + /* This is used by the startup in order to initialize the .bss section */ + _sbss = .; /* define a global symbol at bss start */ + __bss_start__ = _sbss; + *(.bss) + *(.bss*) + *(COMMON) + + . = ALIGN(4); + _ebss = .; /* define a global symbol at bss end */ + __bss_end__ = _ebss; + } >RAM + + /* User_heap_stack section, used to check that there is enough "RAM" Ram type memory left */ + ._user_heap_stack : + { + . = ALIGN(8); + PROVIDE ( end = . ); + PROVIDE ( _end = . ); + . = . + _Min_Heap_Size; + . = . + _Min_Stack_Size; + . = ALIGN(8); + } >RAM + + /* Remove information from the compiler libraries */ + /DISCARD/ : + { + libc.a ( * ) + libm.a ( * ) + libgcc.a ( * ) + } + + .ARM.attributes 0 : { *(.ARM.attributes) } +} diff --git a/STM32F407IGHX_RAM.ld b/STM32F407IGHX_RAM.ld new file mode 100644 index 0000000..db2746f --- /dev/null +++ b/STM32F407IGHX_RAM.ld @@ -0,0 +1,206 @@ +/* +****************************************************************************** +** +** @file : LinkerScript.ld (debug in RAM dedicated) +** +** @author : Auto-generated by STM32CubeIDE +** +** @brief : Linker script for STM32F407IGHx Device from STM32F4 series +** 1024Kbytes FLASH +** 64Kbytes CCMRAM +** 128Kbytes RAM +** +** Set heap size, stack size and stack location according +** to application requirements. +** +** Set memory bank area and size if external memory is used +** +** Target : STMicroelectronics STM32 +** +** Distribution: The file is distributed as is, without any warranty +** of any kind. +** +****************************************************************************** +** @attention +** +** Copyright (c) 2023 STMicroelectronics. +** All rights reserved. +** +** This software is licensed under terms that can be found in the LICENSE file +** in the root directory of this software component. +** If no LICENSE file comes with this software, it is provided AS-IS. +** +****************************************************************************** +*/ + +/* Entry Point */ +ENTRY(Reset_Handler) + +/* Highest address of the user mode stack */ +_estack = ORIGIN(RAM) + LENGTH(RAM); /* end of "RAM" Ram type memory */ + +_Min_Heap_Size = 0x5000; /* required amount of heap */ +_Min_Stack_Size = 0x5000; /* required amount of stack */ + +/* Memories definition */ +MEMORY +{ + CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 64K + RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K + FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 1024K +} + +/* Sections */ +SECTIONS +{ + /* The startup code into "RAM" Ram type memory */ + .isr_vector : + { + . = ALIGN(4); + KEEP(*(.isr_vector)) /* Startup code */ + . = ALIGN(4); + } >RAM + + /* The program code and other data into "RAM" Ram type memory */ + .text : + { + . = ALIGN(4); + *(.text) /* .text sections (code) */ + *(.text*) /* .text* sections (code) */ + *(.glue_7) /* glue arm to thumb code */ + *(.glue_7t) /* glue thumb to arm code */ + *(.eh_frame) + *(.RamFunc) /* .RamFunc sections */ + *(.RamFunc*) /* .RamFunc* sections */ + + KEEP (*(.init)) + KEEP (*(.fini)) + + . = ALIGN(4); + _etext = .; /* define a global symbols at end of code */ + } >RAM + + /* Constant data into "RAM" Ram type memory */ + .rodata : + { + . = ALIGN(4); + *(.rodata) /* .rodata sections (constants, strings, etc.) */ + *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ + . = ALIGN(4); + } >RAM + + .ARM.extab : { + . = ALIGN(4); + *(.ARM.extab* .gnu.linkonce.armextab.*) + . = ALIGN(4); + } >RAM + + .ARM : { + . = ALIGN(4); + __exidx_start = .; + *(.ARM.exidx*) + __exidx_end = .; + . = ALIGN(4); + } >RAM + + .preinit_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__preinit_array_start = .); + KEEP (*(.preinit_array*)) + PROVIDE_HIDDEN (__preinit_array_end = .); + . = ALIGN(4); + } >RAM + + .init_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__init_array_start = .); + KEEP (*(SORT(.init_array.*))) + KEEP (*(.init_array*)) + PROVIDE_HIDDEN (__init_array_end = .); + . = ALIGN(4); + } >RAM + + .fini_array : + { + . = ALIGN(4); + PROVIDE_HIDDEN (__fini_array_start = .); + KEEP (*(SORT(.fini_array.*))) + KEEP (*(.fini_array*)) + PROVIDE_HIDDEN (__fini_array_end = .); + . = ALIGN(4); + } >RAM + + /* Used by the startup to initialize data */ + _sidata = LOADADDR(.data); + + /* Initialized data sections into "RAM" Ram type memory */ + .data : + { + . = ALIGN(4); + _sdata = .; /* create a global symbol at data start */ + *(.data) /* .data sections */ + *(.data*) /* .data* sections */ + + . = ALIGN(4); + _edata = .; /* define a global symbol at data end */ + + } >RAM + + _siccmram = LOADADDR(.ccmram); + + /* CCM-RAM section + * + * IMPORTANT NOTE! + * If initialized variables will be placed in this section, + * the startup code needs to be modified to copy the init-values. + */ + .ccmram : + { + . = ALIGN(4); + _sccmram = .; /* create a global symbol at ccmram start */ + *(.ccmram) + *(.ccmram*) + + . = ALIGN(4); + _eccmram = .; /* create a global symbol at ccmram end */ + } >CCMRAM AT> RAM + + /* Uninitialized data section into "RAM" Ram type memory */ + . = ALIGN(4); + .bss : + { + /* This is used by the startup in order to initialize the .bss section */ + _sbss = .; /* define a global symbol at bss start */ + __bss_start__ = _sbss; + *(.bss) + *(.bss*) + *(COMMON) + + . = ALIGN(4); + _ebss = .; /* define a global symbol at bss end */ + __bss_end__ = _ebss; + } >RAM + + /* User_heap_stack section, used to check that there is enough "RAM" Ram type memory left */ + ._user_heap_stack : + { + . = ALIGN(8); + PROVIDE ( end = . ); + PROVIDE ( _end = . ); + . = . + _Min_Heap_Size; + . = . + _Min_Stack_Size; + . = ALIGN(8); + } >RAM + + /* Remove information from the compiler libraries */ + /DISCARD/ : + { + libc.a ( * ) + libm.a ( * ) + libgcc.a ( * ) + } + + .ARM.attributes 0 : { *(.ARM.attributes) } +} diff --git a/Src/adc.c b/Src/adc.c new file mode 100644 index 0000000..864e3c4 --- /dev/null +++ b/Src/adc.c @@ -0,0 +1,135 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file adc.c + * @brief This file provides code for the configuration + * of the ADC instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "adc.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +ADC_HandleTypeDef hadc1; +DMA_HandleTypeDef hdma_adc1; + +/* ADC1 init function */ +void MX_ADC1_Init(void) +{ + + /* USER CODE BEGIN ADC1_Init 0 */ + + /* USER CODE END ADC1_Init 0 */ + + ADC_ChannelConfTypeDef sConfig = {0}; + + /* USER CODE BEGIN ADC1_Init 1 */ + + /* USER CODE END ADC1_Init 1 */ + + /** Configure the global features of the ADC (Clock, Resolution, Data Alignment and number of conversion) + */ + hadc1.Instance = ADC1; + hadc1.Init.ClockPrescaler = ADC_CLOCK_SYNC_PCLK_DIV6; + hadc1.Init.Resolution = ADC_RESOLUTION_12B; + hadc1.Init.ScanConvMode = DISABLE; + hadc1.Init.ContinuousConvMode = DISABLE; + hadc1.Init.DiscontinuousConvMode = DISABLE; + hadc1.Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_NONE; + hadc1.Init.ExternalTrigConv = ADC_SOFTWARE_START; + hadc1.Init.DataAlign = ADC_DATAALIGN_RIGHT; + hadc1.Init.NbrOfConversion = 1; + hadc1.Init.DMAContinuousRequests = DISABLE; + hadc1.Init.EOCSelection = ADC_EOC_SINGLE_CONV; + if (HAL_ADC_Init(&hadc1) != HAL_OK) + { + Error_Handler(); + } + + /** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time. + */ + sConfig.Channel = ADC_CHANNEL_TEMPSENSOR; + sConfig.Rank = 1; + sConfig.SamplingTime = ADC_SAMPLETIME_3CYCLES; + if (HAL_ADC_ConfigChannel(&hadc1, &sConfig) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN ADC1_Init 2 */ + + /* USER CODE END ADC1_Init 2 */ + +} + +void HAL_ADC_MspInit(ADC_HandleTypeDef* adcHandle) +{ + + if(adcHandle->Instance==ADC1) + { + /* USER CODE BEGIN ADC1_MspInit 0 */ + + /* USER CODE END ADC1_MspInit 0 */ + /* ADC1 clock enable */ + __HAL_RCC_ADC1_CLK_ENABLE(); + + /* ADC1 DMA Init */ + /* ADC1 Init */ + hdma_adc1.Instance = DMA2_Stream4; + hdma_adc1.Init.Channel = DMA_CHANNEL_0; + hdma_adc1.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_adc1.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_adc1.Init.MemInc = DMA_MINC_ENABLE; + hdma_adc1.Init.PeriphDataAlignment = DMA_PDATAALIGN_HALFWORD; + hdma_adc1.Init.MemDataAlignment = DMA_MDATAALIGN_HALFWORD; + hdma_adc1.Init.Mode = DMA_NORMAL; + hdma_adc1.Init.Priority = DMA_PRIORITY_LOW; + hdma_adc1.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_adc1) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(adcHandle,DMA_Handle,hdma_adc1); + + /* USER CODE BEGIN ADC1_MspInit 1 */ + + /* USER CODE END ADC1_MspInit 1 */ + } +} + +void HAL_ADC_MspDeInit(ADC_HandleTypeDef* adcHandle) +{ + + if(adcHandle->Instance==ADC1) + { + /* USER CODE BEGIN ADC1_MspDeInit 0 */ + + /* USER CODE END ADC1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_ADC1_CLK_DISABLE(); + + /* ADC1 DMA DeInit */ + HAL_DMA_DeInit(adcHandle->DMA_Handle); + /* USER CODE BEGIN ADC1_MspDeInit 1 */ + + /* USER CODE END ADC1_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/can.c b/Src/can.c new file mode 100644 index 0000000..41173da --- /dev/null +++ b/Src/can.c @@ -0,0 +1,224 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file can.c + * @brief This file provides code for the configuration + * of the CAN instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "can.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +CAN_HandleTypeDef hcan1; +CAN_HandleTypeDef hcan2; + +/* CAN1 init function */ +void MX_CAN1_Init(void) +{ + + /* USER CODE BEGIN CAN1_Init 0 */ + + /* USER CODE END CAN1_Init 0 */ + + /* USER CODE BEGIN CAN1_Init 1 */ + + /* USER CODE END CAN1_Init 1 */ + hcan1.Instance = CAN1; + hcan1.Init.Prescaler = 3; + hcan1.Init.Mode = CAN_MODE_NORMAL; + hcan1.Init.SyncJumpWidth = CAN_SJW_1TQ; + hcan1.Init.TimeSeg1 = CAN_BS1_10TQ; + hcan1.Init.TimeSeg2 = CAN_BS2_3TQ; + hcan1.Init.TimeTriggeredMode = DISABLE; + hcan1.Init.AutoBusOff = DISABLE; + hcan1.Init.AutoWakeUp = DISABLE; + hcan1.Init.AutoRetransmission = ENABLE; + hcan1.Init.ReceiveFifoLocked = DISABLE; + hcan1.Init.TransmitFifoPriority = ENABLE; + if (HAL_CAN_Init(&hcan1) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN CAN1_Init 2 */ + + /* USER CODE END CAN1_Init 2 */ + +} +/* CAN2 init function */ +void MX_CAN2_Init(void) +{ + + /* USER CODE BEGIN CAN2_Init 0 */ + + /* USER CODE END CAN2_Init 0 */ + + /* USER CODE BEGIN CAN2_Init 1 */ + + /* USER CODE END CAN2_Init 1 */ + hcan2.Instance = CAN2; + hcan2.Init.Prescaler = 3; + hcan2.Init.Mode = CAN_MODE_NORMAL; + hcan2.Init.SyncJumpWidth = CAN_SJW_1TQ; + hcan2.Init.TimeSeg1 = CAN_BS1_10TQ; + hcan2.Init.TimeSeg2 = CAN_BS2_3TQ; + hcan2.Init.TimeTriggeredMode = DISABLE; + hcan2.Init.AutoBusOff = DISABLE; + hcan2.Init.AutoWakeUp = DISABLE; + hcan2.Init.AutoRetransmission = ENABLE; + hcan2.Init.ReceiveFifoLocked = DISABLE; + hcan2.Init.TransmitFifoPriority = ENABLE; + if (HAL_CAN_Init(&hcan2) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN CAN2_Init 2 */ + + /* USER CODE END CAN2_Init 2 */ + +} + +static uint32_t HAL_RCC_CAN1_CLK_ENABLED=0; + +void HAL_CAN_MspInit(CAN_HandleTypeDef* canHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(canHandle->Instance==CAN1) + { + /* USER CODE BEGIN CAN1_MspInit 0 */ + + /* USER CODE END CAN1_MspInit 0 */ + /* CAN1 clock enable */ + HAL_RCC_CAN1_CLK_ENABLED++; + if(HAL_RCC_CAN1_CLK_ENABLED==1){ + __HAL_RCC_CAN1_CLK_ENABLE(); + } + + __HAL_RCC_GPIOD_CLK_ENABLE(); + /**CAN1 GPIO Configuration + PD0 ------> CAN1_RX + PD1 ------> CAN1_TX + */ + GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF9_CAN1; + HAL_GPIO_Init(GPIOD, &GPIO_InitStruct); + + /* CAN1 interrupt Init */ + HAL_NVIC_SetPriority(CAN1_RX0_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(CAN1_RX0_IRQn); + HAL_NVIC_SetPriority(CAN1_RX1_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(CAN1_RX1_IRQn); + /* USER CODE BEGIN CAN1_MspInit 1 */ + + /* USER CODE END CAN1_MspInit 1 */ + } + else if(canHandle->Instance==CAN2) + { + /* USER CODE BEGIN CAN2_MspInit 0 */ + + /* USER CODE END CAN2_MspInit 0 */ + /* CAN2 clock enable */ + __HAL_RCC_CAN2_CLK_ENABLE(); + HAL_RCC_CAN1_CLK_ENABLED++; + if(HAL_RCC_CAN1_CLK_ENABLED==1){ + __HAL_RCC_CAN1_CLK_ENABLE(); + } + + __HAL_RCC_GPIOB_CLK_ENABLE(); + /**CAN2 GPIO Configuration + PB5 ------> CAN2_RX + PB6 ------> CAN2_TX + */ + GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_6; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF9_CAN2; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + /* CAN2 interrupt Init */ + HAL_NVIC_SetPriority(CAN2_RX0_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(CAN2_RX0_IRQn); + HAL_NVIC_SetPriority(CAN2_RX1_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(CAN2_RX1_IRQn); + /* USER CODE BEGIN CAN2_MspInit 1 */ + + /* USER CODE END CAN2_MspInit 1 */ + } +} + +void HAL_CAN_MspDeInit(CAN_HandleTypeDef* canHandle) +{ + + if(canHandle->Instance==CAN1) + { + /* USER CODE BEGIN CAN1_MspDeInit 0 */ + + /* USER CODE END CAN1_MspDeInit 0 */ + /* Peripheral clock disable */ + HAL_RCC_CAN1_CLK_ENABLED--; + if(HAL_RCC_CAN1_CLK_ENABLED==0){ + __HAL_RCC_CAN1_CLK_DISABLE(); + } + + /**CAN1 GPIO Configuration + PD0 ------> CAN1_RX + PD1 ------> CAN1_TX + */ + HAL_GPIO_DeInit(GPIOD, GPIO_PIN_0|GPIO_PIN_1); + + /* CAN1 interrupt Deinit */ + HAL_NVIC_DisableIRQ(CAN1_RX0_IRQn); + HAL_NVIC_DisableIRQ(CAN1_RX1_IRQn); + /* USER CODE BEGIN CAN1_MspDeInit 1 */ + + /* USER CODE END CAN1_MspDeInit 1 */ + } + else if(canHandle->Instance==CAN2) + { + /* USER CODE BEGIN CAN2_MspDeInit 0 */ + + /* USER CODE END CAN2_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_CAN2_CLK_DISABLE(); + HAL_RCC_CAN1_CLK_ENABLED--; + if(HAL_RCC_CAN1_CLK_ENABLED==0){ + __HAL_RCC_CAN1_CLK_DISABLE(); + } + + /**CAN2 GPIO Configuration + PB5 ------> CAN2_RX + PB6 ------> CAN2_TX + */ + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_5|GPIO_PIN_6); + + /* CAN2 interrupt Deinit */ + HAL_NVIC_DisableIRQ(CAN2_RX0_IRQn); + HAL_NVIC_DisableIRQ(CAN2_RX1_IRQn); + /* USER CODE BEGIN CAN2_MspDeInit 1 */ + + /* USER CODE END CAN2_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/crc.c b/Src/crc.c new file mode 100644 index 0000000..7683ef1 --- /dev/null +++ b/Src/crc.c @@ -0,0 +1,85 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file crc.c + * @brief This file provides code for the configuration + * of the CRC instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "crc.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +CRC_HandleTypeDef hcrc; + +/* CRC init function */ +void MX_CRC_Init(void) +{ + + /* USER CODE BEGIN CRC_Init 0 */ + + /* USER CODE END CRC_Init 0 */ + + /* USER CODE BEGIN CRC_Init 1 */ + + /* USER CODE END CRC_Init 1 */ + hcrc.Instance = CRC; + if (HAL_CRC_Init(&hcrc) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN CRC_Init 2 */ + + /* USER CODE END CRC_Init 2 */ + +} + +void HAL_CRC_MspInit(CRC_HandleTypeDef* crcHandle) +{ + + if(crcHandle->Instance==CRC) + { + /* USER CODE BEGIN CRC_MspInit 0 */ + + /* USER CODE END CRC_MspInit 0 */ + /* CRC clock enable */ + __HAL_RCC_CRC_CLK_ENABLE(); + /* USER CODE BEGIN CRC_MspInit 1 */ + + /* USER CODE END CRC_MspInit 1 */ + } +} + +void HAL_CRC_MspDeInit(CRC_HandleTypeDef* crcHandle) +{ + + if(crcHandle->Instance==CRC) + { + /* USER CODE BEGIN CRC_MspDeInit 0 */ + + /* USER CODE END CRC_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_CRC_CLK_DISABLE(); + /* USER CODE BEGIN CRC_MspDeInit 1 */ + + /* USER CODE END CRC_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/dac.c b/Src/dac.c new file mode 100644 index 0000000..13b81ef --- /dev/null +++ b/Src/dac.c @@ -0,0 +1,116 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file dac.c + * @brief This file provides code for the configuration + * of the DAC instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "dac.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +DAC_HandleTypeDef hdac; + +/* DAC init function */ +void MX_DAC_Init(void) +{ + + /* USER CODE BEGIN DAC_Init 0 */ + + /* USER CODE END DAC_Init 0 */ + + DAC_ChannelConfTypeDef sConfig = {0}; + + /* USER CODE BEGIN DAC_Init 1 */ + + /* USER CODE END DAC_Init 1 */ + + /** DAC Initialization + */ + hdac.Instance = DAC; + if (HAL_DAC_Init(&hdac) != HAL_OK) + { + Error_Handler(); + } + + /** DAC channel OUT2 config + */ + sConfig.DAC_Trigger = DAC_TRIGGER_NONE; + sConfig.DAC_OutputBuffer = DAC_OUTPUTBUFFER_ENABLE; + if (HAL_DAC_ConfigChannel(&hdac, &sConfig, DAC_CHANNEL_2) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN DAC_Init 2 */ + + /* USER CODE END DAC_Init 2 */ + +} + +void HAL_DAC_MspInit(DAC_HandleTypeDef* dacHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(dacHandle->Instance==DAC) + { + /* USER CODE BEGIN DAC_MspInit 0 */ + + /* USER CODE END DAC_MspInit 0 */ + /* DAC clock enable */ + __HAL_RCC_DAC_CLK_ENABLE(); + + __HAL_RCC_GPIOA_CLK_ENABLE(); + /**DAC GPIO Configuration + PA5 ------> DAC_OUT2 + */ + GPIO_InitStruct.Pin = GPIO_PIN_5; + GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* USER CODE BEGIN DAC_MspInit 1 */ + + /* USER CODE END DAC_MspInit 1 */ + } +} + +void HAL_DAC_MspDeInit(DAC_HandleTypeDef* dacHandle) +{ + + if(dacHandle->Instance==DAC) + { + /* USER CODE BEGIN DAC_MspDeInit 0 */ + + /* USER CODE END DAC_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_DAC_CLK_DISABLE(); + + /**DAC GPIO Configuration + PA5 ------> DAC_OUT2 + */ + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_5); + + /* USER CODE BEGIN DAC_MspDeInit 1 */ + + /* USER CODE END DAC_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/dma.c b/Src/dma.c new file mode 100644 index 0000000..a1959ee --- /dev/null +++ b/Src/dma.c @@ -0,0 +1,89 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file dma.c + * @brief This file provides code for the configuration + * of all the requested memory to memory DMA transfers. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "dma.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/*----------------------------------------------------------------------------*/ +/* Configure DMA */ +/*----------------------------------------------------------------------------*/ + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ + +/** + * Enable DMA controller clock + */ +void MX_DMA_Init(void) +{ + + /* DMA controller clock enable */ + __HAL_RCC_DMA2_CLK_ENABLE(); + __HAL_RCC_DMA1_CLK_ENABLE(); + + /* DMA interrupt init */ + /* DMA1_Stream1_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA1_Stream1_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA1_Stream1_IRQn); + /* DMA1_Stream2_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA1_Stream2_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA1_Stream2_IRQn); + /* DMA1_Stream3_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA1_Stream3_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA1_Stream3_IRQn); + /* DMA1_Stream4_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA1_Stream4_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA1_Stream4_IRQn); + /* DMA1_Stream7_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA1_Stream7_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA1_Stream7_IRQn); + /* DMA2_Stream0_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream0_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream0_IRQn); + /* DMA2_Stream2_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream2_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream2_IRQn); + /* DMA2_Stream3_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream3_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream3_IRQn); + /* DMA2_Stream4_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream4_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream4_IRQn); + /* DMA2_Stream5_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream5_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream5_IRQn); + /* DMA2_Stream6_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream6_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream6_IRQn); + /* DMA2_Stream7_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(DMA2_Stream7_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(DMA2_Stream7_IRQn); + +} + +/* USER CODE BEGIN 2 */ + +/* USER CODE END 2 */ + diff --git a/Src/freertos.c b/Src/freertos.c new file mode 100644 index 0000000..419d616 --- /dev/null +++ b/Src/freertos.c @@ -0,0 +1,138 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * File Name : freertos.c + * Description : Code for freertos applications + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "FreeRTOS.h" +#include "task.h" +#include "main.h" +#include "cmsis_os.h" + +/* Private includes ----------------------------------------------------------*/ +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* Private typedef -----------------------------------------------------------*/ +/* USER CODE BEGIN PTD */ + +/* USER CODE END PTD */ + +/* Private define ------------------------------------------------------------*/ +/* USER CODE BEGIN PD */ + +/* USER CODE END PD */ + +/* Private macro -------------------------------------------------------------*/ +/* USER CODE BEGIN PM */ + +/* USER CODE END PM */ + +/* Private variables ---------------------------------------------------------*/ +/* USER CODE BEGIN Variables */ + +/* USER CODE END Variables */ +osThreadId defaultTaskHandle; + +/* Private function prototypes -----------------------------------------------*/ +/* USER CODE BEGIN FunctionPrototypes */ + +/* USER CODE END FunctionPrototypes */ + +void StartDefaultTask(void const * argument); + +extern void MX_USB_DEVICE_Init(void); +void MX_FREERTOS_Init(void); /* (MISRA C 2004 rule 8.1) */ + +/* GetIdleTaskMemory prototype (linked to static allocation support) */ +void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ); + +/* USER CODE BEGIN GET_IDLE_TASK_MEMORY */ +static StaticTask_t xIdleTaskTCBBuffer; +static StackType_t xIdleStack[configMINIMAL_STACK_SIZE]; + +void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ) +{ + *ppxIdleTaskTCBBuffer = &xIdleTaskTCBBuffer; + *ppxIdleTaskStackBuffer = &xIdleStack[0]; + *pulIdleTaskStackSize = configMINIMAL_STACK_SIZE; + /* place for user code */ +} +/* USER CODE END GET_IDLE_TASK_MEMORY */ + +/** + * @brief FreeRTOS initialization + * @param None + * @retval None + */ +void MX_FREERTOS_Init(void) { + /* USER CODE BEGIN Init */ + + /* USER CODE END Init */ + + /* USER CODE BEGIN RTOS_MUTEX */ + /* add mutexes, ... */ + /* USER CODE END RTOS_MUTEX */ + + /* USER CODE BEGIN RTOS_SEMAPHORES */ + /* add semaphores, ... */ + /* USER CODE END RTOS_SEMAPHORES */ + + /* USER CODE BEGIN RTOS_TIMERS */ + /* start timers, add new ones, ... */ + /* USER CODE END RTOS_TIMERS */ + + /* USER CODE BEGIN RTOS_QUEUES */ + /* add queues, ... */ + /* USER CODE END RTOS_QUEUES */ + + /* Create the thread(s) */ + /* definition and creation of defaultTask */ + osThreadDef(defaultTask, StartDefaultTask, osPriorityNormal, 0, 128); + defaultTaskHandle = osThreadCreate(osThread(defaultTask), NULL); + + /* USER CODE BEGIN RTOS_THREADS */ + /* add threads, ... */ + /* USER CODE END RTOS_THREADS */ + +} + +/* USER CODE BEGIN Header_StartDefaultTask */ +/** + * @brief Function implementing the defaultTask thread. + * @param argument: Not used + * @retval None + */ +/* USER CODE END Header_StartDefaultTask */ +void StartDefaultTask(void const * argument) +{ + /* init code for USB_DEVICE */ + MX_USB_DEVICE_Init(); + /* USER CODE BEGIN StartDefaultTask */ + /* Infinite loop */ + for(;;) + { + osDelay(1); + } + /* USER CODE END StartDefaultTask */ +} + +/* Private application code --------------------------------------------------*/ +/* USER CODE BEGIN Application */ + +/* USER CODE END Application */ diff --git a/Src/gpio.c b/Src/gpio.c new file mode 100644 index 0000000..892133f --- /dev/null +++ b/Src/gpio.c @@ -0,0 +1,127 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file gpio.c + * @brief This file provides code for the configuration + * of all used GPIO pins. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "gpio.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/*----------------------------------------------------------------------------*/ +/* Configure GPIO */ +/*----------------------------------------------------------------------------*/ +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ + +/** Configure pins as + * Analog + * Input + * Output + * EVENT_OUT + * EXTI +*/ +void MX_GPIO_Init(void) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + + /* GPIO Ports Clock Enable */ + __HAL_RCC_GPIOB_CLK_ENABLE(); + __HAL_RCC_GPIOG_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOD_CLK_ENABLE(); + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_GPIOI_CLK_ENABLE(); + __HAL_RCC_GPIOF_CLK_ENABLE(); + __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOE_CLK_ENABLE(); + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(MAG_RST_GPIO_Port, MAG_RST_Pin, GPIO_PIN_RESET); + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(CS1_ACCEL_GPIO_Port, CS1_ACCEL_Pin, GPIO_PIN_SET); + + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(CS1_GYRO_GPIO_Port, CS1_GYRO_Pin, GPIO_PIN_SET); + + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = MAG_RST_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(MAG_RST_GPIO_Port, &GPIO_InitStruct); + + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = INT_MAG_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Pull = GPIO_PULLUP; + HAL_GPIO_Init(INT_MAG_GPIO_Port, &GPIO_InitStruct); + + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = KEY_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + GPIO_InitStruct.Pull = GPIO_PULLUP; + HAL_GPIO_Init(KEY_GPIO_Port, &GPIO_InitStruct); + + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = CS1_ACCEL_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + HAL_GPIO_Init(CS1_ACCEL_GPIO_Port, &GPIO_InitStruct); + + GPIO_InitStruct.Pin = GPIO_PIN_8; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_MEDIUM; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + HAL_GPIO_WritePin(GPIOC,GPIO_PIN_8,GPIO_PIN_SET); + + /*Configure GPIO pins : PCPin PCPin */ + GPIO_InitStruct.Pin = INT_ACC_Pin|INT_GYRO_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = CS1_GYRO_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + HAL_GPIO_Init(CS1_GYRO_GPIO_Port, &GPIO_InitStruct); + + /* EXTI interrupt init*/ + HAL_NVIC_SetPriority(EXTI3_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(EXTI3_IRQn); + + HAL_NVIC_SetPriority(EXTI4_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(EXTI4_IRQn); + + HAL_NVIC_SetPriority(EXTI9_5_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(EXTI9_5_IRQn); + +} + +/* USER CODE BEGIN 2 */ + +/* USER CODE END 2 */ diff --git a/Src/i2c.c b/Src/i2c.c new file mode 100644 index 0000000..0692fd5 --- /dev/null +++ b/Src/i2c.c @@ -0,0 +1,259 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file i2c.c + * @brief This file provides code for the configuration + * of the I2C instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "i2c.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +I2C_HandleTypeDef hi2c2; +I2C_HandleTypeDef hi2c3; +DMA_HandleTypeDef hdma_i2c2_rx; +DMA_HandleTypeDef hdma_i2c2_tx; + +/* I2C2 init function */ +void MX_I2C2_Init(void) +{ + + /* USER CODE BEGIN I2C2_Init 0 */ + + /* USER CODE END I2C2_Init 0 */ + + /* USER CODE BEGIN I2C2_Init 1 */ + + /* USER CODE END I2C2_Init 1 */ + hi2c2.Instance = I2C2; + hi2c2.Init.ClockSpeed = 400000; + hi2c2.Init.DutyCycle = I2C_DUTYCYCLE_2; + hi2c2.Init.OwnAddress1 = 0; + hi2c2.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; + hi2c2.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; + hi2c2.Init.OwnAddress2 = 0; + hi2c2.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; + hi2c2.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; + if (HAL_I2C_Init(&hi2c2) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN I2C2_Init 2 */ + + /* USER CODE END I2C2_Init 2 */ + +} +/* I2C3 init function */ +void MX_I2C3_Init(void) +{ + + /* USER CODE BEGIN I2C3_Init 0 */ + + /* USER CODE END I2C3_Init 0 */ + + /* USER CODE BEGIN I2C3_Init 1 */ + + /* USER CODE END I2C3_Init 1 */ + hi2c3.Instance = I2C3; + hi2c3.Init.ClockSpeed = 400000; + hi2c3.Init.DutyCycle = I2C_DUTYCYCLE_2; + hi2c3.Init.OwnAddress1 = 0; + hi2c3.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; + hi2c3.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE; + hi2c3.Init.OwnAddress2 = 0; + hi2c3.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE; + hi2c3.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE; + if (HAL_I2C_Init(&hi2c3) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN I2C3_Init 2 */ + + /* USER CODE END I2C3_Init 2 */ + +} + +void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(i2cHandle->Instance==I2C2) + { + /* USER CODE BEGIN I2C2_MspInit 0 */ + + /* USER CODE END I2C2_MspInit 0 */ + + __HAL_RCC_GPIOF_CLK_ENABLE(); + /**I2C2 GPIO Configuration + PF0 ------> I2C2_SDA + PF1 ------> I2C2_SCL + */ + GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1; + GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_I2C2; + HAL_GPIO_Init(GPIOF, &GPIO_InitStruct); + + /* I2C2 clock enable */ + __HAL_RCC_I2C2_CLK_ENABLE(); + + /* I2C2 DMA Init */ + /* I2C2_RX Init */ + hdma_i2c2_rx.Instance = DMA1_Stream2; + hdma_i2c2_rx.Init.Channel = DMA_CHANNEL_7; + hdma_i2c2_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_i2c2_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_i2c2_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_i2c2_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_i2c2_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_i2c2_rx.Init.Mode = DMA_NORMAL; + hdma_i2c2_rx.Init.Priority = DMA_PRIORITY_LOW; + hdma_i2c2_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_i2c2_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(i2cHandle,hdmarx,hdma_i2c2_rx); + + /* I2C2_TX Init */ + hdma_i2c2_tx.Instance = DMA1_Stream7; + hdma_i2c2_tx.Init.Channel = DMA_CHANNEL_7; + hdma_i2c2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + hdma_i2c2_tx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_i2c2_tx.Init.MemInc = DMA_MINC_ENABLE; + hdma_i2c2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_i2c2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_i2c2_tx.Init.Mode = DMA_NORMAL; + hdma_i2c2_tx.Init.Priority = DMA_PRIORITY_LOW; + hdma_i2c2_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_i2c2_tx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(i2cHandle,hdmatx,hdma_i2c2_tx); + + /* I2C2 interrupt Init */ + HAL_NVIC_SetPriority(I2C2_EV_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(I2C2_EV_IRQn); + HAL_NVIC_SetPriority(I2C2_ER_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(I2C2_ER_IRQn); + /* USER CODE BEGIN I2C2_MspInit 1 */ + + /* USER CODE END I2C2_MspInit 1 */ + } + else if(i2cHandle->Instance==I2C3) + { + /* USER CODE BEGIN I2C3_MspInit 0 */ + + /* USER CODE END I2C3_MspInit 0 */ + + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + /**I2C3 GPIO Configuration + PC9 ------> I2C3_SDA + PA8 ------> I2C3_SCL + */ + GPIO_InitStruct.Pin = GPIO_PIN_9; + GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_I2C3; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + + GPIO_InitStruct.Pin = GPIO_PIN_8; + GPIO_InitStruct.Mode = GPIO_MODE_AF_OD; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF4_I2C3; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* I2C3 clock enable */ + __HAL_RCC_I2C3_CLK_ENABLE(); + + /* I2C3 interrupt Init */ + HAL_NVIC_SetPriority(I2C3_EV_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(I2C3_EV_IRQn); + HAL_NVIC_SetPriority(I2C3_ER_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(I2C3_ER_IRQn); + /* USER CODE BEGIN I2C3_MspInit 1 */ + + /* USER CODE END I2C3_MspInit 1 */ + } +} + +void HAL_I2C_MspDeInit(I2C_HandleTypeDef* i2cHandle) +{ + + if(i2cHandle->Instance==I2C2) + { + /* USER CODE BEGIN I2C2_MspDeInit 0 */ + + /* USER CODE END I2C2_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_I2C2_CLK_DISABLE(); + + /**I2C2 GPIO Configuration + PF0 ------> I2C2_SDA + PF1 ------> I2C2_SCL + */ + HAL_GPIO_DeInit(GPIOF, GPIO_PIN_0); + + HAL_GPIO_DeInit(GPIOF, GPIO_PIN_1); + + /* I2C2 DMA DeInit */ + HAL_DMA_DeInit(i2cHandle->hdmarx); + HAL_DMA_DeInit(i2cHandle->hdmatx); + + /* I2C2 interrupt Deinit */ + HAL_NVIC_DisableIRQ(I2C2_EV_IRQn); + HAL_NVIC_DisableIRQ(I2C2_ER_IRQn); + /* USER CODE BEGIN I2C2_MspDeInit 1 */ + + /* USER CODE END I2C2_MspDeInit 1 */ + } + else if(i2cHandle->Instance==I2C3) + { + /* USER CODE BEGIN I2C3_MspDeInit 0 */ + + /* USER CODE END I2C3_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_I2C3_CLK_DISABLE(); + + /**I2C3 GPIO Configuration + PC9 ------> I2C3_SDA + PA8 ------> I2C3_SCL + */ + HAL_GPIO_DeInit(GPIOC, GPIO_PIN_9); + + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_8); + + /* I2C3 interrupt Deinit */ + HAL_NVIC_DisableIRQ(I2C3_EV_IRQn); + HAL_NVIC_DisableIRQ(I2C3_ER_IRQn); + /* USER CODE BEGIN I2C3_MspDeInit 1 */ + + /* USER CODE END I2C3_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/main.c b/Src/main.c new file mode 100644 index 0000000..5367de8 --- /dev/null +++ b/Src/main.c @@ -0,0 +1,245 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : main.c + * @brief : Main program body + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "main.h" +#include "cmsis_os.h" +#include "adc.h" +#include "can.h" +#include "crc.h" +#include "dac.h" +#include "dma.h" +#include "i2c.h" +#include "rng.h" +#include "rtc.h" +#include "spi.h" +#include "tim.h" +#include "usart.h" +#include "usb_device.h" +#include "gpio.h" + +/* Private includes ----------------------------------------------------------*/ +/* USER CODE BEGIN Includes */ +#include "robot.h" +#include "bsp_log.h" +/* USER CODE END Includes */ + +/* Private typedef -----------------------------------------------------------*/ +/* USER CODE BEGIN PTD */ + +/* USER CODE END PTD */ + +/* Private define ------------------------------------------------------------*/ +/* USER CODE BEGIN PD */ +/* USER CODE END PD */ + +/* Private macro -------------------------------------------------------------*/ +/* USER CODE BEGIN PM */ + +/* USER CODE END PM */ + +/* Private variables ---------------------------------------------------------*/ + +/* USER CODE BEGIN PV */ + +/* USER CODE END PV */ + +/* Private function prototypes -----------------------------------------------*/ +void SystemClock_Config(void); +void MX_FREERTOS_Init(void); +/* USER CODE BEGIN PFP */ + +/* USER CODE END PFP */ + +/* Private user code ---------------------------------------------------------*/ +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/** + * @brief The application entry point. + * @retval int + */ +int main(void) +{ + /* USER CODE BEGIN 1 */ + + /* USER CODE END 1 */ + + /* MCU Configuration--------------------------------------------------------*/ + + /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + HAL_Init(); + + /* USER CODE BEGIN Init */ + + /* USER CODE END Init */ + + /* Configure the system clock */ + SystemClock_Config(); + + /* USER CODE BEGIN SysInit */ + + /* USER CODE END SysInit */ + + /* Initialize all configured peripherals */ + MX_GPIO_Init(); + MX_DMA_Init(); + MX_ADC1_Init(); + MX_CAN1_Init(); + MX_CAN2_Init(); + MX_SPI1_Init(); + MX_TIM4_Init(); + MX_TIM5_Init(); + MX_USART3_UART_Init(); + MX_RNG_Init(); + MX_RTC_Init(); + MX_TIM1_Init(); + MX_TIM10_Init(); + MX_USART1_UART_Init(); + MX_USART6_UART_Init(); + MX_TIM8_Init(); + MX_I2C2_Init(); + MX_I2C3_Init(); + MX_SPI2_Init(); + MX_CRC_Init(); + MX_DAC_Init(); + /* USER CODE BEGIN 2 */ + RobotInit(); // 唯一的初始化函数 + LOGINFO("[main] SystemInit() and RobotInit() done"); + /* USER CODE END 2 */ + + /* Call init function for freertos objects (in freertos.c) */ + MX_FREERTOS_Init(); + + /* Start scheduler */ + osKernelStart(); + + /* We should never get here as control is now taken by the scheduler */ + /* Infinite loop */ + /* USER CODE BEGIN WHILE */ + while (1) + { + /* USER CODE END WHILE */ + + /* USER CODE BEGIN 3 */ + } + /* USER CODE END 3 */ +} + +/** + * @brief System Clock Configuration + * @retval None + */ +void SystemClock_Config(void) +{ + RCC_OscInitTypeDef RCC_OscInitStruct = {0}; + RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; + + /** Configure the main internal regulator output voltage + */ + __HAL_RCC_PWR_CLK_ENABLE(); + __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); + + /** Initializes the RCC Oscillators according to the specified parameters + * in the RCC_OscInitTypeDef structure. + */ + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; + RCC_OscInitStruct.HSEState = RCC_HSE_ON; + RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; + RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; + RCC_OscInitStruct.PLL.PLLM = 6; + RCC_OscInitStruct.PLL.PLLN = 168; + RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; + RCC_OscInitStruct.PLL.PLLQ = 7; + if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) + { + Error_Handler(); + } + + /** Initializes the CPU, AHB and APB buses clocks + */ + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK + |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4; + RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; + + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5) != HAL_OK) + { + Error_Handler(); + } +} + +/* USER CODE BEGIN 4 */ + +/* USER CODE END 4 */ + +/** + * @brief Period elapsed callback in non blocking mode + * @note This function is called when TIM14 interrupt took place, inside + * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment + * a global variable "uwTick" used as application time base. + * @param htim : TIM handle + * @retval None + */ +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) +{ + /* USER CODE BEGIN Callback 0 */ + + /* USER CODE END Callback 0 */ + if (htim->Instance == TIM14) { + HAL_IncTick(); + } + /* USER CODE BEGIN Callback 1 */ + + /* USER CODE END Callback 1 */ +} + +/** + * @brief This function is executed in case of error occurrence. + * @retval None + */ +void Error_Handler(void) +{ + /* USER CODE BEGIN Error_Handler_Debug */ + /* User can add his own implementation to report the HAL error return state */ + __disable_irq(); + while (1) + { + } + /* USER CODE END Error_Handler_Debug */ +} + +#ifdef USE_FULL_ASSERT +/** + * @brief Reports the name of the source file and the source line number + * where the assert_param error has occurred. + * @param file: pointer to the source file name + * @param line: assert_param error line source number + * @retval None + */ +void assert_failed(uint8_t *file, uint32_t line) +{ + /* USER CODE BEGIN 6 */ + /* User can add his own implementation to report the file name and line number, + ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ + /* USER CODE END 6 */ +} +#endif /* USE_FULL_ASSERT */ diff --git a/Src/rng.c b/Src/rng.c new file mode 100644 index 0000000..a1238ca --- /dev/null +++ b/Src/rng.c @@ -0,0 +1,85 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file rng.c + * @brief This file provides code for the configuration + * of the RNG instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "rng.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +RNG_HandleTypeDef hrng; + +/* RNG init function */ +void MX_RNG_Init(void) +{ + + /* USER CODE BEGIN RNG_Init 0 */ + + /* USER CODE END RNG_Init 0 */ + + /* USER CODE BEGIN RNG_Init 1 */ + + /* USER CODE END RNG_Init 1 */ + hrng.Instance = RNG; + if (HAL_RNG_Init(&hrng) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN RNG_Init 2 */ + + /* USER CODE END RNG_Init 2 */ + +} + +void HAL_RNG_MspInit(RNG_HandleTypeDef* rngHandle) +{ + + if(rngHandle->Instance==RNG) + { + /* USER CODE BEGIN RNG_MspInit 0 */ + + /* USER CODE END RNG_MspInit 0 */ + /* RNG clock enable */ + __HAL_RCC_RNG_CLK_ENABLE(); + /* USER CODE BEGIN RNG_MspInit 1 */ + + /* USER CODE END RNG_MspInit 1 */ + } +} + +void HAL_RNG_MspDeInit(RNG_HandleTypeDef* rngHandle) +{ + + if(rngHandle->Instance==RNG) + { + /* USER CODE BEGIN RNG_MspDeInit 0 */ + + /* USER CODE END RNG_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_RNG_CLK_DISABLE(); + /* USER CODE BEGIN RNG_MspDeInit 1 */ + + /* USER CODE END RNG_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/rtc.c b/Src/rtc.c new file mode 100644 index 0000000..a72520c --- /dev/null +++ b/Src/rtc.c @@ -0,0 +1,105 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file rtc.c + * @brief This file provides code for the configuration + * of the RTC instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "rtc.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +RTC_HandleTypeDef hrtc; + +/* RTC init function */ +void MX_RTC_Init(void) +{ + + /* USER CODE BEGIN RTC_Init 0 */ + + /* USER CODE END RTC_Init 0 */ + + /* USER CODE BEGIN RTC_Init 1 */ + + /* USER CODE END RTC_Init 1 */ + + /** Initialize RTC Only + */ + hrtc.Instance = RTC; + hrtc.Init.HourFormat = RTC_HOURFORMAT_24; + hrtc.Init.AsynchPrediv = 124; + hrtc.Init.SynchPrediv = 3199; + hrtc.Init.OutPut = RTC_OUTPUT_DISABLE; + hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH; + hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN; + if (HAL_RTC_Init(&hrtc) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN RTC_Init 2 */ + + /* USER CODE END RTC_Init 2 */ + +} + +void HAL_RTC_MspInit(RTC_HandleTypeDef* rtcHandle) +{ + + RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0}; + if(rtcHandle->Instance==RTC) + { + /* USER CODE BEGIN RTC_MspInit 0 */ + + /* USER CODE END RTC_MspInit 0 */ + + /** Initializes the peripherals clock + */ + PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_RTC; + PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_HSE_DIV30; + if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK) + { + Error_Handler(); + } + + /* RTC clock enable */ + __HAL_RCC_RTC_ENABLE(); + /* USER CODE BEGIN RTC_MspInit 1 */ + + /* USER CODE END RTC_MspInit 1 */ + } +} + +void HAL_RTC_MspDeInit(RTC_HandleTypeDef* rtcHandle) +{ + + if(rtcHandle->Instance==RTC) + { + /* USER CODE BEGIN RTC_MspDeInit 0 */ + + /* USER CODE END RTC_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_RTC_DISABLE(); + /* USER CODE BEGIN RTC_MspDeInit 1 */ + + /* USER CODE END RTC_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/spi.c b/Src/spi.c new file mode 100644 index 0000000..d4680c8 --- /dev/null +++ b/Src/spi.c @@ -0,0 +1,311 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file spi.c + * @brief This file provides code for the configuration + * of the SPI instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "spi.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +SPI_HandleTypeDef hspi1; +SPI_HandleTypeDef hspi2; +DMA_HandleTypeDef hdma_spi1_rx; +DMA_HandleTypeDef hdma_spi1_tx; +DMA_HandleTypeDef hdma_spi2_rx; +DMA_HandleTypeDef hdma_spi2_tx; + +/* SPI1 init function */ +void MX_SPI1_Init(void) +{ + + /* USER CODE BEGIN SPI1_Init 0 */ + + /* USER CODE END SPI1_Init 0 */ + + /* USER CODE BEGIN SPI1_Init 1 */ + + /* USER CODE END SPI1_Init 1 */ + hspi1.Instance = SPI1; + hspi1.Init.Mode = SPI_MODE_MASTER; + hspi1.Init.Direction = SPI_DIRECTION_2LINES; + hspi1.Init.DataSize = SPI_DATASIZE_8BIT; + hspi1.Init.CLKPolarity = SPI_POLARITY_HIGH; + hspi1.Init.CLKPhase = SPI_PHASE_2EDGE; + hspi1.Init.NSS = SPI_NSS_SOFT; + hspi1.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_8; + hspi1.Init.FirstBit = SPI_FIRSTBIT_MSB; + hspi1.Init.TIMode = SPI_TIMODE_DISABLE; + hspi1.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; + hspi1.Init.CRCPolynomial = 10; + if (HAL_SPI_Init(&hspi1) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN SPI1_Init 2 */ + + /* USER CODE END SPI1_Init 2 */ + +} +/* SPI2 init function */ +void MX_SPI2_Init(void) +{ + + /* USER CODE BEGIN SPI2_Init 0 */ + + /* USER CODE END SPI2_Init 0 */ + + /* USER CODE BEGIN SPI2_Init 1 */ + + /* USER CODE END SPI2_Init 1 */ + hspi2.Instance = SPI2; + hspi2.Init.Mode = SPI_MODE_MASTER; + hspi2.Init.Direction = SPI_DIRECTION_2LINES; + hspi2.Init.DataSize = SPI_DATASIZE_8BIT; + hspi2.Init.CLKPolarity = SPI_POLARITY_HIGH; + hspi2.Init.CLKPhase = SPI_PHASE_2EDGE; + hspi2.Init.NSS = SPI_NSS_SOFT; + hspi2.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_256; + hspi2.Init.FirstBit = SPI_FIRSTBIT_MSB; + hspi2.Init.TIMode = SPI_TIMODE_DISABLE; + hspi2.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE; + hspi2.Init.CRCPolynomial = 10; + if (HAL_SPI_Init(&hspi2) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN SPI2_Init 2 */ + + /* USER CODE END SPI2_Init 2 */ + +} + +void HAL_SPI_MspInit(SPI_HandleTypeDef* spiHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(spiHandle->Instance==SPI1) + { + /* USER CODE BEGIN SPI1_MspInit 0 */ + + /* USER CODE END SPI1_MspInit 0 */ + /* SPI1 clock enable */ + __HAL_RCC_SPI1_CLK_ENABLE(); + + __HAL_RCC_GPIOB_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + /**SPI1 GPIO Configuration + PB4 ------> SPI1_MISO + PB3 ------> SPI1_SCK + PA7 ------> SPI1_MOSI + */ + GPIO_InitStruct.Pin = GPIO_PIN_4|GPIO_PIN_3; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF5_SPI1; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + GPIO_InitStruct.Pin = GPIO_PIN_7; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF5_SPI1; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* SPI1 DMA Init */ + /* SPI1_RX Init */ + hdma_spi1_rx.Instance = DMA2_Stream0; + hdma_spi1_rx.Init.Channel = DMA_CHANNEL_3; + hdma_spi1_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_spi1_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_spi1_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_spi1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_spi1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_spi1_rx.Init.Mode = DMA_NORMAL; + hdma_spi1_rx.Init.Priority = DMA_PRIORITY_LOW; + hdma_spi1_rx.Init.FIFOMode = DMA_FIFOMODE_ENABLE; + hdma_spi1_rx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; + hdma_spi1_rx.Init.MemBurst = DMA_MBURST_SINGLE; + hdma_spi1_rx.Init.PeriphBurst = DMA_PBURST_SINGLE; + if (HAL_DMA_Init(&hdma_spi1_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(spiHandle,hdmarx,hdma_spi1_rx); + + /* SPI1_TX Init */ + hdma_spi1_tx.Instance = DMA2_Stream3; + hdma_spi1_tx.Init.Channel = DMA_CHANNEL_3; + hdma_spi1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + hdma_spi1_tx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_spi1_tx.Init.MemInc = DMA_MINC_ENABLE; + hdma_spi1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_spi1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_spi1_tx.Init.Mode = DMA_NORMAL; + hdma_spi1_tx.Init.Priority = DMA_PRIORITY_LOW; + hdma_spi1_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_spi1_tx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(spiHandle,hdmatx,hdma_spi1_tx); + + /* SPI1 interrupt Init */ + HAL_NVIC_SetPriority(SPI1_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(SPI1_IRQn); + /* USER CODE BEGIN SPI1_MspInit 1 */ + + /* USER CODE END SPI1_MspInit 1 */ + } + else if(spiHandle->Instance==SPI2) + { + /* USER CODE BEGIN SPI2_MspInit 0 */ + + /* USER CODE END SPI2_MspInit 0 */ + /* SPI2 clock enable */ + __HAL_RCC_SPI2_CLK_ENABLE(); + + __HAL_RCC_GPIOB_CLK_ENABLE(); + /**SPI2 GPIO Configuration + PB13 ------> SPI2_SCK + PB14 ------> SPI2_MISO + PB15 ------> SPI2_MOSI + */ + GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF5_SPI2; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + /* SPI2 DMA Init */ + /* SPI2_RX Init */ + hdma_spi2_rx.Instance = DMA1_Stream3; + hdma_spi2_rx.Init.Channel = DMA_CHANNEL_0; + hdma_spi2_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_spi2_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_spi2_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_spi2_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_spi2_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_spi2_rx.Init.Mode = DMA_NORMAL; + hdma_spi2_rx.Init.Priority = DMA_PRIORITY_LOW; + hdma_spi2_rx.Init.FIFOMode = DMA_FIFOMODE_ENABLE; + hdma_spi2_rx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; + hdma_spi2_rx.Init.MemBurst = DMA_MBURST_SINGLE; + hdma_spi2_rx.Init.PeriphBurst = DMA_PBURST_SINGLE; + if (HAL_DMA_Init(&hdma_spi2_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(spiHandle,hdmarx,hdma_spi2_rx); + + /* SPI2_TX Init */ + hdma_spi2_tx.Instance = DMA1_Stream4; + hdma_spi2_tx.Init.Channel = DMA_CHANNEL_0; + hdma_spi2_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + hdma_spi2_tx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_spi2_tx.Init.MemInc = DMA_MINC_ENABLE; + hdma_spi2_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_spi2_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_spi2_tx.Init.Mode = DMA_NORMAL; + hdma_spi2_tx.Init.Priority = DMA_PRIORITY_LOW; + hdma_spi2_tx.Init.FIFOMode = DMA_FIFOMODE_ENABLE; + hdma_spi2_tx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; + hdma_spi2_tx.Init.MemBurst = DMA_MBURST_SINGLE; + hdma_spi2_tx.Init.PeriphBurst = DMA_PBURST_SINGLE; + if (HAL_DMA_Init(&hdma_spi2_tx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(spiHandle,hdmatx,hdma_spi2_tx); + + /* SPI2 interrupt Init */ + HAL_NVIC_SetPriority(SPI2_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(SPI2_IRQn); + /* USER CODE BEGIN SPI2_MspInit 1 */ + + /* USER CODE END SPI2_MspInit 1 */ + } +} + +void HAL_SPI_MspDeInit(SPI_HandleTypeDef* spiHandle) +{ + + if(spiHandle->Instance==SPI1) + { + /* USER CODE BEGIN SPI1_MspDeInit 0 */ + + /* USER CODE END SPI1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_SPI1_CLK_DISABLE(); + + /**SPI1 GPIO Configuration + PB4 ------> SPI1_MISO + PB3 ------> SPI1_SCK + PA7 ------> SPI1_MOSI + */ + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_4|GPIO_PIN_3); + + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_7); + + /* SPI1 DMA DeInit */ + HAL_DMA_DeInit(spiHandle->hdmarx); + HAL_DMA_DeInit(spiHandle->hdmatx); + + /* SPI1 interrupt Deinit */ + HAL_NVIC_DisableIRQ(SPI1_IRQn); + /* USER CODE BEGIN SPI1_MspDeInit 1 */ + + /* USER CODE END SPI1_MspDeInit 1 */ + } + else if(spiHandle->Instance==SPI2) + { + /* USER CODE BEGIN SPI2_MspDeInit 0 */ + + /* USER CODE END SPI2_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_SPI2_CLK_DISABLE(); + + /**SPI2 GPIO Configuration + PB13 ------> SPI2_SCK + PB14 ------> SPI2_MISO + PB15 ------> SPI2_MOSI + */ + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15); + + /* SPI2 DMA DeInit */ + HAL_DMA_DeInit(spiHandle->hdmarx); + HAL_DMA_DeInit(spiHandle->hdmatx); + + /* SPI2 interrupt Deinit */ + HAL_NVIC_DisableIRQ(SPI2_IRQn); + /* USER CODE BEGIN SPI2_MspDeInit 1 */ + + /* USER CODE END SPI2_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/stm32f4xx_hal_msp.c b/Src/stm32f4xx_hal_msp.c new file mode 100644 index 0000000..f569c97 --- /dev/null +++ b/Src/stm32f4xx_hal_msp.c @@ -0,0 +1,88 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file stm32f4xx_hal_msp.c + * @brief This file provides code for the MSP Initialization + * and de-Initialization codes. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "main.h" +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* Private typedef -----------------------------------------------------------*/ +/* USER CODE BEGIN TD */ + +/* USER CODE END TD */ + +/* Private define ------------------------------------------------------------*/ +/* USER CODE BEGIN Define */ + +/* USER CODE END Define */ + +/* Private macro -------------------------------------------------------------*/ +/* USER CODE BEGIN Macro */ + +/* USER CODE END Macro */ + +/* Private variables ---------------------------------------------------------*/ +/* USER CODE BEGIN PV */ + +/* USER CODE END PV */ + +/* Private function prototypes -----------------------------------------------*/ +/* USER CODE BEGIN PFP */ + +/* USER CODE END PFP */ + +/* External functions --------------------------------------------------------*/ +/* USER CODE BEGIN ExternalFunctions */ + +/* USER CODE END ExternalFunctions */ + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ +/** + * Initializes the Global MSP. + */ +void HAL_MspInit(void) +{ + /* USER CODE BEGIN MspInit 0 */ + + /* USER CODE END MspInit 0 */ + + __HAL_RCC_SYSCFG_CLK_ENABLE(); + __HAL_RCC_PWR_CLK_ENABLE(); + + /* System interrupt init*/ + /* PendSV_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0); + + /* Peripheral interrupt init */ + /* FLASH_IRQn interrupt configuration */ + HAL_NVIC_SetPriority(FLASH_IRQn, 6, 0); + HAL_NVIC_EnableIRQ(FLASH_IRQn); + + /* USER CODE BEGIN MspInit 1 */ + + /* USER CODE END MspInit 1 */ +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/stm32f4xx_hal_timebase_tim.c b/Src/stm32f4xx_hal_timebase_tim.c new file mode 100644 index 0000000..79de236 --- /dev/null +++ b/Src/stm32f4xx_hal_timebase_tim.c @@ -0,0 +1,137 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file stm32f4xx_hal_timebase_TIM.c + * @brief HAL time base based on the hardware TIM. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx_hal.h" +#include "stm32f4xx_hal_tim.h" + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +TIM_HandleTypeDef htim14; +/* Private function prototypes -----------------------------------------------*/ +/* Private functions ---------------------------------------------------------*/ + +/** + * @brief This function configures the TIM14 as a time base source. + * The time source is configured to have 1ms time base with a dedicated + * Tick interrupt priority. + * @note This function is called automatically at the beginning of program after + * reset by HAL_Init() or at any time when clock is configured, by HAL_RCC_ClockConfig(). + * @param TickPriority: Tick interrupt priority. + * @retval HAL status + */ +HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) +{ + RCC_ClkInitTypeDef clkconfig; + uint32_t uwTimclock, uwAPB1Prescaler = 0U; + + uint32_t uwPrescalerValue = 0U; + uint32_t pFLatency; + HAL_StatusTypeDef status; + + /* Enable TIM14 clock */ + __HAL_RCC_TIM14_CLK_ENABLE(); + + /* Get clock configuration */ + HAL_RCC_GetClockConfig(&clkconfig, &pFLatency); + + /* Get APB1 prescaler */ + uwAPB1Prescaler = clkconfig.APB1CLKDivider; + /* Compute TIM14 clock */ + if (uwAPB1Prescaler == RCC_HCLK_DIV1) + { + uwTimclock = HAL_RCC_GetPCLK1Freq(); + } + else + { + uwTimclock = 2UL * HAL_RCC_GetPCLK1Freq(); + } + + /* Compute the prescaler value to have TIM14 counter clock equal to 1MHz */ + uwPrescalerValue = (uint32_t) ((uwTimclock / 1000000U) - 1U); + + /* Initialize TIM14 */ + htim14.Instance = TIM14; + + /* Initialize TIMx peripheral as follow: + + + Period = [(TIM14CLK/1000) - 1]. to have a (1/1000) s time base. + + Prescaler = (uwTimclock/1000000 - 1) to have a 1MHz counter clock. + + ClockDivision = 0 + + Counter direction = Up + */ + htim14.Init.Period = (1000000U / 1000U) - 1U; + htim14.Init.Prescaler = uwPrescalerValue; + htim14.Init.ClockDivision = 0; + htim14.Init.CounterMode = TIM_COUNTERMODE_UP; + htim14.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + + status = HAL_TIM_Base_Init(&htim14); + if (status == HAL_OK) + { + /* Start the TIM time Base generation in interrupt mode */ + status = HAL_TIM_Base_Start_IT(&htim14); + if (status == HAL_OK) + { + /* Enable the TIM14 global Interrupt */ + HAL_NVIC_EnableIRQ(TIM8_TRG_COM_TIM14_IRQn); + /* Configure the SysTick IRQ priority */ + if (TickPriority < (1UL << __NVIC_PRIO_BITS)) + { + /* Configure the TIM IRQ priority */ + HAL_NVIC_SetPriority(TIM8_TRG_COM_TIM14_IRQn, TickPriority, 0U); + uwTickPrio = TickPriority; + } + else + { + status = HAL_ERROR; + } + } + } + + /* Return function status */ + return status; +} + +/** + * @brief Suspend Tick increment. + * @note Disable the tick increment by disabling TIM14 update interrupt. + * @param None + * @retval None + */ +void HAL_SuspendTick(void) +{ + /* Disable TIM14 update Interrupt */ + __HAL_TIM_DISABLE_IT(&htim14, TIM_IT_UPDATE); +} + +/** + * @brief Resume Tick increment. + * @note Enable the tick increment by Enabling TIM14 update interrupt. + * @param None + * @retval None + */ +void HAL_ResumeTick(void) +{ + /* Enable TIM14 Update interrupt */ + __HAL_TIM_ENABLE_IT(&htim14, TIM_IT_UPDATE); +} + diff --git a/Src/stm32f4xx_it.c b/Src/stm32f4xx_it.c new file mode 100644 index 0000000..9d27391 --- /dev/null +++ b/Src/stm32f4xx_it.c @@ -0,0 +1,622 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file stm32f4xx_it.c + * @brief Interrupt Service Routines. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "main.h" +#include "stm32f4xx_it.h" +/* Private includes ----------------------------------------------------------*/ +/* USER CODE BEGIN Includes */ +/* USER CODE END Includes */ + +/* Private typedef -----------------------------------------------------------*/ +/* USER CODE BEGIN TD */ + +/* USER CODE END TD */ + +/* Private define ------------------------------------------------------------*/ +/* USER CODE BEGIN PD */ + +/* USER CODE END PD */ + +/* Private macro -------------------------------------------------------------*/ +/* USER CODE BEGIN PM */ + +/* USER CODE END PM */ + +/* Private variables ---------------------------------------------------------*/ +/* USER CODE BEGIN PV */ + +/* USER CODE END PV */ + +/* Private function prototypes -----------------------------------------------*/ +/* USER CODE BEGIN PFP */ + +/* USER CODE END PFP */ + +/* Private user code ---------------------------------------------------------*/ +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/* External variables --------------------------------------------------------*/ +extern PCD_HandleTypeDef hpcd_USB_OTG_FS; +extern DMA_HandleTypeDef hdma_adc1; +extern CAN_HandleTypeDef hcan1; +extern CAN_HandleTypeDef hcan2; +extern DMA_HandleTypeDef hdma_i2c2_rx; +extern DMA_HandleTypeDef hdma_i2c2_tx; +extern I2C_HandleTypeDef hi2c2; +extern I2C_HandleTypeDef hi2c3; +extern DMA_HandleTypeDef hdma_spi1_rx; +extern DMA_HandleTypeDef hdma_spi1_tx; +extern DMA_HandleTypeDef hdma_spi2_rx; +extern DMA_HandleTypeDef hdma_spi2_tx; +extern SPI_HandleTypeDef hspi1; +extern SPI_HandleTypeDef hspi2; +extern TIM_HandleTypeDef htim8; +extern DMA_HandleTypeDef hdma_usart1_tx; +extern DMA_HandleTypeDef hdma_usart1_rx; +extern DMA_HandleTypeDef hdma_usart3_rx; +extern DMA_HandleTypeDef hdma_usart6_rx; +extern DMA_HandleTypeDef hdma_usart6_tx; +extern UART_HandleTypeDef huart1; +extern UART_HandleTypeDef huart3; +extern UART_HandleTypeDef huart6; +extern TIM_HandleTypeDef htim14; + +/* USER CODE BEGIN EV */ + +/* USER CODE END EV */ + +/******************************************************************************/ +/* Cortex-M4 Processor Interruption and Exception Handlers */ +/******************************************************************************/ +/** + * @brief This function handles Non maskable interrupt. + */ +void NMI_Handler(void) +{ + /* USER CODE BEGIN NonMaskableInt_IRQn 0 */ + + /* USER CODE END NonMaskableInt_IRQn 0 */ + /* USER CODE BEGIN NonMaskableInt_IRQn 1 */ + while (1) + { + } + /* USER CODE END NonMaskableInt_IRQn 1 */ +} + +/** + * @brief This function handles Hard fault interrupt. + */ +void HardFault_Handler(void) +{ + /* USER CODE BEGIN HardFault_IRQn 0 */ + + /* USER CODE END HardFault_IRQn 0 */ + while (1) + { + /* USER CODE BEGIN W1_HardFault_IRQn 0 */ + /* USER CODE END W1_HardFault_IRQn 0 */ + } +} + +/** + * @brief This function handles Memory management fault. + */ +void MemManage_Handler(void) +{ + /* USER CODE BEGIN MemoryManagement_IRQn 0 */ + + /* USER CODE END MemoryManagement_IRQn 0 */ + while (1) + { + /* USER CODE BEGIN W1_MemoryManagement_IRQn 0 */ + /* USER CODE END W1_MemoryManagement_IRQn 0 */ + } +} + +/** + * @brief This function handles Pre-fetch fault, memory access fault. + */ +void BusFault_Handler(void) +{ + /* USER CODE BEGIN BusFault_IRQn 0 */ + + /* USER CODE END BusFault_IRQn 0 */ + while (1) + { + /* USER CODE BEGIN W1_BusFault_IRQn 0 */ + /* USER CODE END W1_BusFault_IRQn 0 */ + } +} + +/** + * @brief This function handles Undefined instruction or illegal state. + */ +void UsageFault_Handler(void) +{ + /* USER CODE BEGIN UsageFault_IRQn 0 */ + + /* USER CODE END UsageFault_IRQn 0 */ + while (1) + { + /* USER CODE BEGIN W1_UsageFault_IRQn 0 */ + /* USER CODE END W1_UsageFault_IRQn 0 */ + } +} + +/** + * @brief This function handles Debug monitor. + */ +void DebugMon_Handler(void) +{ + /* USER CODE BEGIN DebugMonitor_IRQn 0 */ + + /* USER CODE END DebugMonitor_IRQn 0 */ + /* USER CODE BEGIN DebugMonitor_IRQn 1 */ + + /* USER CODE END DebugMonitor_IRQn 1 */ +} + +/******************************************************************************/ +/* STM32F4xx Peripheral Interrupt Handlers */ +/* Add here the Interrupt Handlers for the used peripherals. */ +/* For the available peripheral interrupt handler names, */ +/* please refer to the startup file (startup_stm32f4xx.s). */ +/******************************************************************************/ + +/** + * @brief This function handles Flash global interrupt. + */ +void FLASH_IRQHandler(void) +{ + /* USER CODE BEGIN FLASH_IRQn 0 */ + + /* USER CODE END FLASH_IRQn 0 */ + HAL_FLASH_IRQHandler(); + /* USER CODE BEGIN FLASH_IRQn 1 */ + + /* USER CODE END FLASH_IRQn 1 */ +} + +/** + * @brief This function handles EXTI line3 interrupt. + */ +void EXTI3_IRQHandler(void) +{ + /* USER CODE BEGIN EXTI3_IRQn 0 */ + + /* USER CODE END EXTI3_IRQn 0 */ + HAL_GPIO_EXTI_IRQHandler(INT_MAG_Pin); + /* USER CODE BEGIN EXTI3_IRQn 1 */ + + /* USER CODE END EXTI3_IRQn 1 */ +} + +/** + * @brief This function handles EXTI line4 interrupt. + */ +void EXTI4_IRQHandler(void) +{ + /* USER CODE BEGIN EXTI4_IRQn 0 */ + + /* USER CODE END EXTI4_IRQn 0 */ + HAL_GPIO_EXTI_IRQHandler(INT_ACC_Pin); + /* USER CODE BEGIN EXTI4_IRQn 1 */ + + /* USER CODE END EXTI4_IRQn 1 */ +} + +/** + * @brief This function handles DMA1 stream1 global interrupt. + */ +void DMA1_Stream1_IRQHandler(void) +{ + /* USER CODE BEGIN DMA1_Stream1_IRQn 0 */ + + /* USER CODE END DMA1_Stream1_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_usart3_rx); + /* USER CODE BEGIN DMA1_Stream1_IRQn 1 */ + + /* USER CODE END DMA1_Stream1_IRQn 1 */ +} + +/** + * @brief This function handles DMA1 stream2 global interrupt. + */ +void DMA1_Stream2_IRQHandler(void) +{ + /* USER CODE BEGIN DMA1_Stream2_IRQn 0 */ + + /* USER CODE END DMA1_Stream2_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_i2c2_rx); + /* USER CODE BEGIN DMA1_Stream2_IRQn 1 */ + + /* USER CODE END DMA1_Stream2_IRQn 1 */ +} + +/** + * @brief This function handles DMA1 stream3 global interrupt. + */ +void DMA1_Stream3_IRQHandler(void) +{ + /* USER CODE BEGIN DMA1_Stream3_IRQn 0 */ + + /* USER CODE END DMA1_Stream3_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_spi2_rx); + /* USER CODE BEGIN DMA1_Stream3_IRQn 1 */ + + /* USER CODE END DMA1_Stream3_IRQn 1 */ +} + +/** + * @brief This function handles DMA1 stream4 global interrupt. + */ +void DMA1_Stream4_IRQHandler(void) +{ + /* USER CODE BEGIN DMA1_Stream4_IRQn 0 */ + + /* USER CODE END DMA1_Stream4_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_spi2_tx); + /* USER CODE BEGIN DMA1_Stream4_IRQn 1 */ + + /* USER CODE END DMA1_Stream4_IRQn 1 */ +} + +/** + * @brief This function handles CAN1 RX0 interrupts. + */ +void CAN1_RX0_IRQHandler(void) +{ + /* USER CODE BEGIN CAN1_RX0_IRQn 0 */ + + /* USER CODE END CAN1_RX0_IRQn 0 */ + HAL_CAN_IRQHandler(&hcan1); + /* USER CODE BEGIN CAN1_RX0_IRQn 1 */ + + /* USER CODE END CAN1_RX0_IRQn 1 */ +} + +/** + * @brief This function handles CAN1 RX1 interrupt. + */ +void CAN1_RX1_IRQHandler(void) +{ + /* USER CODE BEGIN CAN1_RX1_IRQn 0 */ + + /* USER CODE END CAN1_RX1_IRQn 0 */ + HAL_CAN_IRQHandler(&hcan1); + /* USER CODE BEGIN CAN1_RX1_IRQn 1 */ + + /* USER CODE END CAN1_RX1_IRQn 1 */ +} + +/** + * @brief This function handles EXTI line[9:5] interrupts. + */ +void EXTI9_5_IRQHandler(void) +{ + /* USER CODE BEGIN EXTI9_5_IRQn 0 */ + + /* USER CODE END EXTI9_5_IRQn 0 */ + HAL_GPIO_EXTI_IRQHandler(INT_GYRO_Pin); + /* USER CODE BEGIN EXTI9_5_IRQn 1 */ + + /* USER CODE END EXTI9_5_IRQn 1 */ +} + +/** + * @brief This function handles I2C2 event interrupt. + */ +void I2C2_EV_IRQHandler(void) +{ + /* USER CODE BEGIN I2C2_EV_IRQn 0 */ + + /* USER CODE END I2C2_EV_IRQn 0 */ + HAL_I2C_EV_IRQHandler(&hi2c2); + /* USER CODE BEGIN I2C2_EV_IRQn 1 */ + + /* USER CODE END I2C2_EV_IRQn 1 */ +} + +/** + * @brief This function handles I2C2 error interrupt. + */ +void I2C2_ER_IRQHandler(void) +{ + /* USER CODE BEGIN I2C2_ER_IRQn 0 */ + + /* USER CODE END I2C2_ER_IRQn 0 */ + HAL_I2C_ER_IRQHandler(&hi2c2); + /* USER CODE BEGIN I2C2_ER_IRQn 1 */ + + /* USER CODE END I2C2_ER_IRQn 1 */ +} + +/** + * @brief This function handles SPI1 global interrupt. + */ +void SPI1_IRQHandler(void) +{ + /* USER CODE BEGIN SPI1_IRQn 0 */ + + /* USER CODE END SPI1_IRQn 0 */ + HAL_SPI_IRQHandler(&hspi1); + /* USER CODE BEGIN SPI1_IRQn 1 */ + + /* USER CODE END SPI1_IRQn 1 */ +} + +/** + * @brief This function handles SPI2 global interrupt. + */ +void SPI2_IRQHandler(void) +{ + /* USER CODE BEGIN SPI2_IRQn 0 */ + + /* USER CODE END SPI2_IRQn 0 */ + HAL_SPI_IRQHandler(&hspi2); + /* USER CODE BEGIN SPI2_IRQn 1 */ + + /* USER CODE END SPI2_IRQn 1 */ +} + +/** + * @brief This function handles USART1 global interrupt. + */ +void USART1_IRQHandler(void) +{ + /* USER CODE BEGIN USART1_IRQn 0 */ + + /* USER CODE END USART1_IRQn 0 */ + HAL_UART_IRQHandler(&huart1); + /* USER CODE BEGIN USART1_IRQn 1 */ + + /* USER CODE END USART1_IRQn 1 */ +} + +/** + * @brief This function handles USART3 global interrupt. + */ +void USART3_IRQHandler(void) +{ + /* USER CODE BEGIN USART3_IRQn 0 */ + + /* USER CODE END USART3_IRQn 0 */ + HAL_UART_IRQHandler(&huart3); + /* USER CODE BEGIN USART3_IRQn 1 */ + + /* USER CODE END USART3_IRQn 1 */ +} + +/** + * @brief This function handles TIM8 trigger and commutation interrupts and TIM14 global interrupt. + */ +void TIM8_TRG_COM_TIM14_IRQHandler(void) +{ + /* USER CODE BEGIN TIM8_TRG_COM_TIM14_IRQn 0 */ + + /* USER CODE END TIM8_TRG_COM_TIM14_IRQn 0 */ + HAL_TIM_IRQHandler(&htim8); + HAL_TIM_IRQHandler(&htim14); + /* USER CODE BEGIN TIM8_TRG_COM_TIM14_IRQn 1 */ + + /* USER CODE END TIM8_TRG_COM_TIM14_IRQn 1 */ +} + +/** + * @brief This function handles DMA1 stream7 global interrupt. + */ +void DMA1_Stream7_IRQHandler(void) +{ + /* USER CODE BEGIN DMA1_Stream7_IRQn 0 */ + + /* USER CODE END DMA1_Stream7_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_i2c2_tx); + /* USER CODE BEGIN DMA1_Stream7_IRQn 1 */ + + /* USER CODE END DMA1_Stream7_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream0 global interrupt. + */ +void DMA2_Stream0_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream0_IRQn 0 */ + + /* USER CODE END DMA2_Stream0_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_spi1_rx); + /* USER CODE BEGIN DMA2_Stream0_IRQn 1 */ + + /* USER CODE END DMA2_Stream0_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream2 global interrupt. + */ +void DMA2_Stream2_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream2_IRQn 0 */ + + /* USER CODE END DMA2_Stream2_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_usart6_rx); + /* USER CODE BEGIN DMA2_Stream2_IRQn 1 */ + + /* USER CODE END DMA2_Stream2_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream3 global interrupt. + */ +void DMA2_Stream3_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream3_IRQn 0 */ + + /* USER CODE END DMA2_Stream3_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_spi1_tx); + /* USER CODE BEGIN DMA2_Stream3_IRQn 1 */ + + /* USER CODE END DMA2_Stream3_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream4 global interrupt. + */ +void DMA2_Stream4_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream4_IRQn 0 */ + + /* USER CODE END DMA2_Stream4_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_adc1); + /* USER CODE BEGIN DMA2_Stream4_IRQn 1 */ + + /* USER CODE END DMA2_Stream4_IRQn 1 */ +} + +/** + * @brief This function handles CAN2 RX0 interrupts. + */ +void CAN2_RX0_IRQHandler(void) +{ + /* USER CODE BEGIN CAN2_RX0_IRQn 0 */ + + /* USER CODE END CAN2_RX0_IRQn 0 */ + HAL_CAN_IRQHandler(&hcan2); + /* USER CODE BEGIN CAN2_RX0_IRQn 1 */ + + /* USER CODE END CAN2_RX0_IRQn 1 */ +} + +/** + * @brief This function handles CAN2 RX1 interrupt. + */ +void CAN2_RX1_IRQHandler(void) +{ + /* USER CODE BEGIN CAN2_RX1_IRQn 0 */ + + /* USER CODE END CAN2_RX1_IRQn 0 */ + HAL_CAN_IRQHandler(&hcan2); + /* USER CODE BEGIN CAN2_RX1_IRQn 1 */ + + /* USER CODE END CAN2_RX1_IRQn 1 */ +} + +/** + * @brief This function handles USB On The Go FS global interrupt. + */ +void OTG_FS_IRQHandler(void) +{ + /* USER CODE BEGIN OTG_FS_IRQn 0 */ + + /* USER CODE END OTG_FS_IRQn 0 */ + HAL_PCD_IRQHandler(&hpcd_USB_OTG_FS); + /* USER CODE BEGIN OTG_FS_IRQn 1 */ + + /* USER CODE END OTG_FS_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream5 global interrupt. + */ +void DMA2_Stream5_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream5_IRQn 0 */ + + /* USER CODE END DMA2_Stream5_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_usart1_rx); + /* USER CODE BEGIN DMA2_Stream5_IRQn 1 */ + + /* USER CODE END DMA2_Stream5_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream6 global interrupt. + */ +void DMA2_Stream6_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream6_IRQn 0 */ + + /* USER CODE END DMA2_Stream6_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_usart6_tx); + /* USER CODE BEGIN DMA2_Stream6_IRQn 1 */ + + /* USER CODE END DMA2_Stream6_IRQn 1 */ +} + +/** + * @brief This function handles DMA2 stream7 global interrupt. + */ +void DMA2_Stream7_IRQHandler(void) +{ + /* USER CODE BEGIN DMA2_Stream7_IRQn 0 */ + + /* USER CODE END DMA2_Stream7_IRQn 0 */ + HAL_DMA_IRQHandler(&hdma_usart1_tx); + /* USER CODE BEGIN DMA2_Stream7_IRQn 1 */ + + /* USER CODE END DMA2_Stream7_IRQn 1 */ +} + +/** + * @brief This function handles USART6 global interrupt. + */ +void USART6_IRQHandler(void) +{ + /* USER CODE BEGIN USART6_IRQn 0 */ + + /* USER CODE END USART6_IRQn 0 */ + HAL_UART_IRQHandler(&huart6); + /* USER CODE BEGIN USART6_IRQn 1 */ + + /* USER CODE END USART6_IRQn 1 */ +} + +/** + * @brief This function handles I2C3 event interrupt. + */ +void I2C3_EV_IRQHandler(void) +{ + /* USER CODE BEGIN I2C3_EV_IRQn 0 */ + + /* USER CODE END I2C3_EV_IRQn 0 */ + HAL_I2C_EV_IRQHandler(&hi2c3); + /* USER CODE BEGIN I2C3_EV_IRQn 1 */ + + /* USER CODE END I2C3_EV_IRQn 1 */ +} + +/** + * @brief This function handles I2C3 error interrupt. + */ +void I2C3_ER_IRQHandler(void) +{ + /* USER CODE BEGIN I2C3_ER_IRQn 0 */ + + /* USER CODE END I2C3_ER_IRQn 0 */ + HAL_I2C_ER_IRQHandler(&hi2c3); + /* USER CODE BEGIN I2C3_ER_IRQn 1 */ + + /* USER CODE END I2C3_ER_IRQn 1 */ +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/syscalls.c b/Src/syscalls.c new file mode 100644 index 0000000..d190edf --- /dev/null +++ b/Src/syscalls.c @@ -0,0 +1,176 @@ +/** + ****************************************************************************** + * @file syscalls.c + * @author Auto-generated by STM32CubeIDE + * @brief STM32CubeIDE Minimal System calls file + * + * For more information about which c-functions + * need which of these lowlevel functions + * please consult the Newlib libc-manual + ****************************************************************************** + * @attention + * + * Copyright (c) 2020-2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Includes */ +#include +#include +#include +#include +#include +#include +#include +#include + + +/* Variables */ +extern int __io_putchar(int ch) __attribute__((weak)); +extern int __io_getchar(void) __attribute__((weak)); + + +char *__env[1] = { 0 }; +char **environ = __env; + + +/* Functions */ +void initialise_monitor_handles() +{ +} + +int _getpid(void) +{ + return 1; +} + +int _kill(int pid, int sig) +{ + (void)pid; + (void)sig; + errno = EINVAL; + return -1; +} + +void _exit (int status) +{ + _kill(status, -1); + while (1) {} /* Make sure we hang here */ +} + +__attribute__((weak)) int _read(int file, char *ptr, int len) +{ + (void)file; + int DataIdx; + + for (DataIdx = 0; DataIdx < len; DataIdx++) + { + *ptr++ = __io_getchar(); + } + + return len; +} + +__attribute__((weak)) int _write(int file, char *ptr, int len) +{ + (void)file; + int DataIdx; + + for (DataIdx = 0; DataIdx < len; DataIdx++) + { + __io_putchar(*ptr++); + } + return len; +} + +int _close(int file) +{ + (void)file; + return -1; +} + + +int _fstat(int file, struct stat *st) +{ + (void)file; + st->st_mode = S_IFCHR; + return 0; +} + +int _isatty(int file) +{ + (void)file; + return 1; +} + +int _lseek(int file, int ptr, int dir) +{ + (void)file; + (void)ptr; + (void)dir; + return 0; +} + +int _open(char *path, int flags, ...) +{ + (void)path; + (void)flags; + /* Pretend like we always fail */ + return -1; +} + +int _wait(int *status) +{ + (void)status; + errno = ECHILD; + return -1; +} + +int _unlink(char *name) +{ + (void)name; + errno = ENOENT; + return -1; +} + +int _times(struct tms *buf) +{ + (void)buf; + return -1; +} + +int _stat(char *file, struct stat *st) +{ + (void)file; + st->st_mode = S_IFCHR; + return 0; +} + +int _link(char *old, char *new) +{ + (void)old; + (void)new; + errno = EMLINK; + return -1; +} + +int _fork(void) +{ + errno = EAGAIN; + return -1; +} + +int _execve(char *name, char **argv, char **env) +{ + (void)name; + (void)argv; + (void)env; + errno = ENOMEM; + return -1; +} diff --git a/Src/sysmem.c b/Src/sysmem.c new file mode 100644 index 0000000..921ecef --- /dev/null +++ b/Src/sysmem.c @@ -0,0 +1,79 @@ +/** + ****************************************************************************** + * @file sysmem.c + * @author Generated by STM32CubeIDE + * @brief STM32CubeIDE System Memory calls file + * + * For more information about which C functions + * need which of these lowlevel functions + * please consult the newlib libc manual + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/* Includes */ +#include +#include + +/** + * Pointer to the current high watermark of the heap usage + */ +static uint8_t *__sbrk_heap_end = NULL; + +/** + * @brief _sbrk() allocates memory to the newlib heap and is used by malloc + * and others from the C library + * + * @verbatim + * ############################################################################ + * # .data # .bss # newlib heap # MSP stack # + * # # # # Reserved by _Min_Stack_Size # + * ############################################################################ + * ^-- RAM start ^-- _end _estack, RAM end --^ + * @endverbatim + * + * This implementation starts allocating at the '_end' linker symbol + * The '_Min_Stack_Size' linker symbol reserves a memory for the MSP stack + * The implementation considers '_estack' linker symbol to be RAM end + * NOTE: If the MSP stack, at any point during execution, grows larger than the + * reserved size, please increase the '_Min_Stack_Size'. + * + * @param incr Memory size + * @return Pointer to allocated memory + */ +void *_sbrk(ptrdiff_t incr) +{ + extern uint8_t _end; /* Symbol defined in the linker script */ + extern uint8_t _estack; /* Symbol defined in the linker script */ + extern uint32_t _Min_Stack_Size; /* Symbol defined in the linker script */ + const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size; + const uint8_t *max_heap = (uint8_t *)stack_limit; + uint8_t *prev_heap_end; + + /* Initialize heap end at first call */ + if (NULL == __sbrk_heap_end) + { + __sbrk_heap_end = &_end; + } + + /* Protect heap from growing into the reserved MSP stack */ + if (__sbrk_heap_end + incr > max_heap) + { + errno = ENOMEM; + return (void *)-1; + } + + prev_heap_end = __sbrk_heap_end; + __sbrk_heap_end += incr; + + return (void *)prev_heap_end; +} diff --git a/Src/system_stm32f4xx.c b/Src/system_stm32f4xx.c new file mode 100644 index 0000000..3bd40f7 --- /dev/null +++ b/Src/system_stm32f4xx.c @@ -0,0 +1,747 @@ +/** + ****************************************************************************** + * @file system_stm32f4xx.c + * @author MCD Application Team + * @brief CMSIS Cortex-M4 Device Peripheral Access Layer System Source File. + * + * This file provides two functions and one global variable to be called from + * user application: + * - SystemInit(): This function is called at startup just after reset and + * before branch to main program. This call is made inside + * the "startup_stm32f4xx.s" file. + * + * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used + * by the user application to setup the SysTick + * timer or configure other parameters. + * + * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must + * be called whenever the core clock is changed + * during program execution. + * + * + ****************************************************************************** + * @attention + * + * Copyright (c) 2017 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + +/** @addtogroup CMSIS + * @{ + */ + +/** @addtogroup stm32f4xx_system + * @{ + */ + +/** @addtogroup STM32F4xx_System_Private_Includes + * @{ + */ + + +#include "stm32f4xx.h" + +#if !defined (HSE_VALUE) + #define HSE_VALUE ((uint32_t)25000000) /*!< Default value of the External oscillator in Hz */ +#endif /* HSE_VALUE */ + +#if !defined (HSI_VALUE) + #define HSI_VALUE ((uint32_t)16000000) /*!< Value of the Internal oscillator in Hz*/ +#endif /* HSI_VALUE */ + +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_TypesDefinitions + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_Defines + * @{ + */ + +/************************* Miscellaneous Configuration ************************/ +/*!< Uncomment the following line if you need to use external SRAM or SDRAM as data memory */ +#if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)\ + || defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) +/* #define DATA_IN_ExtSRAM */ +#endif /* STM32F40xxx || STM32F41xxx || STM32F42xxx || STM32F43xxx || STM32F469xx || STM32F479xx ||\ + STM32F412Zx || STM32F412Vx */ + +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) +/* #define DATA_IN_ExtSDRAM */ +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx ||\ + STM32F479xx */ + +/* Note: Following vector table addresses must be defined in line with linker + configuration. */ +/*!< Uncomment the following line if you need to relocate the vector table + anywhere in Flash or Sram, else the vector table is kept at the automatic + remap of boot address selected */ +/* #define USER_VECT_TAB_ADDRESS */ + +#if defined(USER_VECT_TAB_ADDRESS) +/*!< Uncomment the following line if you need to relocate your vector Table + in Sram else user remap will be done in Flash. */ +/* #define VECT_TAB_SRAM */ +#if defined(VECT_TAB_SRAM) +#define VECT_TAB_BASE_ADDRESS SRAM_BASE /*!< Vector Table base address field. + This value must be a multiple of 0x200. */ +#define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field. + This value must be a multiple of 0x200. */ +#else +#define VECT_TAB_BASE_ADDRESS FLASH_BASE /*!< Vector Table base address field. + This value must be a multiple of 0x200. */ +#define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field. + This value must be a multiple of 0x200. */ +#endif /* VECT_TAB_SRAM */ +#endif /* USER_VECT_TAB_ADDRESS */ +/******************************************************************************/ + +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_Macros + * @{ + */ + +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_Variables + * @{ + */ + /* This variable is updated in three ways: + 1) by calling CMSIS function SystemCoreClockUpdate() + 2) by calling HAL API function HAL_RCC_GetHCLKFreq() + 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency + Note: If you use this function to configure the system clock; then there + is no need to call the 2 first functions listed above, since SystemCoreClock + variable is updated automatically. + */ +uint32_t SystemCoreClock = 16000000; +const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9}; +const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4}; +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_FunctionPrototypes + * @{ + */ + +#if defined (DATA_IN_ExtSRAM) || defined (DATA_IN_ExtSDRAM) + static void SystemInit_ExtMemCtl(void); +#endif /* DATA_IN_ExtSRAM || DATA_IN_ExtSDRAM */ + +/** + * @} + */ + +/** @addtogroup STM32F4xx_System_Private_Functions + * @{ + */ + +/** + * @brief Setup the microcontroller system + * Initialize the FPU setting, vector table location and External memory + * configuration. + * @param None + * @retval None + */ +void SystemInit(void) +{ + /* FPU settings ------------------------------------------------------------*/ + #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) + SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ + #endif + +#if defined (DATA_IN_ExtSRAM) || defined (DATA_IN_ExtSDRAM) + SystemInit_ExtMemCtl(); +#endif /* DATA_IN_ExtSRAM || DATA_IN_ExtSDRAM */ + + /* Configure the Vector Table location -------------------------------------*/ +#if defined(USER_VECT_TAB_ADDRESS) + SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ +#endif /* USER_VECT_TAB_ADDRESS */ +} + +/** + * @brief Update SystemCoreClock variable according to Clock Register Values. + * The SystemCoreClock variable contains the core clock (HCLK), it can + * be used by the user application to setup the SysTick timer or configure + * other parameters. + * + * @note Each time the core clock (HCLK) changes, this function must be called + * to update SystemCoreClock variable value. Otherwise, any configuration + * based on this variable will be incorrect. + * + * @note - The system frequency computed by this function is not the real + * frequency in the chip. It is calculated based on the predefined + * constant and the selected clock source: + * + * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*) + * + * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**) + * + * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**) + * or HSI_VALUE(*) multiplied/divided by the PLL factors. + * + * (*) HSI_VALUE is a constant defined in stm32f4xx_hal_conf.h file (default value + * 16 MHz) but the real value may vary depending on the variations + * in voltage and temperature. + * + * (**) HSE_VALUE is a constant defined in stm32f4xx_hal_conf.h file (its value + * depends on the application requirements), user has to ensure that HSE_VALUE + * is same as the real frequency of the crystal used. Otherwise, this function + * may have wrong result. + * + * - The result of this function could be not correct when using fractional + * value for HSE crystal. + * + * @param None + * @retval None + */ +void SystemCoreClockUpdate(void) +{ + uint32_t tmp = 0, pllvco = 0, pllp = 2, pllsource = 0, pllm = 2; + + /* Get SYSCLK source -------------------------------------------------------*/ + tmp = RCC->CFGR & RCC_CFGR_SWS; + + switch (tmp) + { + case 0x00: /* HSI used as system clock source */ + SystemCoreClock = HSI_VALUE; + break; + case 0x04: /* HSE used as system clock source */ + SystemCoreClock = HSE_VALUE; + break; + case 0x08: /* PLL used as system clock source */ + + /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N + SYSCLK = PLL_VCO / PLL_P + */ + pllsource = (RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) >> 22; + pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; + + if (pllsource != 0) + { + /* HSE used as PLL clock source */ + pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); + } + else + { + /* HSI used as PLL clock source */ + pllvco = (HSI_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6); + } + + pllp = (((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >>16) + 1 ) *2; + SystemCoreClock = pllvco/pllp; + break; + default: + SystemCoreClock = HSI_VALUE; + break; + } + /* Compute HCLK frequency --------------------------------------------------*/ + /* Get HCLK prescaler */ + tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4)]; + /* HCLK frequency */ + SystemCoreClock >>= tmp; +} + +#if defined (DATA_IN_ExtSRAM) && defined (DATA_IN_ExtSDRAM) +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F469xx) || defined(STM32F479xx) +/** + * @brief Setup the external memory controller. + * Called in startup_stm32f4xx.s before jump to main. + * This function configures the external memories (SRAM/SDRAM) + * This SRAM/SDRAM will be used as program data memory (including heap and stack). + * @param None + * @retval None + */ +void SystemInit_ExtMemCtl(void) +{ + __IO uint32_t tmp = 0x00; + + register uint32_t tmpreg = 0, timeout = 0xFFFF; + register __IO uint32_t index; + + /* Enable GPIOC, GPIOD, GPIOE, GPIOF, GPIOG, GPIOH and GPIOI interface clock */ + RCC->AHB1ENR |= 0x000001F8; + + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB1ENR, RCC_AHB1ENR_GPIOCEN); + + /* Connect PDx pins to FMC Alternate function */ + GPIOD->AFR[0] = 0x00CCC0CC; + GPIOD->AFR[1] = 0xCCCCCCCC; + /* Configure PDx pins in Alternate function mode */ + GPIOD->MODER = 0xAAAA0A8A; + /* Configure PDx pins speed to 100 MHz */ + GPIOD->OSPEEDR = 0xFFFF0FCF; + /* Configure PDx pins Output type to push-pull */ + GPIOD->OTYPER = 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOD->PUPDR = 0x00000000; + + /* Connect PEx pins to FMC Alternate function */ + GPIOE->AFR[0] = 0xC00CC0CC; + GPIOE->AFR[1] = 0xCCCCCCCC; + /* Configure PEx pins in Alternate function mode */ + GPIOE->MODER = 0xAAAA828A; + /* Configure PEx pins speed to 100 MHz */ + GPIOE->OSPEEDR = 0xFFFFC3CF; + /* Configure PEx pins Output type to push-pull */ + GPIOE->OTYPER = 0x00000000; + /* No pull-up, pull-down for PEx pins */ + GPIOE->PUPDR = 0x00000000; + + /* Connect PFx pins to FMC Alternate function */ + GPIOF->AFR[0] = 0xCCCCCCCC; + GPIOF->AFR[1] = 0xCCCCCCCC; + /* Configure PFx pins in Alternate function mode */ + GPIOF->MODER = 0xAA800AAA; + /* Configure PFx pins speed to 50 MHz */ + GPIOF->OSPEEDR = 0xAA800AAA; + /* Configure PFx pins Output type to push-pull */ + GPIOF->OTYPER = 0x00000000; + /* No pull-up, pull-down for PFx pins */ + GPIOF->PUPDR = 0x00000000; + + /* Connect PGx pins to FMC Alternate function */ + GPIOG->AFR[0] = 0xCCCCCCCC; + GPIOG->AFR[1] = 0xCCCCCCCC; + /* Configure PGx pins in Alternate function mode */ + GPIOG->MODER = 0xAAAAAAAA; + /* Configure PGx pins speed to 50 MHz */ + GPIOG->OSPEEDR = 0xAAAAAAAA; + /* Configure PGx pins Output type to push-pull */ + GPIOG->OTYPER = 0x00000000; + /* No pull-up, pull-down for PGx pins */ + GPIOG->PUPDR = 0x00000000; + + /* Connect PHx pins to FMC Alternate function */ + GPIOH->AFR[0] = 0x00C0CC00; + GPIOH->AFR[1] = 0xCCCCCCCC; + /* Configure PHx pins in Alternate function mode */ + GPIOH->MODER = 0xAAAA08A0; + /* Configure PHx pins speed to 50 MHz */ + GPIOH->OSPEEDR = 0xAAAA08A0; + /* Configure PHx pins Output type to push-pull */ + GPIOH->OTYPER = 0x00000000; + /* No pull-up, pull-down for PHx pins */ + GPIOH->PUPDR = 0x00000000; + + /* Connect PIx pins to FMC Alternate function */ + GPIOI->AFR[0] = 0xCCCCCCCC; + GPIOI->AFR[1] = 0x00000CC0; + /* Configure PIx pins in Alternate function mode */ + GPIOI->MODER = 0x0028AAAA; + /* Configure PIx pins speed to 50 MHz */ + GPIOI->OSPEEDR = 0x0028AAAA; + /* Configure PIx pins Output type to push-pull */ + GPIOI->OTYPER = 0x00000000; + /* No pull-up, pull-down for PIx pins */ + GPIOI->PUPDR = 0x00000000; + +/*-- FMC Configuration -------------------------------------------------------*/ + /* Enable the FMC interface clock */ + RCC->AHB3ENR |= 0x00000001; + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); + + FMC_Bank5_6->SDCR[0] = 0x000019E4; + FMC_Bank5_6->SDTR[0] = 0x01115351; + + /* SDRAM initialization sequence */ + /* Clock enable command */ + FMC_Bank5_6->SDCMR = 0x00000011; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Delay */ + for (index = 0; index<1000; index++); + + /* PALL command */ + FMC_Bank5_6->SDCMR = 0x00000012; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Auto refresh command */ + FMC_Bank5_6->SDCMR = 0x00000073; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* MRD register program */ + FMC_Bank5_6->SDCMR = 0x00046014; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Set refresh count */ + tmpreg = FMC_Bank5_6->SDRTR; + FMC_Bank5_6->SDRTR = (tmpreg | (0x0000027C<<1)); + + /* Disable write protection */ + tmpreg = FMC_Bank5_6->SDCR[0]; + FMC_Bank5_6->SDCR[0] = (tmpreg & 0xFFFFFDFF); + +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) + /* Configure and enable Bank1_SRAM2 */ + FMC_Bank1->BTCR[2] = 0x00001011; + FMC_Bank1->BTCR[3] = 0x00000201; + FMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */ +#if defined(STM32F469xx) || defined(STM32F479xx) + /* Configure and enable Bank1_SRAM2 */ + FMC_Bank1->BTCR[2] = 0x00001091; + FMC_Bank1->BTCR[3] = 0x00110212; + FMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F469xx || STM32F479xx */ + + (void)(tmp); +} +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F469xx || STM32F479xx */ +#elif defined (DATA_IN_ExtSRAM) || defined (DATA_IN_ExtSDRAM) +/** + * @brief Setup the external memory controller. + * Called in startup_stm32f4xx.s before jump to main. + * This function configures the external memories (SRAM/SDRAM) + * This SRAM/SDRAM will be used as program data memory (including heap and stack). + * @param None + * @retval None + */ +void SystemInit_ExtMemCtl(void) +{ + __IO uint32_t tmp = 0x00; +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) +#if defined (DATA_IN_ExtSDRAM) + register uint32_t tmpreg = 0, timeout = 0xFFFF; + register __IO uint32_t index; + +#if defined(STM32F446xx) + /* Enable GPIOA, GPIOC, GPIOD, GPIOE, GPIOF, GPIOG interface + clock */ + RCC->AHB1ENR |= 0x0000007D; +#else + /* Enable GPIOC, GPIOD, GPIOE, GPIOF, GPIOG, GPIOH and GPIOI interface + clock */ + RCC->AHB1ENR |= 0x000001F8; +#endif /* STM32F446xx */ + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB1ENR, RCC_AHB1ENR_GPIOCEN); + +#if defined(STM32F446xx) + /* Connect PAx pins to FMC Alternate function */ + GPIOA->AFR[0] |= 0xC0000000; + GPIOA->AFR[1] |= 0x00000000; + /* Configure PDx pins in Alternate function mode */ + GPIOA->MODER |= 0x00008000; + /* Configure PDx pins speed to 50 MHz */ + GPIOA->OSPEEDR |= 0x00008000; + /* Configure PDx pins Output type to push-pull */ + GPIOA->OTYPER |= 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOA->PUPDR |= 0x00000000; + + /* Connect PCx pins to FMC Alternate function */ + GPIOC->AFR[0] |= 0x00CC0000; + GPIOC->AFR[1] |= 0x00000000; + /* Configure PDx pins in Alternate function mode */ + GPIOC->MODER |= 0x00000A00; + /* Configure PDx pins speed to 50 MHz */ + GPIOC->OSPEEDR |= 0x00000A00; + /* Configure PDx pins Output type to push-pull */ + GPIOC->OTYPER |= 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOC->PUPDR |= 0x00000000; +#endif /* STM32F446xx */ + + /* Connect PDx pins to FMC Alternate function */ + GPIOD->AFR[0] = 0x000000CC; + GPIOD->AFR[1] = 0xCC000CCC; + /* Configure PDx pins in Alternate function mode */ + GPIOD->MODER = 0xA02A000A; + /* Configure PDx pins speed to 50 MHz */ + GPIOD->OSPEEDR = 0xA02A000A; + /* Configure PDx pins Output type to push-pull */ + GPIOD->OTYPER = 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOD->PUPDR = 0x00000000; + + /* Connect PEx pins to FMC Alternate function */ + GPIOE->AFR[0] = 0xC00000CC; + GPIOE->AFR[1] = 0xCCCCCCCC; + /* Configure PEx pins in Alternate function mode */ + GPIOE->MODER = 0xAAAA800A; + /* Configure PEx pins speed to 50 MHz */ + GPIOE->OSPEEDR = 0xAAAA800A; + /* Configure PEx pins Output type to push-pull */ + GPIOE->OTYPER = 0x00000000; + /* No pull-up, pull-down for PEx pins */ + GPIOE->PUPDR = 0x00000000; + + /* Connect PFx pins to FMC Alternate function */ + GPIOF->AFR[0] = 0xCCCCCCCC; + GPIOF->AFR[1] = 0xCCCCCCCC; + /* Configure PFx pins in Alternate function mode */ + GPIOF->MODER = 0xAA800AAA; + /* Configure PFx pins speed to 50 MHz */ + GPIOF->OSPEEDR = 0xAA800AAA; + /* Configure PFx pins Output type to push-pull */ + GPIOF->OTYPER = 0x00000000; + /* No pull-up, pull-down for PFx pins */ + GPIOF->PUPDR = 0x00000000; + + /* Connect PGx pins to FMC Alternate function */ + GPIOG->AFR[0] = 0xCCCCCCCC; + GPIOG->AFR[1] = 0xCCCCCCCC; + /* Configure PGx pins in Alternate function mode */ + GPIOG->MODER = 0xAAAAAAAA; + /* Configure PGx pins speed to 50 MHz */ + GPIOG->OSPEEDR = 0xAAAAAAAA; + /* Configure PGx pins Output type to push-pull */ + GPIOG->OTYPER = 0x00000000; + /* No pull-up, pull-down for PGx pins */ + GPIOG->PUPDR = 0x00000000; + +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F469xx) || defined(STM32F479xx) + /* Connect PHx pins to FMC Alternate function */ + GPIOH->AFR[0] = 0x00C0CC00; + GPIOH->AFR[1] = 0xCCCCCCCC; + /* Configure PHx pins in Alternate function mode */ + GPIOH->MODER = 0xAAAA08A0; + /* Configure PHx pins speed to 50 MHz */ + GPIOH->OSPEEDR = 0xAAAA08A0; + /* Configure PHx pins Output type to push-pull */ + GPIOH->OTYPER = 0x00000000; + /* No pull-up, pull-down for PHx pins */ + GPIOH->PUPDR = 0x00000000; + + /* Connect PIx pins to FMC Alternate function */ + GPIOI->AFR[0] = 0xCCCCCCCC; + GPIOI->AFR[1] = 0x00000CC0; + /* Configure PIx pins in Alternate function mode */ + GPIOI->MODER = 0x0028AAAA; + /* Configure PIx pins speed to 50 MHz */ + GPIOI->OSPEEDR = 0x0028AAAA; + /* Configure PIx pins Output type to push-pull */ + GPIOI->OTYPER = 0x00000000; + /* No pull-up, pull-down for PIx pins */ + GPIOI->PUPDR = 0x00000000; +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F469xx || STM32F479xx */ + +/*-- FMC Configuration -------------------------------------------------------*/ + /* Enable the FMC interface clock */ + RCC->AHB3ENR |= 0x00000001; + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); + + /* Configure and enable SDRAM bank1 */ +#if defined(STM32F446xx) + FMC_Bank5_6->SDCR[0] = 0x00001954; +#else + FMC_Bank5_6->SDCR[0] = 0x000019E4; +#endif /* STM32F446xx */ + FMC_Bank5_6->SDTR[0] = 0x01115351; + + /* SDRAM initialization sequence */ + /* Clock enable command */ + FMC_Bank5_6->SDCMR = 0x00000011; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Delay */ + for (index = 0; index<1000; index++); + + /* PALL command */ + FMC_Bank5_6->SDCMR = 0x00000012; + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Auto refresh command */ +#if defined(STM32F446xx) + FMC_Bank5_6->SDCMR = 0x000000F3; +#else + FMC_Bank5_6->SDCMR = 0x00000073; +#endif /* STM32F446xx */ + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* MRD register program */ +#if defined(STM32F446xx) + FMC_Bank5_6->SDCMR = 0x00044014; +#else + FMC_Bank5_6->SDCMR = 0x00046014; +#endif /* STM32F446xx */ + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + timeout = 0xFFFF; + while((tmpreg != 0) && (timeout-- > 0)) + { + tmpreg = FMC_Bank5_6->SDSR & 0x00000020; + } + + /* Set refresh count */ + tmpreg = FMC_Bank5_6->SDRTR; +#if defined(STM32F446xx) + FMC_Bank5_6->SDRTR = (tmpreg | (0x0000050C<<1)); +#else + FMC_Bank5_6->SDRTR = (tmpreg | (0x0000027C<<1)); +#endif /* STM32F446xx */ + + /* Disable write protection */ + tmpreg = FMC_Bank5_6->SDCR[0]; + FMC_Bank5_6->SDCR[0] = (tmpreg & 0xFFFFFDFF); +#endif /* DATA_IN_ExtSDRAM */ +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx || STM32F479xx */ + +#if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)\ + || defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)\ + || defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F412Zx) || defined(STM32F412Vx) + +#if defined(DATA_IN_ExtSRAM) +/*-- GPIOs Configuration -----------------------------------------------------*/ + /* Enable GPIOD, GPIOE, GPIOF and GPIOG interface clock */ + RCC->AHB1ENR |= 0x00000078; + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB1ENR, RCC_AHB1ENR_GPIODEN); + + /* Connect PDx pins to FMC Alternate function */ + GPIOD->AFR[0] = 0x00CCC0CC; + GPIOD->AFR[1] = 0xCCCCCCCC; + /* Configure PDx pins in Alternate function mode */ + GPIOD->MODER = 0xAAAA0A8A; + /* Configure PDx pins speed to 100 MHz */ + GPIOD->OSPEEDR = 0xFFFF0FCF; + /* Configure PDx pins Output type to push-pull */ + GPIOD->OTYPER = 0x00000000; + /* No pull-up, pull-down for PDx pins */ + GPIOD->PUPDR = 0x00000000; + + /* Connect PEx pins to FMC Alternate function */ + GPIOE->AFR[0] = 0xC00CC0CC; + GPIOE->AFR[1] = 0xCCCCCCCC; + /* Configure PEx pins in Alternate function mode */ + GPIOE->MODER = 0xAAAA828A; + /* Configure PEx pins speed to 100 MHz */ + GPIOE->OSPEEDR = 0xFFFFC3CF; + /* Configure PEx pins Output type to push-pull */ + GPIOE->OTYPER = 0x00000000; + /* No pull-up, pull-down for PEx pins */ + GPIOE->PUPDR = 0x00000000; + + /* Connect PFx pins to FMC Alternate function */ + GPIOF->AFR[0] = 0x00CCCCCC; + GPIOF->AFR[1] = 0xCCCC0000; + /* Configure PFx pins in Alternate function mode */ + GPIOF->MODER = 0xAA000AAA; + /* Configure PFx pins speed to 100 MHz */ + GPIOF->OSPEEDR = 0xFF000FFF; + /* Configure PFx pins Output type to push-pull */ + GPIOF->OTYPER = 0x00000000; + /* No pull-up, pull-down for PFx pins */ + GPIOF->PUPDR = 0x00000000; + + /* Connect PGx pins to FMC Alternate function */ + GPIOG->AFR[0] = 0x00CCCCCC; + GPIOG->AFR[1] = 0x000000C0; + /* Configure PGx pins in Alternate function mode */ + GPIOG->MODER = 0x00085AAA; + /* Configure PGx pins speed to 100 MHz */ + GPIOG->OSPEEDR = 0x000CAFFF; + /* Configure PGx pins Output type to push-pull */ + GPIOG->OTYPER = 0x00000000; + /* No pull-up, pull-down for PGx pins */ + GPIOG->PUPDR = 0x00000000; + +/*-- FMC/FSMC Configuration --------------------------------------------------*/ + /* Enable the FMC/FSMC interface clock */ + RCC->AHB3ENR |= 0x00000001; + +#if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); + /* Configure and enable Bank1_SRAM2 */ + FMC_Bank1->BTCR[2] = 0x00001011; + FMC_Bank1->BTCR[3] = 0x00000201; + FMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */ +#if defined(STM32F469xx) || defined(STM32F479xx) + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FMCEN); + /* Configure and enable Bank1_SRAM2 */ + FMC_Bank1->BTCR[2] = 0x00001091; + FMC_Bank1->BTCR[3] = 0x00110212; + FMC_Bank1E->BWTR[2] = 0x0fffffff; +#endif /* STM32F469xx || STM32F479xx */ +#if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx)|| defined(STM32F417xx)\ + || defined(STM32F412Zx) || defined(STM32F412Vx) + /* Delay after an RCC peripheral clock enabling */ + tmp = READ_BIT(RCC->AHB3ENR, RCC_AHB3ENR_FSMCEN); + /* Configure and enable Bank1_SRAM2 */ + FSMC_Bank1->BTCR[2] = 0x00001011; + FSMC_Bank1->BTCR[3] = 0x00000201; + FSMC_Bank1E->BWTR[2] = 0x0FFFFFFF; +#endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx || STM32F412Zx || STM32F412Vx */ + +#endif /* DATA_IN_ExtSRAM */ +#endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx || STM32F427xx || STM32F437xx ||\ + STM32F429xx || STM32F439xx || STM32F469xx || STM32F479xx || STM32F412Zx || STM32F412Vx */ + (void)(tmp); +} +#endif /* DATA_IN_ExtSRAM && DATA_IN_ExtSDRAM */ +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ diff --git a/Src/tim.c b/Src/tim.c new file mode 100644 index 0000000..648464f --- /dev/null +++ b/Src/tim.c @@ -0,0 +1,605 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file tim.c + * @brief This file provides code for the configuration + * of the TIM instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "tim.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +TIM_HandleTypeDef htim1; +TIM_HandleTypeDef htim4; +TIM_HandleTypeDef htim5; +TIM_HandleTypeDef htim8; +TIM_HandleTypeDef htim10; + +/* TIM1 init function */ +void MX_TIM1_Init(void) +{ + + /* USER CODE BEGIN TIM1_Init 0 */ + + /* USER CODE END TIM1_Init 0 */ + + TIM_ClockConfigTypeDef sClockSourceConfig = {0}; + TIM_MasterConfigTypeDef sMasterConfig = {0}; + TIM_OC_InitTypeDef sConfigOC = {0}; + TIM_BreakDeadTimeConfigTypeDef sBreakDeadTimeConfig = {0}; + + /* USER CODE BEGIN TIM1_Init 1 */ + + /* USER CODE END TIM1_Init 1 */ + htim1.Instance = TIM1; + htim1.Init.Prescaler = 167; + htim1.Init.CounterMode = TIM_COUNTERMODE_UP; + htim1.Init.Period = 19999; + htim1.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim1.Init.RepetitionCounter = 0; + htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim1) != HAL_OK) + { + Error_Handler(); + } + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + if (HAL_TIM_ConfigClockSource(&htim1, &sClockSourceConfig) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_Init(&htim1) != HAL_OK) + { + Error_Handler(); + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + if (HAL_TIMEx_MasterConfigSynchronization(&htim1, &sMasterConfig) != HAL_OK) + { + Error_Handler(); + } + sConfigOC.OCMode = TIM_OCMODE_PWM1; + sConfigOC.Pulse = 0; + sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; + sConfigOC.OCNPolarity = TIM_OCNPOLARITY_HIGH; + sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; + sConfigOC.OCIdleState = TIM_OCIDLESTATE_RESET; + sConfigOC.OCNIdleState = TIM_OCNIDLESTATE_RESET; + if (HAL_TIM_PWM_ConfigChannel(&htim1, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_ConfigChannel(&htim1, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_ConfigChannel(&htim1, &sConfigOC, TIM_CHANNEL_3) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_ConfigChannel(&htim1, &sConfigOC, TIM_CHANNEL_4) != HAL_OK) + { + Error_Handler(); + } + sBreakDeadTimeConfig.OffStateRunMode = TIM_OSSR_DISABLE; + sBreakDeadTimeConfig.OffStateIDLEMode = TIM_OSSI_DISABLE; + sBreakDeadTimeConfig.LockLevel = TIM_LOCKLEVEL_OFF; + sBreakDeadTimeConfig.DeadTime = 0; + sBreakDeadTimeConfig.BreakState = TIM_BREAK_DISABLE; + sBreakDeadTimeConfig.BreakPolarity = TIM_BREAKPOLARITY_HIGH; + sBreakDeadTimeConfig.AutomaticOutput = TIM_AUTOMATICOUTPUT_DISABLE; + if (HAL_TIMEx_ConfigBreakDeadTime(&htim1, &sBreakDeadTimeConfig) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM1_Init 2 */ + + /* USER CODE END TIM1_Init 2 */ + HAL_TIM_MspPostInit(&htim1); + +} +/* TIM4 init function */ +void MX_TIM4_Init(void) +{ + + /* USER CODE BEGIN TIM4_Init 0 */ + + /* USER CODE END TIM4_Init 0 */ + + TIM_ClockConfigTypeDef sClockSourceConfig = {0}; + TIM_MasterConfigTypeDef sMasterConfig = {0}; + TIM_OC_InitTypeDef sConfigOC = {0}; + + /* USER CODE BEGIN TIM4_Init 1 */ + + /* USER CODE END TIM4_Init 1 */ + htim4.Instance = TIM4; + htim4.Init.Prescaler = 167; + htim4.Init.CounterMode = TIM_COUNTERMODE_UP; + htim4.Init.Period = 65535; + htim4.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim4.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim4) != HAL_OK) + { + Error_Handler(); + } + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + if (HAL_TIM_ConfigClockSource(&htim4, &sClockSourceConfig) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_Init(&htim4) != HAL_OK) + { + Error_Handler(); + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + if (HAL_TIMEx_MasterConfigSynchronization(&htim4, &sMasterConfig) != HAL_OK) + { + Error_Handler(); + } + sConfigOC.OCMode = TIM_OCMODE_PWM1; + sConfigOC.Pulse = 0; + sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; + sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; + if (HAL_TIM_PWM_ConfigChannel(&htim4, &sConfigOC, TIM_CHANNEL_3) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM4_Init 2 */ + + /* USER CODE END TIM4_Init 2 */ + HAL_TIM_MspPostInit(&htim4); + +} +/* TIM5 init function */ +void MX_TIM5_Init(void) +{ + + /* USER CODE BEGIN TIM5_Init 0 */ + + /* USER CODE END TIM5_Init 0 */ + + TIM_ClockConfigTypeDef sClockSourceConfig = {0}; + TIM_MasterConfigTypeDef sMasterConfig = {0}; + TIM_OC_InitTypeDef sConfigOC = {0}; + + /* USER CODE BEGIN TIM5_Init 1 */ + + /* USER CODE END TIM5_Init 1 */ + htim5.Instance = TIM5; + htim5.Init.Prescaler = 0; + htim5.Init.CounterMode = TIM_COUNTERMODE_UP; + htim5.Init.Period = 65535; + htim5.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim5.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim5) != HAL_OK) + { + Error_Handler(); + } + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + if (HAL_TIM_ConfigClockSource(&htim5, &sClockSourceConfig) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_Init(&htim5) != HAL_OK) + { + Error_Handler(); + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + if (HAL_TIMEx_MasterConfigSynchronization(&htim5, &sMasterConfig) != HAL_OK) + { + Error_Handler(); + } + sConfigOC.OCMode = TIM_OCMODE_PWM1; + sConfigOC.Pulse = 0; + sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; + sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; + if (HAL_TIM_PWM_ConfigChannel(&htim5, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_ConfigChannel(&htim5, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_ConfigChannel(&htim5, &sConfigOC, TIM_CHANNEL_3) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM5_Init 2 */ + + /* USER CODE END TIM5_Init 2 */ + HAL_TIM_MspPostInit(&htim5); + +} +/* TIM8 init function */ +void MX_TIM8_Init(void) +{ + + /* USER CODE BEGIN TIM8_Init 0 */ + + /* USER CODE END TIM8_Init 0 */ + + TIM_ClockConfigTypeDef sClockSourceConfig = {0}; + TIM_MasterConfigTypeDef sMasterConfig = {0}; + TIM_OC_InitTypeDef sConfigOC = {0}; + TIM_BreakDeadTimeConfigTypeDef sBreakDeadTimeConfig = {0}; + + /* USER CODE BEGIN TIM8_Init 1 */ + + /* USER CODE END TIM8_Init 1 */ + htim8.Instance = TIM8; + htim8.Init.Prescaler = 167; + htim8.Init.CounterMode = TIM_COUNTERMODE_UP; + htim8.Init.Period = 19999; + htim8.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim8.Init.RepetitionCounter = 0; + htim8.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim8) != HAL_OK) + { + Error_Handler(); + } + sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; + if (HAL_TIM_ConfigClockSource(&htim8, &sClockSourceConfig) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_OC_Init(&htim8) != HAL_OK) + { + Error_Handler(); + } + sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; + sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; + if (HAL_TIMEx_MasterConfigSynchronization(&htim8, &sMasterConfig) != HAL_OK) + { + Error_Handler(); + } + sConfigOC.OCMode = TIM_OCMODE_TIMING; + sConfigOC.Pulse = 0; + sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; + sConfigOC.OCNPolarity = TIM_OCNPOLARITY_HIGH; + sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; + sConfigOC.OCIdleState = TIM_OCIDLESTATE_RESET; + sConfigOC.OCNIdleState = TIM_OCNIDLESTATE_RESET; + if (HAL_TIM_OC_ConfigChannel(&htim8, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_OC_ConfigChannel(&htim8, &sConfigOC, TIM_CHANNEL_2) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_OC_ConfigChannel(&htim8, &sConfigOC, TIM_CHANNEL_3) != HAL_OK) + { + Error_Handler(); + } + sBreakDeadTimeConfig.OffStateRunMode = TIM_OSSR_DISABLE; + sBreakDeadTimeConfig.OffStateIDLEMode = TIM_OSSI_DISABLE; + sBreakDeadTimeConfig.LockLevel = TIM_LOCKLEVEL_OFF; + sBreakDeadTimeConfig.DeadTime = 0; + sBreakDeadTimeConfig.BreakState = TIM_BREAK_DISABLE; + sBreakDeadTimeConfig.BreakPolarity = TIM_BREAKPOLARITY_HIGH; + sBreakDeadTimeConfig.AutomaticOutput = TIM_AUTOMATICOUTPUT_DISABLE; + if (HAL_TIMEx_ConfigBreakDeadTime(&htim8, &sBreakDeadTimeConfig) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM8_Init 2 */ + + /* USER CODE END TIM8_Init 2 */ + HAL_TIM_MspPostInit(&htim8); + +} +/* TIM10 init function */ +void MX_TIM10_Init(void) +{ + + /* USER CODE BEGIN TIM10_Init 0 */ + + /* USER CODE END TIM10_Init 0 */ + + TIM_OC_InitTypeDef sConfigOC = {0}; + + /* USER CODE BEGIN TIM10_Init 1 */ + + /* USER CODE END TIM10_Init 1 */ + htim10.Instance = TIM10; + htim10.Init.Prescaler = 167; + htim10.Init.CounterMode = TIM_COUNTERMODE_UP; + htim10.Init.Period = 5000-1; + htim10.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; + htim10.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; + if (HAL_TIM_Base_Init(&htim10) != HAL_OK) + { + Error_Handler(); + } + if (HAL_TIM_PWM_Init(&htim10) != HAL_OK) + { + Error_Handler(); + } + sConfigOC.OCMode = TIM_OCMODE_PWM1; + sConfigOC.Pulse = 0; + sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH; + sConfigOC.OCFastMode = TIM_OCFAST_DISABLE; + if (HAL_TIM_PWM_ConfigChannel(&htim10, &sConfigOC, TIM_CHANNEL_1) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN TIM10_Init 2 */ + + /* USER CODE END TIM10_Init 2 */ + HAL_TIM_MspPostInit(&htim10); + +} + +void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) +{ + + if(tim_baseHandle->Instance==TIM1) + { + /* USER CODE BEGIN TIM1_MspInit 0 */ + + /* USER CODE END TIM1_MspInit 0 */ + /* TIM1 clock enable */ + __HAL_RCC_TIM1_CLK_ENABLE(); + /* USER CODE BEGIN TIM1_MspInit 1 */ + + /* USER CODE END TIM1_MspInit 1 */ + } + else if(tim_baseHandle->Instance==TIM4) + { + /* USER CODE BEGIN TIM4_MspInit 0 */ + + /* USER CODE END TIM4_MspInit 0 */ + /* TIM4 clock enable */ + __HAL_RCC_TIM4_CLK_ENABLE(); + /* USER CODE BEGIN TIM4_MspInit 1 */ + + /* USER CODE END TIM4_MspInit 1 */ + } + else if(tim_baseHandle->Instance==TIM5) + { + /* USER CODE BEGIN TIM5_MspInit 0 */ + + /* USER CODE END TIM5_MspInit 0 */ + /* TIM5 clock enable */ + __HAL_RCC_TIM5_CLK_ENABLE(); + /* USER CODE BEGIN TIM5_MspInit 1 */ + + /* USER CODE END TIM5_MspInit 1 */ + } + else if(tim_baseHandle->Instance==TIM8) + { + /* USER CODE BEGIN TIM8_MspInit 0 */ + + /* USER CODE END TIM8_MspInit 0 */ + /* TIM8 clock enable */ + __HAL_RCC_TIM8_CLK_ENABLE(); + + /* TIM8 interrupt Init */ + HAL_NVIC_SetPriority(TIM8_TRG_COM_TIM14_IRQn, 15, 0); + HAL_NVIC_EnableIRQ(TIM8_TRG_COM_TIM14_IRQn); + /* USER CODE BEGIN TIM8_MspInit 1 */ + + /* USER CODE END TIM8_MspInit 1 */ + } + else if(tim_baseHandle->Instance==TIM10) + { + /* USER CODE BEGIN TIM10_MspInit 0 */ + + /* USER CODE END TIM10_MspInit 0 */ + /* TIM10 clock enable */ + __HAL_RCC_TIM10_CLK_ENABLE(); + /* USER CODE BEGIN TIM10_MspInit 1 */ + + /* USER CODE END TIM10_MspInit 1 */ + } +} +void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(timHandle->Instance==TIM1) + { + /* USER CODE BEGIN TIM1_MspPostInit 0 */ + + /* USER CODE END TIM1_MspPostInit 0 */ + __HAL_RCC_GPIOE_CLK_ENABLE(); + /**TIM1 GPIO Configuration + PE13 ------> TIM1_CH3 + PE9 ------> TIM1_CH1 + PE11 ------> TIM1_CH2 + PE14 ------> TIM1_CH4 + */ + GPIO_InitStruct.Pin = GPIO_PIN_13|SERVO_Pin|GPIO_PIN_11|GPIO_PIN_14; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + GPIO_InitStruct.Alternate = GPIO_AF1_TIM1; + HAL_GPIO_Init(GPIOE, &GPIO_InitStruct); + + /* USER CODE BEGIN TIM1_MspPostInit 1 */ + + /* USER CODE END TIM1_MspPostInit 1 */ + } + else if(timHandle->Instance==TIM4) + { + /* USER CODE BEGIN TIM4_MspPostInit 0 */ + + /* USER CODE END TIM4_MspPostInit 0 */ + + __HAL_RCC_GPIOD_CLK_ENABLE(); + /**TIM4 GPIO Configuration + PD14 ------> TIM4_CH3 + */ + GPIO_InitStruct.Pin = BUZZER_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF2_TIM4; + HAL_GPIO_Init(BUZZER_GPIO_Port, &GPIO_InitStruct); + + /* USER CODE BEGIN TIM4_MspPostInit 1 */ + + /* USER CODE END TIM4_MspPostInit 1 */ + } + else if(timHandle->Instance==TIM5) + { + /* USER CODE BEGIN TIM5_MspPostInit 0 */ + + /* USER CODE END TIM5_MspPostInit 0 */ + + __HAL_RCC_GPIOH_CLK_ENABLE(); + /**TIM5 GPIO Configuration + PH12 ------> TIM5_CH3 + PH11 ------> TIM5_CH2 + PH10 ------> TIM5_CH1 + */ + GPIO_InitStruct.Pin = LED_R_Pin|LED_G_Pin|LED_B_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF2_TIM5; + HAL_GPIO_Init(GPIOH, &GPIO_InitStruct); + + /* USER CODE BEGIN TIM5_MspPostInit 1 */ + + /* USER CODE END TIM5_MspPostInit 1 */ + } + else if(timHandle->Instance==TIM8) + { + /* USER CODE BEGIN TIM8_MspPostInit 0 */ + + /* USER CODE END TIM8_MspPostInit 0 */ + + __HAL_RCC_GPIOI_CLK_ENABLE(); + __HAL_RCC_GPIOC_CLK_ENABLE(); + /**TIM8 GPIO Configuration + PI7 ------> TIM8_CH3 + PI6 ------> TIM8_CH2 + PC6 ------> TIM8_CH1 + */ + GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_6; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + GPIO_InitStruct.Alternate = GPIO_AF3_TIM8; + HAL_GPIO_Init(GPIOI, &GPIO_InitStruct); + + GPIO_InitStruct.Pin = GPIO_PIN_6; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + GPIO_InitStruct.Alternate = GPIO_AF3_TIM8; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + + /* USER CODE BEGIN TIM8_MspPostInit 1 */ + + /* USER CODE END TIM8_MspPostInit 1 */ + } + else if(timHandle->Instance==TIM10) + { + /* USER CODE BEGIN TIM10_MspPostInit 0 */ + + /* USER CODE END TIM10_MspPostInit 0 */ + + __HAL_RCC_GPIOF_CLK_ENABLE(); + /**TIM10 GPIO Configuration + PF6 ------> TIM10_CH1 + */ + GPIO_InitStruct.Pin = IMU_TEMP_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF3_TIM10; + HAL_GPIO_Init(IMU_TEMP_GPIO_Port, &GPIO_InitStruct); + + /* USER CODE BEGIN TIM10_MspPostInit 1 */ + + /* USER CODE END TIM10_MspPostInit 1 */ + } + +} + +void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle) +{ + + if(tim_baseHandle->Instance==TIM1) + { + /* USER CODE BEGIN TIM1_MspDeInit 0 */ + + /* USER CODE END TIM1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM1_CLK_DISABLE(); + /* USER CODE BEGIN TIM1_MspDeInit 1 */ + + /* USER CODE END TIM1_MspDeInit 1 */ + } + else if(tim_baseHandle->Instance==TIM4) + { + /* USER CODE BEGIN TIM4_MspDeInit 0 */ + + /* USER CODE END TIM4_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM4_CLK_DISABLE(); + /* USER CODE BEGIN TIM4_MspDeInit 1 */ + + /* USER CODE END TIM4_MspDeInit 1 */ + } + else if(tim_baseHandle->Instance==TIM5) + { + /* USER CODE BEGIN TIM5_MspDeInit 0 */ + + /* USER CODE END TIM5_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM5_CLK_DISABLE(); + /* USER CODE BEGIN TIM5_MspDeInit 1 */ + + /* USER CODE END TIM5_MspDeInit 1 */ + } + else if(tim_baseHandle->Instance==TIM8) + { + /* USER CODE BEGIN TIM8_MspDeInit 0 */ + + /* USER CODE END TIM8_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM8_CLK_DISABLE(); + + /* TIM8 interrupt Deinit */ + HAL_NVIC_DisableIRQ(TIM8_TRG_COM_TIM14_IRQn); + /* USER CODE BEGIN TIM8_MspDeInit 1 */ + + /* USER CODE END TIM8_MspDeInit 1 */ + } + else if(tim_baseHandle->Instance==TIM10) + { + /* USER CODE BEGIN TIM10_MspDeInit 0 */ + + /* USER CODE END TIM10_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_TIM10_CLK_DISABLE(); + /* USER CODE BEGIN TIM10_MspDeInit 1 */ + + /* USER CODE END TIM10_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/usart.c b/Src/usart.c new file mode 100644 index 0000000..7cc1d9c --- /dev/null +++ b/Src/usart.c @@ -0,0 +1,398 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file usart.c + * @brief This file provides code for the configuration + * of the USART instances. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ +/* Includes ------------------------------------------------------------------*/ +#include "usart.h" + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +UART_HandleTypeDef huart1; +UART_HandleTypeDef huart3; +UART_HandleTypeDef huart6; +DMA_HandleTypeDef hdma_usart1_tx; +DMA_HandleTypeDef hdma_usart1_rx; +DMA_HandleTypeDef hdma_usart3_rx; +DMA_HandleTypeDef hdma_usart6_rx; +DMA_HandleTypeDef hdma_usart6_tx; + +/* USART1 init function */ + +void MX_USART1_UART_Init(void) +{ + + /* USER CODE BEGIN USART1_Init 0 */ + + /* USER CODE END USART1_Init 0 */ + + /* USER CODE BEGIN USART1_Init 1 */ + + /* USER CODE END USART1_Init 1 */ + huart1.Instance = USART1; + huart1.Init.BaudRate = 921600; + huart1.Init.WordLength = UART_WORDLENGTH_8B; + huart1.Init.StopBits = UART_STOPBITS_1; + huart1.Init.Parity = UART_PARITY_NONE; + huart1.Init.Mode = UART_MODE_TX_RX; + huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart1.Init.OverSampling = UART_OVERSAMPLING_16; + if (HAL_UART_Init(&huart1) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN USART1_Init 2 */ + + /* USER CODE END USART1_Init 2 */ + +} +/* USART3 init function */ + +void MX_USART3_UART_Init(void) +{ + + /* USER CODE BEGIN USART3_Init 0 */ + + /* USER CODE END USART3_Init 0 */ + + /* USER CODE BEGIN USART3_Init 1 */ + + /* USER CODE END USART3_Init 1 */ + huart3.Instance = USART3; + huart3.Init.BaudRate = 100000; + huart3.Init.WordLength = UART_WORDLENGTH_9B; + huart3.Init.StopBits = UART_STOPBITS_1; + huart3.Init.Parity = UART_PARITY_EVEN; + huart3.Init.Mode = UART_MODE_TX_RX; + huart3.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart3.Init.OverSampling = UART_OVERSAMPLING_16; + if (HAL_UART_Init(&huart3) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN USART3_Init 2 */ + + /* USER CODE END USART3_Init 2 */ + +} +/* USART6 init function */ + +void MX_USART6_UART_Init(void) +{ + + /* USER CODE BEGIN USART6_Init 0 */ + + /* USER CODE END USART6_Init 0 */ + + /* USER CODE BEGIN USART6_Init 1 */ + + /* USER CODE END USART6_Init 1 */ + huart6.Instance = USART6; + huart6.Init.BaudRate = 115200; + huart6.Init.WordLength = UART_WORDLENGTH_8B; + huart6.Init.StopBits = UART_STOPBITS_1; + huart6.Init.Parity = UART_PARITY_NONE; + huart6.Init.Mode = UART_MODE_TX_RX; + huart6.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart6.Init.OverSampling = UART_OVERSAMPLING_16; + if (HAL_UART_Init(&huart6) != HAL_OK) + { + Error_Handler(); + } + /* USER CODE BEGIN USART6_Init 2 */ + + /* USER CODE END USART6_Init 2 */ + +} + +void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle) +{ + + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(uartHandle->Instance==USART1) + { + /* USER CODE BEGIN USART1_MspInit 0 */ + + /* USER CODE END USART1_MspInit 0 */ + /* USART1 clock enable */ + __HAL_RCC_USART1_CLK_ENABLE(); + + __HAL_RCC_GPIOB_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + /**USART1 GPIO Configuration + PB7 ------> USART1_RX + PA9 ------> USART1_TX + */ + GPIO_InitStruct.Pin = GPIO_PIN_7; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF7_USART1; + HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); + + GPIO_InitStruct.Pin = GPIO_PIN_9; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF7_USART1; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* USART1 DMA Init */ + /* USART1_TX Init */ + hdma_usart1_tx.Instance = DMA2_Stream7; + hdma_usart1_tx.Init.Channel = DMA_CHANNEL_4; + hdma_usart1_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + hdma_usart1_tx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_usart1_tx.Init.MemInc = DMA_MINC_ENABLE; + hdma_usart1_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_usart1_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_usart1_tx.Init.Mode = DMA_NORMAL; + hdma_usart1_tx.Init.Priority = DMA_PRIORITY_VERY_HIGH; + hdma_usart1_tx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_usart1_tx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart1_tx); + + /* USART1_RX Init */ + hdma_usart1_rx.Instance = DMA2_Stream5; + hdma_usart1_rx.Init.Channel = DMA_CHANNEL_4; + hdma_usart1_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_usart1_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_usart1_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_usart1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_usart1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_usart1_rx.Init.Mode = DMA_NORMAL; + hdma_usart1_rx.Init.Priority = DMA_PRIORITY_VERY_HIGH; + hdma_usart1_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart1_rx); + + /* USART1 interrupt Init */ + HAL_NVIC_SetPriority(USART1_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(USART1_IRQn); + /* USER CODE BEGIN USART1_MspInit 1 */ + + /* USER CODE END USART1_MspInit 1 */ + } + else if(uartHandle->Instance==USART3) + { + /* USER CODE BEGIN USART3_MspInit 0 */ + + /* USER CODE END USART3_MspInit 0 */ + /* USART3 clock enable */ + __HAL_RCC_USART3_CLK_ENABLE(); + + __HAL_RCC_GPIOC_CLK_ENABLE(); + /**USART3 GPIO Configuration + PC11 ------> USART3_RX + PC10 ------> USART3_TX + */ + GPIO_InitStruct.Pin = GPIO_PIN_11|GPIO_PIN_10; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF7_USART3; + HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); + + /* USART3 DMA Init */ + /* USART3_RX Init */ + hdma_usart3_rx.Instance = DMA1_Stream1; + hdma_usart3_rx.Init.Channel = DMA_CHANNEL_4; + hdma_usart3_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_usart3_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_usart3_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_usart3_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_usart3_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_usart3_rx.Init.Mode = DMA_NORMAL; + hdma_usart3_rx.Init.Priority = DMA_PRIORITY_LOW; + hdma_usart3_rx.Init.FIFOMode = DMA_FIFOMODE_DISABLE; + if (HAL_DMA_Init(&hdma_usart3_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart3_rx); + + /* USART3 interrupt Init */ + HAL_NVIC_SetPriority(USART3_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(USART3_IRQn); + /* USER CODE BEGIN USART3_MspInit 1 */ + + /* USER CODE END USART3_MspInit 1 */ + } + else if(uartHandle->Instance==USART6) + { + /* USER CODE BEGIN USART6_MspInit 0 */ + + /* USER CODE END USART6_MspInit 0 */ + /* USART6 clock enable */ + __HAL_RCC_USART6_CLK_ENABLE(); + + __HAL_RCC_GPIOG_CLK_ENABLE(); + /**USART6 GPIO Configuration + PG14 ------> USART6_TX + PG9 ------> USART6_RX + */ + GPIO_InitStruct.Pin = GPIO_PIN_14|GPIO_PIN_9; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF8_USART6; + HAL_GPIO_Init(GPIOG, &GPIO_InitStruct); + + /* USART6 DMA Init */ + /* USART6_RX Init */ + hdma_usart6_rx.Instance = DMA2_Stream2; + hdma_usart6_rx.Init.Channel = DMA_CHANNEL_5; + hdma_usart6_rx.Init.Direction = DMA_PERIPH_TO_MEMORY; + hdma_usart6_rx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_usart6_rx.Init.MemInc = DMA_MINC_ENABLE; + hdma_usart6_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_usart6_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_usart6_rx.Init.Mode = DMA_NORMAL; + hdma_usart6_rx.Init.Priority = DMA_PRIORITY_HIGH; + hdma_usart6_rx.Init.FIFOMode = DMA_FIFOMODE_ENABLE; + hdma_usart6_rx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; + hdma_usart6_rx.Init.MemBurst = DMA_MBURST_SINGLE; + hdma_usart6_rx.Init.PeriphBurst = DMA_PBURST_SINGLE; + if (HAL_DMA_Init(&hdma_usart6_rx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(uartHandle,hdmarx,hdma_usart6_rx); + + /* USART6_TX Init */ + hdma_usart6_tx.Instance = DMA2_Stream6; + hdma_usart6_tx.Init.Channel = DMA_CHANNEL_5; + hdma_usart6_tx.Init.Direction = DMA_MEMORY_TO_PERIPH; + hdma_usart6_tx.Init.PeriphInc = DMA_PINC_DISABLE; + hdma_usart6_tx.Init.MemInc = DMA_MINC_ENABLE; + hdma_usart6_tx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE; + hdma_usart6_tx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE; + hdma_usart6_tx.Init.Mode = DMA_NORMAL; + hdma_usart6_tx.Init.Priority = DMA_PRIORITY_HIGH; + hdma_usart6_tx.Init.FIFOMode = DMA_FIFOMODE_ENABLE; + hdma_usart6_tx.Init.FIFOThreshold = DMA_FIFO_THRESHOLD_FULL; + hdma_usart6_tx.Init.MemBurst = DMA_MBURST_SINGLE; + hdma_usart6_tx.Init.PeriphBurst = DMA_PBURST_SINGLE; + if (HAL_DMA_Init(&hdma_usart6_tx) != HAL_OK) + { + Error_Handler(); + } + + __HAL_LINKDMA(uartHandle,hdmatx,hdma_usart6_tx); + + /* USART6 interrupt Init */ + HAL_NVIC_SetPriority(USART6_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(USART6_IRQn); + /* USER CODE BEGIN USART6_MspInit 1 */ + + /* USER CODE END USART6_MspInit 1 */ + } +} + +void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle) +{ + + if(uartHandle->Instance==USART1) + { + /* USER CODE BEGIN USART1_MspDeInit 0 */ + + /* USER CODE END USART1_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USART1_CLK_DISABLE(); + + /**USART1 GPIO Configuration + PB7 ------> USART1_RX + PA9 ------> USART1_TX + */ + HAL_GPIO_DeInit(GPIOB, GPIO_PIN_7); + + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9); + + /* USART1 DMA DeInit */ + HAL_DMA_DeInit(uartHandle->hdmatx); + HAL_DMA_DeInit(uartHandle->hdmarx); + + /* USART1 interrupt Deinit */ + HAL_NVIC_DisableIRQ(USART1_IRQn); + /* USER CODE BEGIN USART1_MspDeInit 1 */ + + /* USER CODE END USART1_MspDeInit 1 */ + } + else if(uartHandle->Instance==USART3) + { + /* USER CODE BEGIN USART3_MspDeInit 0 */ + + /* USER CODE END USART3_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USART3_CLK_DISABLE(); + + /**USART3 GPIO Configuration + PC11 ------> USART3_RX + PC10 ------> USART3_TX + */ + HAL_GPIO_DeInit(GPIOC, GPIO_PIN_11|GPIO_PIN_10); + + /* USART3 DMA DeInit */ + HAL_DMA_DeInit(uartHandle->hdmarx); + + /* USART3 interrupt Deinit */ + HAL_NVIC_DisableIRQ(USART3_IRQn); + /* USER CODE BEGIN USART3_MspDeInit 1 */ + + /* USER CODE END USART3_MspDeInit 1 */ + } + else if(uartHandle->Instance==USART6) + { + /* USER CODE BEGIN USART6_MspDeInit 0 */ + + /* USER CODE END USART6_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USART6_CLK_DISABLE(); + + /**USART6 GPIO Configuration + PG14 ------> USART6_TX + PG9 ------> USART6_RX + */ + HAL_GPIO_DeInit(GPIOG, GPIO_PIN_14|GPIO_PIN_9); + + /* USART6 DMA DeInit */ + HAL_DMA_DeInit(uartHandle->hdmarx); + HAL_DMA_DeInit(uartHandle->hdmatx); + + /* USART6 interrupt Deinit */ + HAL_NVIC_DisableIRQ(USART6_IRQn); + /* USER CODE BEGIN USART6_MspDeInit 1 */ + + /* USER CODE END USART6_MspDeInit 1 */ + } +} + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ diff --git a/Src/usb_device.c b/Src/usb_device.c new file mode 100644 index 0000000..1c91d19 --- /dev/null +++ b/Src/usb_device.c @@ -0,0 +1,100 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : usb_device.c + * @version : v1.0_Cube + * @brief : This file implements the USB Device + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ + +#include "usb_device.h" +#include "usbd_core.h" +#include "usbd_desc.h" +#include "usbd_cdc.h" +#include "usbd_cdc_if.h" + +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ + +/* USER CODE END PV */ + +/* USER CODE BEGIN PFP */ +/* Private function prototypes -----------------------------------------------*/ + +/* USER CODE END PFP */ + +/* USB Device Core handle declaration. */ +USBD_HandleTypeDef hUsbDeviceFS; + +/* + * -- Insert your variables declaration here -- + */ +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/* + * -- Insert your external function declaration here -- + */ +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ + +/** + * Init USB device Library, add supported class and start the library + * @retval None + */ +void MX_USB_DEVICE_Init(void) +{ + /* USER CODE BEGIN USB_DEVICE_Init_PreTreatment */ + + /* USER CODE END USB_DEVICE_Init_PreTreatment */ + + /* Init Device Library, add supported class and start the library. */ + if (USBD_Init(&hUsbDeviceFS, &FS_Desc, DEVICE_FS) != USBD_OK) + { + Error_Handler(); + } + if (USBD_RegisterClass(&hUsbDeviceFS, &USBD_CDC) != USBD_OK) + { + Error_Handler(); + } + if (USBD_CDC_RegisterInterface(&hUsbDeviceFS, &USBD_Interface_fops_FS) != USBD_OK) + { + Error_Handler(); + } + if (USBD_Start(&hUsbDeviceFS) != USBD_OK) + { + Error_Handler(); + } + + /* USER CODE BEGIN USB_DEVICE_Init_PostTreatment */ + + /* USER CODE END USB_DEVICE_Init_PostTreatment */ +} + +/** + * @} + */ + +/** + * @} + */ + diff --git a/Src/usbd_cdc_if.c b/Src/usbd_cdc_if.c new file mode 100644 index 0000000..69a6c2a --- /dev/null +++ b/Src/usbd_cdc_if.c @@ -0,0 +1,340 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : usbd_cdc_if.c + * @version : v1.0_Cube + * @brief : Usb device for Virtual Com Port. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_cdc_if.h" + +/* USER CODE BEGIN INCLUDE */ + +/* USER CODE END INCLUDE */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ +static USBCallback tx_cbk = NULL; +static USBCallback rx_cbk = NULL; +/* USER CODE END PV */ + +/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY + * @brief Usb device library. + * @{ + */ + +/** @addtogroup USBD_CDC_IF + * @{ + */ + +/** @defgroup USBD_CDC_IF_Private_TypesDefinitions USBD_CDC_IF_Private_TypesDefinitions + * @brief Private types. + * @{ + */ + +/* USER CODE BEGIN PRIVATE_TYPES */ + +/* USER CODE END PRIVATE_TYPES */ + +/** + * @} + */ + +/** @defgroup USBD_CDC_IF_Private_Defines USBD_CDC_IF_Private_Defines + * @brief Private defines. + * @{ + */ + +/* USER CODE BEGIN PRIVATE_DEFINES */ +/* USER CODE END PRIVATE_DEFINES */ + +/** + * @} + */ + +/** @defgroup USBD_CDC_IF_Private_Macros USBD_CDC_IF_Private_Macros + * @brief Private macros. + * @{ + */ + +/* USER CODE BEGIN PRIVATE_MACRO */ + +/* USER CODE END PRIVATE_MACRO */ + +/** + * @} + */ + +/** @defgroup USBD_CDC_IF_Private_Variables USBD_CDC_IF_Private_Variables + * @brief Private variables. + * @{ + */ +/* Create buffer for reception and transmission */ +/* It's up to user to redefine and/or remove those define */ +/** Received data over USB are stored in this buffer */ +uint8_t UserRxBufferFS[APP_RX_DATA_SIZE]; + +/** Data to send over USB CDC are stored in this buffer */ +uint8_t UserTxBufferFS[APP_TX_DATA_SIZE]; + +/* USER CODE BEGIN PRIVATE_VARIABLES */ + +/* USER CODE END PRIVATE_VARIABLES */ + +/** + * @} + */ + +/** @defgroup USBD_CDC_IF_Exported_Variables USBD_CDC_IF_Exported_Variables + * @brief Public variables. + * @{ + */ + +extern USBD_HandleTypeDef hUsbDeviceFS; + +/* USER CODE BEGIN EXPORTED_VARIABLES */ + +/* USER CODE END EXPORTED_VARIABLES */ + +/** + * @} + */ + +/** @defgroup USBD_CDC_IF_Private_FunctionPrototypes USBD_CDC_IF_Private_FunctionPrototypes + * @brief Private functions declaration. + * @{ + */ + +static int8_t CDC_Init_FS(void); +static int8_t CDC_DeInit_FS(void); +static int8_t CDC_Control_FS(uint8_t cmd, uint8_t* pbuf, uint16_t length); +static int8_t CDC_Receive_FS(uint8_t* pbuf, uint32_t *Len); +static int8_t CDC_TransmitCplt_FS(uint8_t *pbuf, uint32_t *Len, uint8_t epnum); + +/* USER CODE BEGIN PRIVATE_FUNCTIONS_DECLARATION */ + +/* USER CODE END PRIVATE_FUNCTIONS_DECLARATION */ + +/** + * @} + */ + +USBD_CDC_ItfTypeDef USBD_Interface_fops_FS = + { + CDC_Init_FS, + CDC_DeInit_FS, + CDC_Control_FS, + CDC_Receive_FS, + CDC_TransmitCplt_FS + }; + +/* Private functions ---------------------------------------------------------*/ +/** + * @brief Initializes the CDC media low layer over the FS USB IP + * @retval USBD_OK if all operations are OK else USBD_FAIL + */ +static int8_t CDC_Init_FS(void) +{ + /* USER CODE BEGIN 3 */ + /* Set Application Buffers */ + USBD_CDC_SetTxBuffer(&hUsbDeviceFS, UserTxBufferFS, 0); + USBD_CDC_SetRxBuffer(&hUsbDeviceFS, UserRxBufferFS); + return (USBD_OK); + /* USER CODE END 3 */ +} + +/** + * @brief DeInitializes the CDC media low layer + * @retval USBD_OK if all operations are OK else USBD_FAIL + */ +static int8_t CDC_DeInit_FS(void) +{ + /* USER CODE BEGIN 4 */ + return (USBD_OK); + /* USER CODE END 4 */ +} + +/** + * @brief Manage the CDC class requests + * @param cmd: Command code + * @param pbuf: Buffer containing command data (request parameters) + * @param length: Number of data to be sent (in bytes) + * @retval Result of the operation: USBD_OK if all operations are OK else USBD_FAIL + */ +static int8_t CDC_Control_FS(uint8_t cmd, uint8_t* pbuf, uint16_t length) +{ + /* USER CODE BEGIN 5 */ + switch(cmd) + { + case CDC_SEND_ENCAPSULATED_COMMAND: + + break; + + case CDC_GET_ENCAPSULATED_RESPONSE: + + break; + + case CDC_SET_COMM_FEATURE: + + break; + + case CDC_GET_COMM_FEATURE: + + break; + + case CDC_CLEAR_COMM_FEATURE: + + break; + + /*******************************************************************************/ + /* Line Coding Structure */ + /*-----------------------------------------------------------------------------*/ + /* Offset | Field | Size | Value | Description */ + /* 0 | dwDTERate | 4 | Number |Data terminal rate, in bits per second*/ + /* 4 | bCharFormat | 1 | Number | Stop bits */ + /* 0 - 1 Stop bit */ + /* 1 - 1.5 Stop bits */ + /* 2 - 2 Stop bits */ + /* 5 | bParityType | 1 | Number | Parity */ + /* 0 - None */ + /* 1 - Odd */ + /* 2 - Even */ + /* 3 - Mark */ + /* 4 - Space */ + /* 6 | bDataBits | 1 | Number Data bits (5, 6, 7, 8 or 16). */ + /*******************************************************************************/ + case CDC_SET_LINE_CODING: + + break; + + case CDC_GET_LINE_CODING: + + break; + + case CDC_SET_CONTROL_LINE_STATE: + + break; + + case CDC_SEND_BREAK: + + break; + + default: + break; + } + + return (USBD_OK); + /* USER CODE END 5 */ +} + +/** + * @brief Data received over USB OUT endpoint are sent over CDC interface + * through this function. + * + * @note + * This function will issue a NAK packet on any OUT packet received on + * USB endpoint until exiting this function. If you exit this function + * before transfer is complete on CDC interface (ie. using DMA controller) + * it will result in receiving more data while previous ones are still + * not sent. + * + * @param Buf: Buffer of data to be received + * @param Len: Number of data received (in bytes) + * @retval Result of the operation: USBD_OK if all operations are OK else USBD_FAIL + */ +static int8_t CDC_Receive_FS(uint8_t* Buf, uint32_t *Len) +{ + /* USER CODE BEGIN 6 */ + USBD_CDC_SetRxBuffer(&hUsbDeviceFS, &Buf[0]); + USBD_CDC_ReceivePacket(&hUsbDeviceFS); + + if(rx_cbk) + rx_cbk(*Len); + + return (USBD_OK); + /* USER CODE END 6 */ +} + +/** + * @brief CDC_Transmit_FS + * Data to send over USB IN endpoint are sent over CDC interface + * through this function. + * @note + * + * + * @param Buf: Buffer of data to be sent + * @param Len: Number of data to be sent (in bytes) + * @retval USBD_OK if all operations are OK else USBD_FAIL or USBD_BUSY + */ +uint8_t CDC_Transmit_FS(uint8_t* Buf, uint16_t Len) +{ + uint8_t result = USBD_OK; + /* USER CODE BEGIN 7 */ + USBD_CDC_HandleTypeDef *hcdc = (USBD_CDC_HandleTypeDef*)hUsbDeviceFS.pClassData; + if (hcdc->TxState != 0){ + return USBD_BUSY; + } + USBD_CDC_SetTxBuffer(&hUsbDeviceFS, Buf, Len); + result = USBD_CDC_TransmitPacket(&hUsbDeviceFS); + /* USER CODE END 7 */ + return result; +} + +/** + * @brief CDC_TransmitCplt_FS + * Data transmitted callback + * + * @note + * This function is IN transfer complete callback used to inform user that + * the submitted Data is successfully sent over USB. + * + * @param Buf: Buffer of data to be received + * @param Len: Number of data received (in bytes) + * @retval Result of the operation: USBD_OK if all operations are OK else USBD_FAIL + */ +static int8_t CDC_TransmitCplt_FS(uint8_t *Buf, uint32_t *Len, uint8_t epnum) +{ + uint8_t result = USBD_OK; + /* USER CODE BEGIN 13 */ + UNUSED(Buf); + UNUSED(Len); + UNUSED(epnum); + if(tx_cbk) + tx_cbk(*Len); + /* USER CODE END 13 */ + return result; +} + +/* USER CODE BEGIN PRIVATE_FUNCTIONS_IMPLEMENTATION */ +uint8_t* CDCInitRxbufferNcallback(USBCallback transmit_cbk,USBCallback recv_cbk) +{ + tx_cbk = transmit_cbk; + rx_cbk = recv_cbk; + return UserRxBufferFS; +} +/* USER CODE END PRIVATE_FUNCTIONS_IMPLEMENTATION */ + +/** + * @} + */ + +/** + * @} + */ diff --git a/Src/usbd_conf.c b/Src/usbd_conf.c new file mode 100644 index 0000000..128246a --- /dev/null +++ b/Src/usbd_conf.c @@ -0,0 +1,681 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : usbd_conf.c + * @version : v1.0_Cube + * @brief : This file implements the board support package for the USB device library + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "stm32f4xx.h" +#include "stm32f4xx_hal.h" +#include "usbd_def.h" +#include "usbd_core.h" + +#include "usbd_cdc.h" + +/* USER CODE BEGIN Includes */ + +/* USER CODE END Includes */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ + +/* USER CODE END PV */ + +PCD_HandleTypeDef hpcd_USB_OTG_FS; +void Error_Handler(void); + +/* External functions --------------------------------------------------------*/ +void SystemClock_Config(void); + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/* USER CODE BEGIN PFP */ +/* Private function prototypes -----------------------------------------------*/ +USBD_StatusTypeDef USBD_Get_USB_Status(HAL_StatusTypeDef hal_status); + +/* USER CODE END PFP */ + +/* Private functions ---------------------------------------------------------*/ + +/* USER CODE BEGIN 1 */ + +/* USER CODE END 1 */ + +/******************************************************************************* + LL Driver Callbacks (PCD -> USB Device Library) +*******************************************************************************/ +/* MSP Init */ + +void HAL_PCD_MspInit(PCD_HandleTypeDef* pcdHandle) +{ + GPIO_InitTypeDef GPIO_InitStruct = {0}; + if(pcdHandle->Instance==USB_OTG_FS) + { + /* USER CODE BEGIN USB_OTG_FS_MspInit 0 */ + + /* USER CODE END USB_OTG_FS_MspInit 0 */ + + __HAL_RCC_GPIOA_CLK_ENABLE(); + /**USB_OTG_FS GPIO Configuration + PA12 ------> USB_OTG_FS_DP + PA11 ------> USB_OTG_FS_DM + PA10 ------> USB_OTG_FS_ID + */ + GPIO_InitStruct.Pin = GPIO_PIN_12|GPIO_PIN_11|GPIO_PIN_10; + GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; + GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + + /* Peripheral clock enable */ + __HAL_RCC_USB_OTG_FS_CLK_ENABLE(); + + /* Peripheral interrupt init */ + HAL_NVIC_SetPriority(OTG_FS_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(OTG_FS_IRQn); + /* USER CODE BEGIN USB_OTG_FS_MspInit 1 */ + + /* USER CODE END USB_OTG_FS_MspInit 1 */ + } +} + +void HAL_PCD_MspDeInit(PCD_HandleTypeDef* pcdHandle) +{ + if(pcdHandle->Instance==USB_OTG_FS) + { + /* USER CODE BEGIN USB_OTG_FS_MspDeInit 0 */ + + /* USER CODE END USB_OTG_FS_MspDeInit 0 */ + /* Peripheral clock disable */ + __HAL_RCC_USB_OTG_FS_CLK_DISABLE(); + + /**USB_OTG_FS GPIO Configuration + PA12 ------> USB_OTG_FS_DP + PA11 ------> USB_OTG_FS_DM + PA10 ------> USB_OTG_FS_ID + */ + HAL_GPIO_DeInit(GPIOA, GPIO_PIN_12|GPIO_PIN_11|GPIO_PIN_10); + + /* Peripheral interrupt Deinit*/ + HAL_NVIC_DisableIRQ(OTG_FS_IRQn); + + /* USER CODE BEGIN USB_OTG_FS_MspDeInit 1 */ + + /* USER CODE END USB_OTG_FS_MspDeInit 1 */ + } +} + +/** + * @brief Setup stage callback + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_SetupStageCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_SetupStage((USBD_HandleTypeDef*)hpcd->pData, (uint8_t *)hpcd->Setup); +} + +/** + * @brief Data Out stage callback. + * @param hpcd: PCD handle + * @param epnum: Endpoint number + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#else +void HAL_PCD_DataOutStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_DataOutStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->OUT_ep[epnum].xfer_buff); +} + +/** + * @brief Data In stage callback. + * @param hpcd: PCD handle + * @param epnum: Endpoint number + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#else +void HAL_PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_DataInStage((USBD_HandleTypeDef*)hpcd->pData, epnum, hpcd->IN_ep[epnum].xfer_buff); +} + +/** + * @brief SOF callback. + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_SOFCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_SOFCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_SOF((USBD_HandleTypeDef*)hpcd->pData); +} + +/** + * @brief Reset callback. + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_ResetCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_ResetCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_SpeedTypeDef speed = USBD_SPEED_FULL; + + if ( hpcd->Init.speed == PCD_SPEED_HIGH) + { + speed = USBD_SPEED_HIGH; + } + else if ( hpcd->Init.speed == PCD_SPEED_FULL) + { + speed = USBD_SPEED_FULL; + } + else + { + Error_Handler(); + } + /* Set Speed. */ + USBD_LL_SetSpeed((USBD_HandleTypeDef*)hpcd->pData, speed); + + /* Reset Device. */ + USBD_LL_Reset((USBD_HandleTypeDef*)hpcd->pData); +} + +/** + * @brief Suspend callback. + * When Low power mode is enabled the debug cannot be used (IAR, Keil doesn't support it) + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_SuspendCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + /* Inform USB library that core enters in suspend Mode. */ + USBD_LL_Suspend((USBD_HandleTypeDef*)hpcd->pData); + __HAL_PCD_GATE_PHYCLOCK(hpcd); + /* Enter in STOP mode. */ + /* USER CODE BEGIN 2 */ + if (hpcd->Init.low_power_enable) + { + /* Set SLEEPDEEP bit and SleepOnExit of Cortex System Control Register. */ + SCB->SCR |= (uint32_t)((uint32_t)(SCB_SCR_SLEEPDEEP_Msk | SCB_SCR_SLEEPONEXIT_Msk)); + } + /* USER CODE END 2 */ +} + +/** + * @brief Resume callback. + * When Low power mode is enabled the debug cannot be used (IAR, Keil doesn't support it) + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_ResumeCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + /* USER CODE BEGIN 3 */ + + /* USER CODE END 3 */ + USBD_LL_Resume((USBD_HandleTypeDef*)hpcd->pData); +} + +/** + * @brief ISOOUTIncomplete callback. + * @param hpcd: PCD handle + * @param epnum: Endpoint number + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#else +void HAL_PCD_ISOOUTIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_IsoOUTIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); +} + +/** + * @brief ISOINIncomplete callback. + * @param hpcd: PCD handle + * @param epnum: Endpoint number + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#else +void HAL_PCD_ISOINIncompleteCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_IsoINIncomplete((USBD_HandleTypeDef*)hpcd->pData, epnum); +} + +/** + * @brief Connect callback. + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_ConnectCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_DevConnected((USBD_HandleTypeDef*)hpcd->pData); +} + +/** + * @brief Disconnect callback. + * @param hpcd: PCD handle + * @retval None + */ +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) +static void PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) +#else +void HAL_PCD_DisconnectCallback(PCD_HandleTypeDef *hpcd) +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ +{ + USBD_LL_DevDisconnected((USBD_HandleTypeDef*)hpcd->pData); +} + +/******************************************************************************* + LL Driver Interface (USB Device Library --> PCD) +*******************************************************************************/ + +/** + * @brief Initializes the low level portion of the device driver. + * @param pdev: Device handle + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_Init(USBD_HandleTypeDef *pdev) +{ + /* Init USB Ip. */ + if (pdev->id == DEVICE_FS) { + /* Link the driver to the stack. */ + hpcd_USB_OTG_FS.pData = pdev; + pdev->pData = &hpcd_USB_OTG_FS; + + hpcd_USB_OTG_FS.Instance = USB_OTG_FS; + hpcd_USB_OTG_FS.Init.dev_endpoints = 4; + hpcd_USB_OTG_FS.Init.speed = PCD_SPEED_FULL; + hpcd_USB_OTG_FS.Init.dma_enable = DISABLE; + hpcd_USB_OTG_FS.Init.phy_itface = PCD_PHY_EMBEDDED; + hpcd_USB_OTG_FS.Init.Sof_enable = DISABLE; + hpcd_USB_OTG_FS.Init.low_power_enable = DISABLE; + hpcd_USB_OTG_FS.Init.lpm_enable = DISABLE; + hpcd_USB_OTG_FS.Init.vbus_sensing_enable = DISABLE; + hpcd_USB_OTG_FS.Init.use_dedicated_ep1 = DISABLE; + if (HAL_PCD_Init(&hpcd_USB_OTG_FS) != HAL_OK) + { + Error_Handler( ); + } + +#if (USE_HAL_PCD_REGISTER_CALLBACKS == 1U) + /* Register USB PCD CallBacks */ + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_SOF_CB_ID, PCD_SOFCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_SETUPSTAGE_CB_ID, PCD_SetupStageCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_RESET_CB_ID, PCD_ResetCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_SUSPEND_CB_ID, PCD_SuspendCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_RESUME_CB_ID, PCD_ResumeCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_CONNECT_CB_ID, PCD_ConnectCallback); + HAL_PCD_RegisterCallback(&hpcd_USB_OTG_FS, HAL_PCD_DISCONNECT_CB_ID, PCD_DisconnectCallback); + + HAL_PCD_RegisterDataOutStageCallback(&hpcd_USB_OTG_FS, PCD_DataOutStageCallback); + HAL_PCD_RegisterDataInStageCallback(&hpcd_USB_OTG_FS, PCD_DataInStageCallback); + HAL_PCD_RegisterIsoOutIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOOUTIncompleteCallback); + HAL_PCD_RegisterIsoInIncpltCallback(&hpcd_USB_OTG_FS, PCD_ISOINIncompleteCallback); +#endif /* USE_HAL_PCD_REGISTER_CALLBACKS */ + HAL_PCDEx_SetRxFiFo(&hpcd_USB_OTG_FS, 0x80); + HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 0, 0x40); + HAL_PCDEx_SetTxFiFo(&hpcd_USB_OTG_FS, 1, 0x80); + } + return USBD_OK; +} + +/** + * @brief De-Initializes the low level portion of the device driver. + * @param pdev: Device handle + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_DeInit(USBD_HandleTypeDef *pdev) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_DeInit(pdev->pData); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Starts the low level portion of the device driver. + * @param pdev: Device handle + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_Start(USBD_HandleTypeDef *pdev) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_Start(pdev->pData); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Stops the low level portion of the device driver. + * @param pdev: Device handle + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_Stop(USBD_HandleTypeDef *pdev) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_Stop(pdev->pData); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Opens an endpoint of the low level driver. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @param ep_type: Endpoint type + * @param ep_mps: Endpoint max packet size + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_OpenEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_mps) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_Open(pdev->pData, ep_addr, ep_mps, ep_type); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Closes an endpoint of the low level driver. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_CloseEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_Close(pdev->pData, ep_addr); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Flushes an endpoint of the Low Level Driver. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_FlushEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_Flush(pdev->pData, ep_addr); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Sets a Stall condition on an endpoint of the Low Level Driver. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_StallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_SetStall(pdev->pData, ep_addr); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Clears a Stall condition on an endpoint of the Low Level Driver. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_ClearStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_ClrStall(pdev->pData, ep_addr); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Returns Stall condition. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval Stall (1: Yes, 0: No) + */ +uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + PCD_HandleTypeDef *hpcd = (PCD_HandleTypeDef*) pdev->pData; + + if((ep_addr & 0x80) == 0x80) + { + return hpcd->IN_ep[ep_addr & 0x7F].is_stall; + } + else + { + return hpcd->OUT_ep[ep_addr & 0x7F].is_stall; + } +} + +/** + * @brief Assigns a USB address to the device. + * @param pdev: Device handle + * @param dev_addr: Device address + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_SetUSBAddress(USBD_HandleTypeDef *pdev, uint8_t dev_addr) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_SetAddress(pdev->pData, dev_addr); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Transmits data over an endpoint. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @param pbuf: Pointer to data to be sent + * @param size: Data size + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_Transmit(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_Transmit(pdev->pData, ep_addr, pbuf, size); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Prepares an endpoint for reception. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @param pbuf: Pointer to data to be received + * @param size: Data size + * @retval USBD status + */ +USBD_StatusTypeDef USBD_LL_PrepareReceive(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t size) +{ + HAL_StatusTypeDef hal_status = HAL_OK; + USBD_StatusTypeDef usb_status = USBD_OK; + + hal_status = HAL_PCD_EP_Receive(pdev->pData, ep_addr, pbuf, size); + + usb_status = USBD_Get_USB_Status(hal_status); + + return usb_status; +} + +/** + * @brief Returns the last transferred packet size. + * @param pdev: Device handle + * @param ep_addr: Endpoint number + * @retval Received Data Size + */ +uint32_t USBD_LL_GetRxDataSize(USBD_HandleTypeDef *pdev, uint8_t ep_addr) +{ + return HAL_PCD_EP_GetRxCount((PCD_HandleTypeDef*) pdev->pData, ep_addr); +} + +#ifdef USBD_HS_TESTMODE_ENABLE +/** + * @brief Set High speed Test mode. + * @param pdev: Device handle + * @param testmode: test mode + * @retval USBD Status + */ +USBD_StatusTypeDef USBD_LL_SetTestMode(USBD_HandleTypeDef *pdev, uint8_t testmode) +{ + UNUSED(pdev); + UNUSED(testmode); + + return USBD_OK; +} +#endif /* USBD_HS_TESTMODE_ENABLE */ + +/** + * @brief Static single allocation. + * @param size: Size of allocated memory + * @retval None + */ +void *USBD_static_malloc(uint32_t size) +{ + static uint32_t mem[(sizeof(USBD_CDC_HandleTypeDef)/4)+1];/* On 32-bit boundary */ + return mem; +} + +/** + * @brief Dummy memory free + * @param p: Pointer to allocated memory address + * @retval None + */ +void USBD_static_free(void *p) +{ + +} + +/** + * @brief Delays routine for the USB Device Library. + * @param Delay: Delay in ms + * @retval None + */ +void USBD_LL_Delay(uint32_t Delay) +{ + HAL_Delay(Delay); +} + +/** + * @brief Returns the USB status depending on the HAL status: + * @param hal_status: HAL status + * @retval USB status + */ +USBD_StatusTypeDef USBD_Get_USB_Status(HAL_StatusTypeDef hal_status) +{ + USBD_StatusTypeDef usb_status = USBD_OK; + + switch (hal_status) + { + case HAL_OK : + usb_status = USBD_OK; + break; + case HAL_ERROR : + usb_status = USBD_FAIL; + break; + case HAL_BUSY : + usb_status = USBD_BUSY; + break; + case HAL_TIMEOUT : + usb_status = USBD_FAIL; + break; + default : + usb_status = USBD_FAIL; + break; + } + return usb_status; +} diff --git a/Src/usbd_desc.c b/Src/usbd_desc.c new file mode 100644 index 0000000..41fbf69 --- /dev/null +++ b/Src/usbd_desc.c @@ -0,0 +1,445 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : usbd_desc.c + * @version : v1.0_Cube + * @brief : This file implements the USB device descriptors. + ****************************************************************************** + * @attention + * + * Copyright (c) 2023 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Includes ------------------------------------------------------------------*/ +#include "usbd_core.h" +#include "usbd_desc.h" +#include "usbd_conf.h" + +/* USER CODE BEGIN INCLUDE */ + +/* USER CODE END INCLUDE */ + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private macro -------------------------------------------------------------*/ + +/* USER CODE BEGIN PV */ +/* Private variables ---------------------------------------------------------*/ + +/* USER CODE END PV */ + +/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY + * @{ + */ + +/** @addtogroup USBD_DESC + * @{ + */ + +/** @defgroup USBD_DESC_Private_TypesDefinitions USBD_DESC_Private_TypesDefinitions + * @brief Private types. + * @{ + */ + +/* USER CODE BEGIN PRIVATE_TYPES */ + +/* USER CODE END PRIVATE_TYPES */ + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_Defines USBD_DESC_Private_Defines + * @brief Private defines. + * @{ + */ + +#define USBD_VID 1155 +#define USBD_LANGID_STRING 1033 +#define USBD_MANUFACTURER_STRING "YueLuEmbedded" +#define USBD_PID_FS 202 +#define USBD_PRODUCT_STRING_FS "Vision Comm port" +#define USBD_CONFIGURATION_STRING_FS "CDC Config" +#define USBD_INTERFACE_STRING_FS "CDC Interface" + +#define USB_SIZ_BOS_DESC 0x0C + +/* USER CODE BEGIN PRIVATE_DEFINES */ + +/* USER CODE END PRIVATE_DEFINES */ + +/** + * @} + */ + +/* USER CODE BEGIN 0 */ + +/* USER CODE END 0 */ + +/** @defgroup USBD_DESC_Private_Macros USBD_DESC_Private_Macros + * @brief Private macros. + * @{ + */ + +/* USER CODE BEGIN PRIVATE_MACRO */ + +/* USER CODE END PRIVATE_MACRO */ + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_FunctionPrototypes USBD_DESC_Private_FunctionPrototypes + * @brief Private functions declaration. + * @{ + */ + +static void Get_SerialNum(void); +static void IntToUnicode(uint32_t value, uint8_t * pbuf, uint8_t len); + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_FunctionPrototypes USBD_DESC_Private_FunctionPrototypes + * @brief Private functions declaration for FS. + * @{ + */ + +uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +#if (USBD_LPM_ENABLED == 1) +uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length); +#endif /* (USBD_LPM_ENABLED == 1) */ + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_Variables USBD_DESC_Private_Variables + * @brief Private variables. + * @{ + */ + +USBD_DescriptorsTypeDef FS_Desc = +{ + USBD_FS_DeviceDescriptor +, USBD_FS_LangIDStrDescriptor +, USBD_FS_ManufacturerStrDescriptor +, USBD_FS_ProductStrDescriptor +, USBD_FS_SerialStrDescriptor +, USBD_FS_ConfigStrDescriptor +, USBD_FS_InterfaceStrDescriptor +#if (USBD_LPM_ENABLED == 1) +, USBD_FS_USR_BOSDescriptor +#endif /* (USBD_LPM_ENABLED == 1) */ +}; + +#if defined ( __ICCARM__ ) /* IAR Compiler */ + #pragma data_alignment=4 +#endif /* defined ( __ICCARM__ ) */ +/** USB standard device descriptor. */ +__ALIGN_BEGIN uint8_t USBD_FS_DeviceDesc[USB_LEN_DEV_DESC] __ALIGN_END = +{ + 0x12, /*bLength */ + USB_DESC_TYPE_DEVICE, /*bDescriptorType*/ +#if (USBD_LPM_ENABLED == 1) + 0x01, /*bcdUSB */ /* changed to USB version 2.01 + in order to support LPM L1 suspend + resume test of USBCV3.0*/ +#else + 0x00, /*bcdUSB */ +#endif /* (USBD_LPM_ENABLED == 1) */ + 0x02, + 0x02, /*bDeviceClass*/ + 0x02, /*bDeviceSubClass*/ + 0x00, /*bDeviceProtocol*/ + USB_MAX_EP0_SIZE, /*bMaxPacketSize*/ + LOBYTE(USBD_VID), /*idVendor*/ + HIBYTE(USBD_VID), /*idVendor*/ + LOBYTE(USBD_PID_FS), /*idProduct*/ + HIBYTE(USBD_PID_FS), /*idProduct*/ + 0x00, /*bcdDevice rel. 2.00*/ + 0x02, + USBD_IDX_MFC_STR, /*Index of manufacturer string*/ + USBD_IDX_PRODUCT_STR, /*Index of product string*/ + USBD_IDX_SERIAL_STR, /*Index of serial number string*/ + USBD_MAX_NUM_CONFIGURATION /*bNumConfigurations*/ +}; + +/* USB_DeviceDescriptor */ +/** BOS descriptor. */ +#if (USBD_LPM_ENABLED == 1) +#if defined ( __ICCARM__ ) /* IAR Compiler */ + #pragma data_alignment=4 +#endif /* defined ( __ICCARM__ ) */ +__ALIGN_BEGIN uint8_t USBD_FS_BOSDesc[USB_SIZ_BOS_DESC] __ALIGN_END = +{ + 0x5, + USB_DESC_TYPE_BOS, + 0xC, + 0x0, + 0x1, /* 1 device capability*/ + /* device capability*/ + 0x7, + USB_DEVICE_CAPABITY_TYPE, + 0x2, + 0x2, /* LPM capability bit set*/ + 0x0, + 0x0, + 0x0 +}; +#endif /* (USBD_LPM_ENABLED == 1) */ + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_Variables USBD_DESC_Private_Variables + * @brief Private variables. + * @{ + */ + +#if defined ( __ICCARM__ ) /* IAR Compiler */ + #pragma data_alignment=4 +#endif /* defined ( __ICCARM__ ) */ + +/** USB lang identifier descriptor. */ +__ALIGN_BEGIN uint8_t USBD_LangIDDesc[USB_LEN_LANGID_STR_DESC] __ALIGN_END = +{ + USB_LEN_LANGID_STR_DESC, + USB_DESC_TYPE_STRING, + LOBYTE(USBD_LANGID_STRING), + HIBYTE(USBD_LANGID_STRING) +}; + +#if defined ( __ICCARM__ ) /* IAR Compiler */ + #pragma data_alignment=4 +#endif /* defined ( __ICCARM__ ) */ +/* Internal string descriptor. */ +__ALIGN_BEGIN uint8_t USBD_StrDesc[USBD_MAX_STR_DESC_SIZ] __ALIGN_END; + +#if defined ( __ICCARM__ ) /*!< IAR Compiler */ + #pragma data_alignment=4 +#endif +__ALIGN_BEGIN uint8_t USBD_StringSerial[USB_SIZ_STRING_SERIAL] __ALIGN_END = { + USB_SIZ_STRING_SERIAL, + USB_DESC_TYPE_STRING, +}; + +/** + * @} + */ + +/** @defgroup USBD_DESC_Private_Functions USBD_DESC_Private_Functions + * @brief Private functions. + * @{ + */ + +/** + * @brief Return the device descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_DeviceDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + UNUSED(speed); + *length = sizeof(USBD_FS_DeviceDesc); + return USBD_FS_DeviceDesc; +} + +/** + * @brief Return the LangID string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_LangIDStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + UNUSED(speed); + *length = sizeof(USBD_LangIDDesc); + return USBD_LangIDDesc; +} + +/** + * @brief Return the product string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_ProductStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + if(speed == 0) + { + USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); + } + else + { + USBD_GetString((uint8_t *)USBD_PRODUCT_STRING_FS, USBD_StrDesc, length); + } + return USBD_StrDesc; +} + +/** + * @brief Return the manufacturer string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_ManufacturerStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + UNUSED(speed); + USBD_GetString((uint8_t *)USBD_MANUFACTURER_STRING, USBD_StrDesc, length); + return USBD_StrDesc; +} + +/** + * @brief Return the serial number string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_SerialStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + UNUSED(speed); + *length = USB_SIZ_STRING_SERIAL; + + /* Update the serial number string descriptor with the data from the unique + * ID */ + Get_SerialNum(); + /* USER CODE BEGIN USBD_FS_SerialStrDescriptor */ + + /* USER CODE END USBD_FS_SerialStrDescriptor */ + return (uint8_t *) USBD_StringSerial; +} + +/** + * @brief Return the configuration string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_ConfigStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + if(speed == USBD_SPEED_HIGH) + { + USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); + } + else + { + USBD_GetString((uint8_t *)USBD_CONFIGURATION_STRING_FS, USBD_StrDesc, length); + } + return USBD_StrDesc; +} + +/** + * @brief Return the interface string descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_InterfaceStrDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + if(speed == 0) + { + USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); + } + else + { + USBD_GetString((uint8_t *)USBD_INTERFACE_STRING_FS, USBD_StrDesc, length); + } + return USBD_StrDesc; +} + +#if (USBD_LPM_ENABLED == 1) +/** + * @brief Return the BOS descriptor + * @param speed : Current device speed + * @param length : Pointer to data length variable + * @retval Pointer to descriptor buffer + */ +uint8_t * USBD_FS_USR_BOSDescriptor(USBD_SpeedTypeDef speed, uint16_t *length) +{ + UNUSED(speed); + *length = sizeof(USBD_FS_BOSDesc); + return (uint8_t*)USBD_FS_BOSDesc; +} +#endif /* (USBD_LPM_ENABLED == 1) */ + +/** + * @brief Create the serial number string descriptor + * @param None + * @retval None + */ +static void Get_SerialNum(void) +{ + uint32_t deviceserial0; + uint32_t deviceserial1; + uint32_t deviceserial2; + + deviceserial0 = *(uint32_t *) DEVICE_ID1; + deviceserial1 = *(uint32_t *) DEVICE_ID2; + deviceserial2 = *(uint32_t *) DEVICE_ID3; + + deviceserial0 += deviceserial2; + + if (deviceserial0 != 0) + { + IntToUnicode(deviceserial0, &USBD_StringSerial[2], 8); + IntToUnicode(deviceserial1, &USBD_StringSerial[18], 4); + } +} + +/** + * @brief Convert Hex 32Bits value into char + * @param value: value to convert + * @param pbuf: pointer to the buffer + * @param len: buffer length + * @retval None + */ +static void IntToUnicode(uint32_t value, uint8_t * pbuf, uint8_t len) +{ + uint8_t idx = 0; + + for (idx = 0; idx < len; idx++) + { + if (((value >> 28)) < 0xA) + { + pbuf[2 * idx] = (value >> 28) + '0'; + } + else + { + pbuf[2 * idx] = (value >> 28) + 'A' - 10; + } + + value = value << 4; + + pbuf[2 * idx + 1] = 0; + } +} +/** + * @} + */ + +/** + * @} + */ + +/** + * @} + */ + diff --git a/Startup/startup_stm32f407ighx.s b/Startup/startup_stm32f407ighx.s new file mode 100644 index 0000000..3b99b6b --- /dev/null +++ b/Startup/startup_stm32f407ighx.s @@ -0,0 +1,505 @@ +/** + ****************************************************************************** + * @file startup_stm32f407xx.s + * @author MCD Application Team + * @brief STM32F407xx Devices vector table for GCC based toolchains. + * This module performs: + * - Set the initial SP + * - Set the initial PC == Reset_Handler, + * - Set the vector table entries with the exceptions ISR address + * - Branches to main in the C library (which eventually + * calls main()). + * After Reset the Cortex-M4 processor is in Thread mode, + * priority is Privileged, and the Stack is set to Main. + ****************************************************************************** + * @attention + * + * Copyright (c) 2017 STMicroelectronics. + * All rights reserved. + * + * This software is licensed under terms that can be found in the LICENSE file + * in the root directory of this software component. + * If no LICENSE file comes with this software, it is provided AS-IS. + * + ****************************************************************************** + */ + + .syntax unified + .cpu cortex-m4 + .fpu softvfp + .thumb + +.global g_pfnVectors +.global Default_Handler + +/* start address for the initialization values of the .data section. +defined in linker script */ +.word _sidata +/* start address for the .data section. defined in linker script */ +.word _sdata +/* end address for the .data section. defined in linker script */ +.word _edata +/* start address for the .bss section. defined in linker script */ +.word _sbss +/* end address for the .bss section. defined in linker script */ +.word _ebss +/* stack used for SystemInit_ExtMemCtl; always internal RAM used */ + +/** + * @brief This is the code that gets called when the processor first + * starts execution following a reset event. Only the absolutely + * necessary set is performed, after which the application + * supplied main() routine is called. + * @param None + * @retval : None +*/ + + .section .text.Reset_Handler + .weak Reset_Handler + .type Reset_Handler, %function +Reset_Handler: + ldr sp, =_estack /* set stack pointer */ + +/* Copy the data segment initializers from flash to SRAM */ + ldr r0, =_sdata + ldr r1, =_edata + ldr r2, =_sidata + movs r3, #0 + b LoopCopyDataInit + +CopyDataInit: + ldr r4, [r2, r3] + str r4, [r0, r3] + adds r3, r3, #4 + +LoopCopyDataInit: + adds r4, r0, r3 + cmp r4, r1 + bcc CopyDataInit + +/* Zero fill the bss segment. */ + ldr r2, =_sbss + ldr r4, =_ebss + movs r3, #0 + b LoopFillZerobss + +FillZerobss: + str r3, [r2] + adds r2, r2, #4 + +LoopFillZerobss: + cmp r2, r4 + bcc FillZerobss + +/* Call the clock system initialization function.*/ + bl SystemInit +/* Call static constructors */ + bl __libc_init_array +/* Call the application's entry point.*/ + bl main + bx lr +.size Reset_Handler, .-Reset_Handler + +/** + * @brief This is the code that gets called when the processor receives an + * unexpected interrupt. This simply enters an infinite loop, preserving + * the system state for examination by a debugger. + * @param None + * @retval None +*/ + .section .text.Default_Handler,"ax",%progbits +Default_Handler: +Infinite_Loop: + b Infinite_Loop + .size Default_Handler, .-Default_Handler +/****************************************************************************** +* +* The minimal vector table for a Cortex M3. Note that the proper constructs +* must be placed on this to ensure that it ends up at physical address +* 0x0000.0000. +* +*******************************************************************************/ + .section .isr_vector,"a",%progbits + .type g_pfnVectors, %object + .size g_pfnVectors, .-g_pfnVectors + + +g_pfnVectors: + .word _estack + .word Reset_Handler + .word NMI_Handler + .word HardFault_Handler + .word MemManage_Handler + .word BusFault_Handler + .word UsageFault_Handler + .word 0 + .word 0 + .word 0 + .word 0 + .word SVC_Handler + .word DebugMon_Handler + .word 0 + .word PendSV_Handler + .word SysTick_Handler + + /* External Interrupts */ + .word WWDG_IRQHandler /* Window WatchDog */ + .word PVD_IRQHandler /* PVD through EXTI Line detection */ + .word TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */ + .word RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */ + .word FLASH_IRQHandler /* FLASH */ + .word RCC_IRQHandler /* RCC */ + .word EXTI0_IRQHandler /* EXTI Line0 */ + .word EXTI1_IRQHandler /* EXTI Line1 */ + .word EXTI2_IRQHandler /* EXTI Line2 */ + .word EXTI3_IRQHandler /* EXTI Line3 */ + .word EXTI4_IRQHandler /* EXTI Line4 */ + .word DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */ + .word DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */ + .word DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */ + .word DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */ + .word DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */ + .word DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */ + .word DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */ + .word ADC_IRQHandler /* ADC1, ADC2 and ADC3s */ + .word CAN1_TX_IRQHandler /* CAN1 TX */ + .word CAN1_RX0_IRQHandler /* CAN1 RX0 */ + .word CAN1_RX1_IRQHandler /* CAN1 RX1 */ + .word CAN1_SCE_IRQHandler /* CAN1 SCE */ + .word EXTI9_5_IRQHandler /* External Line[9:5]s */ + .word TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */ + .word TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */ + .word TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */ + .word TIM1_CC_IRQHandler /* TIM1 Capture Compare */ + .word TIM2_IRQHandler /* TIM2 */ + .word TIM3_IRQHandler /* TIM3 */ + .word TIM4_IRQHandler /* TIM4 */ + .word I2C1_EV_IRQHandler /* I2C1 Event */ + .word I2C1_ER_IRQHandler /* I2C1 Error */ + .word I2C2_EV_IRQHandler /* I2C2 Event */ + .word I2C2_ER_IRQHandler /* I2C2 Error */ + .word SPI1_IRQHandler /* SPI1 */ + .word SPI2_IRQHandler /* SPI2 */ + .word USART1_IRQHandler /* USART1 */ + .word USART2_IRQHandler /* USART2 */ + .word USART3_IRQHandler /* USART3 */ + .word EXTI15_10_IRQHandler /* External Line[15:10]s */ + .word RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */ + .word OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */ + .word TIM8_BRK_TIM12_IRQHandler /* TIM8 Break and TIM12 */ + .word TIM8_UP_TIM13_IRQHandler /* TIM8 Update and TIM13 */ + .word TIM8_TRG_COM_TIM14_IRQHandler /* TIM8 Trigger and Commutation and TIM14 */ + .word TIM8_CC_IRQHandler /* TIM8 Capture Compare */ + .word DMA1_Stream7_IRQHandler /* DMA1 Stream7 */ + .word FSMC_IRQHandler /* FSMC */ + .word SDIO_IRQHandler /* SDIO */ + .word TIM5_IRQHandler /* TIM5 */ + .word SPI3_IRQHandler /* SPI3 */ + .word UART4_IRQHandler /* UART4 */ + .word UART5_IRQHandler /* UART5 */ + .word TIM6_DAC_IRQHandler /* TIM6 and DAC1&2 underrun errors */ + .word TIM7_IRQHandler /* TIM7 */ + .word DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */ + .word DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */ + .word DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */ + .word DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */ + .word DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */ + .word ETH_IRQHandler /* Ethernet */ + .word ETH_WKUP_IRQHandler /* Ethernet Wakeup through EXTI line */ + .word CAN2_TX_IRQHandler /* CAN2 TX */ + .word CAN2_RX0_IRQHandler /* CAN2 RX0 */ + .word CAN2_RX1_IRQHandler /* CAN2 RX1 */ + .word CAN2_SCE_IRQHandler /* CAN2 SCE */ + .word OTG_FS_IRQHandler /* USB OTG FS */ + .word DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */ + .word DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */ + .word DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */ + .word USART6_IRQHandler /* USART6 */ + .word I2C3_EV_IRQHandler /* I2C3 event */ + .word I2C3_ER_IRQHandler /* I2C3 error */ + .word OTG_HS_EP1_OUT_IRQHandler /* USB OTG HS End Point 1 Out */ + .word OTG_HS_EP1_IN_IRQHandler /* USB OTG HS End Point 1 In */ + .word OTG_HS_WKUP_IRQHandler /* USB OTG HS Wakeup through EXTI */ + .word OTG_HS_IRQHandler /* USB OTG HS */ + .word DCMI_IRQHandler /* DCMI */ + .word 0 /* CRYP crypto */ + .word HASH_RNG_IRQHandler /* Hash and Rng */ + .word FPU_IRQHandler /* FPU */ + + +/******************************************************************************* +* +* Provide weak aliases for each Exception handler to the Default_Handler. +* As they are weak aliases, any function with the same name will override +* this definition. +* +*******************************************************************************/ + .weak NMI_Handler + .thumb_set NMI_Handler,Default_Handler + + .weak HardFault_Handler + .thumb_set HardFault_Handler,Default_Handler + + .weak MemManage_Handler + .thumb_set MemManage_Handler,Default_Handler + + .weak BusFault_Handler + .thumb_set BusFault_Handler,Default_Handler + + .weak UsageFault_Handler + .thumb_set UsageFault_Handler,Default_Handler + + .weak SVC_Handler + .thumb_set SVC_Handler,Default_Handler + + .weak DebugMon_Handler + .thumb_set DebugMon_Handler,Default_Handler + + .weak PendSV_Handler + .thumb_set PendSV_Handler,Default_Handler + + .weak SysTick_Handler + .thumb_set SysTick_Handler,Default_Handler + + .weak WWDG_IRQHandler + .thumb_set WWDG_IRQHandler,Default_Handler + + .weak PVD_IRQHandler + .thumb_set PVD_IRQHandler,Default_Handler + + .weak TAMP_STAMP_IRQHandler + .thumb_set TAMP_STAMP_IRQHandler,Default_Handler + + .weak RTC_WKUP_IRQHandler + .thumb_set RTC_WKUP_IRQHandler,Default_Handler + + .weak FLASH_IRQHandler + .thumb_set FLASH_IRQHandler,Default_Handler + + .weak RCC_IRQHandler + .thumb_set RCC_IRQHandler,Default_Handler + + .weak EXTI0_IRQHandler + .thumb_set EXTI0_IRQHandler,Default_Handler + + .weak EXTI1_IRQHandler + .thumb_set EXTI1_IRQHandler,Default_Handler + + .weak EXTI2_IRQHandler + .thumb_set EXTI2_IRQHandler,Default_Handler + + .weak EXTI3_IRQHandler + .thumb_set EXTI3_IRQHandler,Default_Handler + + .weak EXTI4_IRQHandler + .thumb_set EXTI4_IRQHandler,Default_Handler + + .weak DMA1_Stream0_IRQHandler + .thumb_set DMA1_Stream0_IRQHandler,Default_Handler + + .weak DMA1_Stream1_IRQHandler + .thumb_set DMA1_Stream1_IRQHandler,Default_Handler + + .weak DMA1_Stream2_IRQHandler + .thumb_set DMA1_Stream2_IRQHandler,Default_Handler + + .weak DMA1_Stream3_IRQHandler + .thumb_set DMA1_Stream3_IRQHandler,Default_Handler + + .weak DMA1_Stream4_IRQHandler + .thumb_set DMA1_Stream4_IRQHandler,Default_Handler + + .weak DMA1_Stream5_IRQHandler + .thumb_set DMA1_Stream5_IRQHandler,Default_Handler + + .weak DMA1_Stream6_IRQHandler + .thumb_set DMA1_Stream6_IRQHandler,Default_Handler + + .weak ADC_IRQHandler + .thumb_set ADC_IRQHandler,Default_Handler + + .weak CAN1_TX_IRQHandler + .thumb_set CAN1_TX_IRQHandler,Default_Handler + + .weak CAN1_RX0_IRQHandler + .thumb_set CAN1_RX0_IRQHandler,Default_Handler + + .weak CAN1_RX1_IRQHandler + .thumb_set CAN1_RX1_IRQHandler,Default_Handler + + .weak CAN1_SCE_IRQHandler + .thumb_set CAN1_SCE_IRQHandler,Default_Handler + + .weak EXTI9_5_IRQHandler + .thumb_set EXTI9_5_IRQHandler,Default_Handler + + .weak TIM1_BRK_TIM9_IRQHandler + .thumb_set TIM1_BRK_TIM9_IRQHandler,Default_Handler + + .weak TIM1_UP_TIM10_IRQHandler + .thumb_set TIM1_UP_TIM10_IRQHandler,Default_Handler + + .weak TIM1_TRG_COM_TIM11_IRQHandler + .thumb_set TIM1_TRG_COM_TIM11_IRQHandler,Default_Handler + + .weak TIM1_CC_IRQHandler + .thumb_set TIM1_CC_IRQHandler,Default_Handler + + .weak TIM2_IRQHandler + .thumb_set TIM2_IRQHandler,Default_Handler + + .weak TIM3_IRQHandler + .thumb_set TIM3_IRQHandler,Default_Handler + + .weak TIM4_IRQHandler + .thumb_set TIM4_IRQHandler,Default_Handler + + .weak I2C1_EV_IRQHandler + .thumb_set I2C1_EV_IRQHandler,Default_Handler + + .weak I2C1_ER_IRQHandler + .thumb_set I2C1_ER_IRQHandler,Default_Handler + + .weak I2C2_EV_IRQHandler + .thumb_set I2C2_EV_IRQHandler,Default_Handler + + .weak I2C2_ER_IRQHandler + .thumb_set I2C2_ER_IRQHandler,Default_Handler + + .weak SPI1_IRQHandler + .thumb_set SPI1_IRQHandler,Default_Handler + + .weak SPI2_IRQHandler + .thumb_set SPI2_IRQHandler,Default_Handler + + .weak USART1_IRQHandler + .thumb_set USART1_IRQHandler,Default_Handler + + .weak USART2_IRQHandler + .thumb_set USART2_IRQHandler,Default_Handler + + .weak USART3_IRQHandler + .thumb_set USART3_IRQHandler,Default_Handler + + .weak EXTI15_10_IRQHandler + .thumb_set EXTI15_10_IRQHandler,Default_Handler + + .weak RTC_Alarm_IRQHandler + .thumb_set RTC_Alarm_IRQHandler,Default_Handler + + .weak OTG_FS_WKUP_IRQHandler + .thumb_set OTG_FS_WKUP_IRQHandler,Default_Handler + + .weak TIM8_BRK_TIM12_IRQHandler + .thumb_set TIM8_BRK_TIM12_IRQHandler,Default_Handler + + .weak TIM8_UP_TIM13_IRQHandler + .thumb_set TIM8_UP_TIM13_IRQHandler,Default_Handler + + .weak TIM8_TRG_COM_TIM14_IRQHandler + .thumb_set TIM8_TRG_COM_TIM14_IRQHandler,Default_Handler + + .weak TIM8_CC_IRQHandler + .thumb_set TIM8_CC_IRQHandler,Default_Handler + + .weak DMA1_Stream7_IRQHandler + .thumb_set DMA1_Stream7_IRQHandler,Default_Handler + + .weak FSMC_IRQHandler + .thumb_set FSMC_IRQHandler,Default_Handler + + .weak SDIO_IRQHandler + .thumb_set SDIO_IRQHandler,Default_Handler + + .weak TIM5_IRQHandler + .thumb_set TIM5_IRQHandler,Default_Handler + + .weak SPI3_IRQHandler + .thumb_set SPI3_IRQHandler,Default_Handler + + .weak UART4_IRQHandler + .thumb_set UART4_IRQHandler,Default_Handler + + .weak UART5_IRQHandler + .thumb_set UART5_IRQHandler,Default_Handler + + .weak TIM6_DAC_IRQHandler + .thumb_set TIM6_DAC_IRQHandler,Default_Handler + + .weak TIM7_IRQHandler + .thumb_set TIM7_IRQHandler,Default_Handler + + .weak DMA2_Stream0_IRQHandler + .thumb_set DMA2_Stream0_IRQHandler,Default_Handler + + .weak DMA2_Stream1_IRQHandler + .thumb_set DMA2_Stream1_IRQHandler,Default_Handler + + .weak DMA2_Stream2_IRQHandler + .thumb_set DMA2_Stream2_IRQHandler,Default_Handler + + .weak DMA2_Stream3_IRQHandler + .thumb_set DMA2_Stream3_IRQHandler,Default_Handler + + .weak DMA2_Stream4_IRQHandler + .thumb_set DMA2_Stream4_IRQHandler,Default_Handler + + .weak ETH_IRQHandler + .thumb_set ETH_IRQHandler,Default_Handler + + .weak ETH_WKUP_IRQHandler + .thumb_set ETH_WKUP_IRQHandler,Default_Handler + + .weak CAN2_TX_IRQHandler + .thumb_set CAN2_TX_IRQHandler,Default_Handler + + .weak CAN2_RX0_IRQHandler + .thumb_set CAN2_RX0_IRQHandler,Default_Handler + + .weak CAN2_RX1_IRQHandler + .thumb_set CAN2_RX1_IRQHandler,Default_Handler + + .weak CAN2_SCE_IRQHandler + .thumb_set CAN2_SCE_IRQHandler,Default_Handler + + .weak OTG_FS_IRQHandler + .thumb_set OTG_FS_IRQHandler,Default_Handler + + .weak DMA2_Stream5_IRQHandler + .thumb_set DMA2_Stream5_IRQHandler,Default_Handler + + .weak DMA2_Stream6_IRQHandler + .thumb_set DMA2_Stream6_IRQHandler,Default_Handler + + .weak DMA2_Stream7_IRQHandler + .thumb_set DMA2_Stream7_IRQHandler,Default_Handler + + .weak USART6_IRQHandler + .thumb_set USART6_IRQHandler,Default_Handler + + .weak I2C3_EV_IRQHandler + .thumb_set I2C3_EV_IRQHandler,Default_Handler + + .weak I2C3_ER_IRQHandler + .thumb_set I2C3_ER_IRQHandler,Default_Handler + + .weak OTG_HS_EP1_OUT_IRQHandler + .thumb_set OTG_HS_EP1_OUT_IRQHandler,Default_Handler + + .weak OTG_HS_EP1_IN_IRQHandler + .thumb_set OTG_HS_EP1_IN_IRQHandler,Default_Handler + + .weak OTG_HS_WKUP_IRQHandler + .thumb_set OTG_HS_WKUP_IRQHandler,Default_Handler + + .weak OTG_HS_IRQHandler + .thumb_set OTG_HS_IRQHandler,Default_Handler + + .weak DCMI_IRQHandler + .thumb_set DCMI_IRQHandler,Default_Handler + + .weak HASH_RNG_IRQHandler + .thumb_set HASH_RNG_IRQHandler,Default_Handler + + .weak FPU_IRQHandler + .thumb_set FPU_IRQHandler,Default_Handler diff --git a/application/APP层应用编写指引.md b/application/APP层应用编写指引.md new file mode 100644 index 0000000..4158dd7 --- /dev/null +++ b/application/APP层应用编写指引.md @@ -0,0 +1,70 @@ +# APP层应用编写指引 + + neozng1@hnu.edu.cn
+ +## 通信机制 + +**应用之间不应该有任何包含关系,它们必须是平行工作的。**而这通过pub-sub的机制实现。module层提供了`message_center`模块,支持发布订阅者的消息订阅机制。以传统的框架为例,负责整车控制的应用和其他应用(或任务)是从属的树状结构,或不同的任务和应用之间通过全局变量传递消息(**请不要使用全局变量!**),而此框架下的不同应用是并行的关系。 + +如果一个应用希望获取另一个应用的数据,那么他应该**订阅**由此此应用发布的话题。一个应用要把自己希望共享的数据,注册到消息中心,即**发布**。为了区别不同的消息来源(你希望订阅谁的消息?哪一个消息?),可以通过**话题名**进行订阅。也就是说,消息中心作为第三方,管理所有的消息发布者和订阅者,它像报刊亭一样对消息进行中转,使得不同的应用之间不需要包含彼此,更不用全局变量也能共享消息。 + +> 更多关于发布-订阅的实现,请参考`modules/message_center`下的文档。 + + +## robot_def.h + +这是机器人的参数配置文件,必须要针对每个机器人进行修改。包括机器人的尺寸参数和性能参数等。你还需要在这里设定软硬件配置:云台板/底盘板/单板等。这里定义的宏会作为条件编译的决断。 + +app层共用的状态变量和结构体等也应该定义在这里(例如用于应用之间通信的数据)。记得用于通信的变量要用: +```c +#pragma pack(1) +typedef struct +{ + // your struct + +} your_struct; +#pragma pack() +``` +包裹起来,取消字节对齐以防止出现访问8-bit地址而出现错误。 + +如果你需要其他的通信数据类型或修改模块间通信数据的格式,直接在此处更改即可。 + +## robot_cmd + +机器人命令模块是对整个机器人的抽象,对于单板控制整车的情况,该应用应该包含接收控制指令的模块,例如遥控器、视觉通信模块。该模块会处理接收到的控制数据,并将其转化为**具体的、定量的**控制信息,发送给其他模块。同时,cmd应用会处理模块和应用离线的情况,出现紧急状况时停止所有执行机构的运行。 + +如从遥控器获知当前右侧摇杆拨向上方,则将遥控器发来的数值转化为底盘前进的速度值,然后发送给其他应用。同时,robot_cmd还要从其他应用获取反馈信息,做出其他决策。可以将其视为整个机器人的**大脑**。 + +robot_cmd工作起来就像一个遥控数据的兼容层,不论数据的来源是视觉上位机/遥控器/键鼠/图传通信链路/ps手柄,最后都会被转化成真实参考输入提供给其他的app。它的任务是将其他来源的数据映射到控制输入上。 + + + +## gimbal + +以步兵为例,云台应用应当包含两个电机,分别用于驱动yaw和pitch轴(除非你是一个三轴的云台),还有一个imu(开发板一般放在云台上)。gimbal模块会接收robot_cmd发来的控制信息(云台的角度、转速等),并通过电机提供的接口完成电机的参考值设定。gimbal还要把imu的数据反馈给cmd,用于和视觉的通信以及云台状态的判断。 + + + +## shoot + +还是以步兵为例,发射应用应当包括摩擦轮电机、拨盘电机和弹舱盖。根据cmd应用发来的控制信息,决定当前的发射模式(单发、双发、连发),弹舱盖的开合,以及射速(15?18?30?)等。 + + + +## chassis + +以步兵为例,底盘应该包括4个电机。根据cmd应用发来的控制信息,进行麦克纳姆轮的运动学解算,从而获知四个电机需要的设定值,然后调用电机提供的接口进行设定。chassis还要根据电机的反馈数据以及imu信息(如果有imu的话,即双板的情况,云台一个底盘一个),计算底盘的实际运动状态,反馈给robot_cmd应用。 + + + +## lift + +以工程机器人为例,抬升机构应该包含用于抬升的执行单元(可能是气缸、电磁阀、电机、点推杆等),根据cmd发来的数据控制执行单元运行到特定的高度,并进行必要的反馈。 + + + +## 双板兼容 + +此框架对单开发板/双开发板/多开发板的情况都提供了支持(多板一般只在工程机器人上出现,需要自己在robot_cmd和robot_def增加相应的条件编译选项,robot.c中也不要忘记增加初始化和任务运行函数),目前通过条件编译实现了对单双板的切换。使用双板时,主控板在云台上,连接遥控器和上位机;副板在底盘上,负责底盘的运动控制和与裁判系统的通信。 + +当然,你可以为每台不同的机器人进行特化,因为本框架是针对步兵/英雄定制的。 diff --git a/application/application.md b/application/application.md new file mode 100644 index 0000000..9e9636b --- /dev/null +++ b/application/application.md @@ -0,0 +1,52 @@ +# application + +neozng1@hnu.edu.cn
+ +这是application层的说明。 + +> todo: 是否有必要将所有电机等模块的初始化参数放到一个头文件? + +## 使用说明 + +在main函数中包含`robot.h`头文件,这是对整车的抽象。将`INStask`,`motortask`,`ledtask`,`monitortask`这四个task加入`freertos.c`中,创建对应的任务,设置合适的任务运行间隔;然后将`robottask`放入freertos.c中,同样以一定的频率运行。 在初始化实时系统之前,在`main()`中调用`RobotInit()`进行整车的初始化。 + +**关于运行的任务**,INStask的运行频率必须为1kHz,motortask推荐的运行频率为200Hz\~1000Hz(详情见module/motor/motor_task.c),在MotorTask内部,对于高实时性要求的电机可以提升到1kHz,不过要注意CAN总线的负载。monitortask的运行频率为100Hz;robottask的运行频率推荐为150Hz以上,应当高于视觉发送的频率,若后续使用插帧,同样应该保证不低过motortask太多。 + +若使用双板,则在`robot_def.h`中给对应的开发板设定宏定义,如底盘板使用`#define CHASSIS_BOARD`,云台板使用`#define GIMBAL_BOARD`;单个开发板控制整车,则定义`#define ONE_BOARD`。在每个应用中,都已经使用编译预处理指令完成条件编译,会自动根据设定的宏切换功能。使用双板的时候,目前板间通信通过CAN完成,因此两个开发板会挂载在一条总线上,在两个开发板对这条总线的其他使用CAN的设备进行配置时注意**不要发生ID冲突**,还要注意**防止负载过大**。 + +**同样,在该文件中你需要修改一些关于机器人的参数**。比如底盘和云台对齐时yaw电机编码器的值,拨盘的单圈载弹量、底盘的轴距等等。 + + + +## 封装总览 + +Robot.c是整个机器人的抽象,其下有4个应用:robot_cmd,gimbal,chassis,shoot。此框架当前是针对步兵/英雄/哨兵设计的,其他机器人只需要根据各自的特殊机构进行修改即可。robot_cmd是整个机器人的核心应用,其负责接受遥控器/上位机发来的指令,并将指令转化为实际的运动控制目标,发送给其他三个应用。后者会根据robot_cmd发来的命令,设定电机和其他执行单元的参考值等。 + +为了进一步解耦应用之间的关系,app层并没有module和bsp之间的那种层级结构(或设计模式中所谓的**结构类型模式**,即robot_cmd包含其他三个模块),而采用了应用并列的**发布-订阅**机制,四个应用之间没有任何相互包含关系,他们之间的通信通过module层提供的`message_center`实现。每个应用会通过该模块向一些话题(事件)发布一些消息,同时从一些话题订阅消息。如robot_cmd应用会发布其他三个模块的控制信息,同时订阅其他三个模块的反馈信息。其他三个模块会订阅robot_cmd发布的控制信息,同时发布反馈给robot_cmd的信息,他们不需要知道彼此的存在,只是从`message_center`处获取其他应用发布的消息或向自己发布的话题推送消息。 + +application在初始化module的时候,初始化参数会包含部分bsp的内容,但仅仅是外设和引脚的选择以及id设置(用于通信的外设需要id设置)。实际上当前框架的app层和cubemx初始化部分耦合,在配置的时候就必须确定每个外设的作用和归属权,一旦cubemx完成设置app层必须按照对应参数设置引脚和并分配module的外设。后续考虑将cubemx和bsp耦合,去除顶层代码和底层的关系 + + + +## 整车程序流程 + +```mermaid +graph TD +main调用RobotInit进行初始化 --> RobotInit调用基础bsp初始化以及各个app的初始化 --> 各个app进行消息订阅初始化和自有模块的初始化 --> 启动实时系统 --> 各任务开始运行 + +``` + +任务开始之后,每个app之间的交互关系如下: + +```mermaid +graph TD +robot_cmd获取遥控器/上位机指令以及各个应用发布的回传信息 --> 将指令转化为具体的控制信息 --> 发布指令到对应话题 +``` + +gimbal/chassis/shoot则根据订阅的robot_cmd发布的消息,将具体的控制信息根据当前模式转化为执行单元的目标值,通过自己拥有的模块完成这些指令,然后把回传的信息发布到对应话题。 + +每个应用的具体流程和实现,参见它们各自的说明文档。 + +## 开发要点 + +各个应用之间务必通过`message_center`以发布-订阅的方式进行消息交换,不要出现包含关系,这可以大大减小耦合度并提高合作开发的效率。 diff --git a/application/chassis/chassis.c b/application/chassis/chassis.c new file mode 100644 index 0000000..313afa2 --- /dev/null +++ b/application/chassis/chassis.c @@ -0,0 +1,304 @@ +/** + * @file chassis.c + * @author NeoZeng neozng1@hnu.edu.cn + * @brief 底盘应用,负责接收robot_cmd的控制命令并根据命令进行运动学解算,得到输出 + * 注意底盘采取右手系,对于平面视图,底盘纵向运动的正前方为x正方向;横向运动的右侧为y正方向 + * + * @version 0.1 + * @date 2022-12-04 + * + * @copyright Copyright (c) 2022 + * + */ + +#include "chassis.h" +#include "robot_def.h" +#include "dji_motor.h" +#include "super_cap.h" +#include "message_center.h" +#include "referee_task.h" + +#include "general_def.h" +#include "bsp_dwt.h" +#include "referee_UI.h" +#include "arm_math.h" + +#include "vofa.h" + +/* 根据robot_def.h中的macro自动计算的参数 */ +#define HALF_WHEEL_BASE (WHEEL_BASE / 2.0f) // 半轴距 +#define HALF_TRACK_WIDTH (TRACK_WIDTH / 2.0f) // 半轮距 +#define PERIMETER_WHEEL (RADIUS_WHEEL * 2 * PI) // 轮子周长 + +#define P_MAX 50.0f//功率控制 单位:W + +/* 底盘应用包含的模块和信息存储,底盘是单例模式,因此不需要为底盘建立单独的结构体 */ +#ifdef CHASSIS_BOARD // 如果是底盘板,使用板载IMU获取底盘转动角速度 +#include "can_comm.h" +#include "ins_task.h" +static CANCommInstance *chasiss_can_comm; // 双板通信CAN comm +attitude_t *Chassis_IMU_data; +#endif // CHASSIS_BOARD +#ifdef ONE_BOARD +static Publisher_t *chassis_pub; // 用于发布底盘的数据 +static Subscriber_t *chassis_sub; // 用于订阅底盘的控制命令 +#endif // !ONE_BOARD +static Chassis_Ctrl_Cmd_s chassis_cmd_recv ; // 底盘接收到的控制命令 +static Chassis_Upload_Data_s chassis_feedback_data; // 底盘回传的反馈数据 +static Chassis_Ctrl_Cmd_s Chassis_Power_Mx; + + + +static SuperCapInstance *cap; // 超级电容 +static DJIMotorInstance *motor_lf, *motor_rf, *motor_lb, *motor_rb; // left right forward back + +/* 用于自旋变速策略的时间变量 */ +// static float t; + +/* 私有函数计算的中介变量,设为静态避免参数传递的开销 */ +static float chassis_vx, chassis_vy; // 将云台系的速度投影到底盘 +static float vt_lf, vt_rf, vt_lb, vt_rb; // 底盘速度解算后的临时输出,待进行限幅 + +void ChassisInit() { + // 四个轮子的参数一样,改tx_id和反转标志位即可 + Motor_Init_Config_s chassis_motor_config = { + .can_init_config.can_handle = &hcan1, + .controller_param_init_config = { + .speed_PID = { + .Kp = 4.25f, // 4.5 + .Ki = 0.6f, // 0.6 + .Kd = 0.01f, // 0.01 + .IntegralLimit = 3000, + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .MaxOut = 12000, + }, + .current_PID = { + .Kp = 2.2f, // 2.5 + .Ki = 0.6f, // 0.8 + .Kd = 0.5f, // 0.2 + .IntegralLimit = 3000, + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .MaxOut = 15000, + }, + }, + .controller_setting_init_config = { + .angle_feedback_source = MOTOR_FEED, + .speed_feedback_source = MOTOR_FEED, + .outer_loop_type = SPEED_LOOP, + .close_loop_type = SPEED_LOOP, //| CURRENT_LOOP, + .power_limit_flag = POWER_LIMIT_ON, + }, + .motor_type = M3508, + }; + // @todo: 当前还没有设置电机的正反转,仍然需要手动添加reference的正负号,需要电机module的支持,待修改. + chassis_motor_config.can_init_config.tx_id = 1; + chassis_motor_config.controller_setting_init_config.motor_reverse_flag = MOTOR_DIRECTION_NORMAL; + motor_rf = DJIMotorInit(&chassis_motor_config); + + chassis_motor_config.can_init_config.tx_id = 2; + chassis_motor_config.controller_setting_init_config.motor_reverse_flag = MOTOR_DIRECTION_NORMAL; + motor_lf = DJIMotorInit(&chassis_motor_config); + + chassis_motor_config.can_init_config.tx_id = 3; + chassis_motor_config.controller_setting_init_config.motor_reverse_flag = MOTOR_DIRECTION_NORMAL; + motor_lb = DJIMotorInit(&chassis_motor_config); + + chassis_motor_config.can_init_config.tx_id = 4; + chassis_motor_config.controller_setting_init_config.motor_reverse_flag = MOTOR_DIRECTION_NORMAL; + motor_rb = DJIMotorInit(&chassis_motor_config); + + + + SuperCap_Init_Config_s cap_conf = { + .can_config = { + .can_handle = &hcan2, + .tx_id = 0x302, // 超级电容默认接收id + .rx_id = 0x301, // 超级电容默认发送id,注意tx和rx在其他人看来是反的 + }}; + cap = SuperCapInit(&cap_conf); // 超级电容初始化 + + // PowerMeter_Init_Config_s + + // 发布订阅初始化,如果为双板,则需要can comm来传递消息 +#ifdef CHASSIS_BOARD + Chassis_IMU_data = INS_Init(); // 底盘IMU初始化 + + CANComm_Init_Config_s comm_conf = { + .can_config = { + .can_handle = &hcan2, + .tx_id = 0x311, + .rx_id = 0x312, + }, + .recv_data_len = sizeof(Chassis_Ctrl_Cmd_s), + .send_data_len = sizeof(Chassis_Upload_Data_s), + }; + chasiss_can_comm = CANCommInit(&comm_conf); // can comm初始化 +#endif // CHASSIS_BOARD + +#ifdef ONE_BOARD // 单板控制整车,则通过pubsub来传递消息 + chassis_sub = SubRegister("chassis_cmd", sizeof(Chassis_Ctrl_Cmd_s)); + chassis_pub = PubRegister("chassis_feed", sizeof(Chassis_Upload_Data_s)); +#endif // ONE_BOARD +} + +#define LF_CENTER ((HALF_TRACK_WIDTH + CENTER_GIMBAL_OFFSET_X + HALF_WHEEL_BASE - CENTER_GIMBAL_OFFSET_Y) * DEGREE_2_RAD) +#define RF_CENTER ((HALF_TRACK_WIDTH - CENTER_GIMBAL_OFFSET_X + HALF_WHEEL_BASE - CENTER_GIMBAL_OFFSET_Y) * DEGREE_2_RAD) +#define LB_CENTER ((HALF_TRACK_WIDTH + CENTER_GIMBAL_OFFSET_X + HALF_WHEEL_BASE + CENTER_GIMBAL_OFFSET_Y) * DEGREE_2_RAD) +#define RB_CENTER ((HALF_TRACK_WIDTH - CENTER_GIMBAL_OFFSET_X + HALF_WHEEL_BASE + CENTER_GIMBAL_OFFSET_Y) * DEGREE_2_RAD) + +/** + * @brief 计算每个轮毂电机的输出,正运动学解算 + * 用宏进行预替换减小开销,运动解算具体过程参考教程 + */ +static void MecanumCalculate() { + vt_lf = -chassis_vx - chassis_vy - chassis_cmd_recv.wz * LF_CENTER; + vt_rf = -chassis_vx + chassis_vy - chassis_cmd_recv.wz * RF_CENTER; + vt_lb = chassis_vx - chassis_vy - chassis_cmd_recv.wz * LB_CENTER; + vt_rb = chassis_vx + chassis_vy - chassis_cmd_recv.wz * RB_CENTER; +} + +//全向轮解算 +static void OmniCalculate() { + vt_rf = -(HALF_TRACK_WIDTH + HALF_WHEEL_BASE) * chassis_cmd_recv.wz + chassis_vx - chassis_vy; + vt_rb = -(HALF_TRACK_WIDTH + HALF_WHEEL_BASE) * chassis_cmd_recv.wz - chassis_vx - chassis_vy; + vt_lb = -(HALF_TRACK_WIDTH + HALF_WHEEL_BASE) * chassis_cmd_recv.wz - chassis_vx + chassis_vy; + vt_lf = -(HALF_TRACK_WIDTH + HALF_WHEEL_BASE) * chassis_cmd_recv.wz + chassis_vx + chassis_vy; + + vt_rf /= (WHEEL_BASE * 1.414f); + vt_rb /= (WHEEL_BASE * 1.414f); + vt_lb /= (WHEEL_BASE * 1.414f); + vt_lf /= (WHEEL_BASE * 1.414f); +} + +static const float motor_power_K[3] = {1.6301e-6f,5.7501e-7f,2.5863e-7f}; +///依据3508电机功率模型,预测电机输出功率 +static float EstimatePower(DJIMotorInstance* chassis_motor) +{ + + float I_cmd = chassis_motor->motor_controller.current_PID.Output; + float w = chassis_motor->measure.speed_aps /6 ;//aps to rpm + + float power = motor_power_K[0] * I_cmd * w + motor_power_K[1]*w*w + motor_power_K[2]*I_cmd*I_cmd; + + return power; +} +float vofa_send_data[6]; +/** + * @brief 根据裁判系统和电容剩余容量对输出进行限制并设置电机参考值 + * + */ +static void LimitChassisOutput() +{ + float P_cmd = motor_rf->motor_controller.motor_power_predict + + motor_rb->motor_controller.motor_power_predict + + motor_lb->motor_controller.motor_power_predict + + motor_lf->motor_controller.motor_power_predict + 3.6f; + + float K = (float)(chassis_cmd_recv.chassis_power_limit - 5) / P_cmd; + //vofa_send_data[2] = P_cmd; + + motor_rf->motor_controller.motor_power_scale = K; + motor_rb->motor_controller.motor_power_scale = K; + motor_lf->motor_controller.motor_power_scale = K; + motor_lb->motor_controller.motor_power_scale = K; + + { + DJIMotorSetRef(motor_lf, vt_lf); + DJIMotorSetRef(motor_rf, vt_rf); + DJIMotorSetRef(motor_lb, vt_lb); + DJIMotorSetRef(motor_rb, vt_rb); + } + + + +} + +/** + * @brief 根据每个轮子的速度反馈,计算底盘的实际运动速度,逆运动解算 + * 对于双板的情况,考虑增加来自底盘板IMU的数据 + * + */ +static void EstimateSpeed() { + // 根据电机速度和陀螺仪的角速度进行解算,还可以利用加速度计判断是否打滑(如果有) + // chassis_feedback_data.vx vy wz = + // ... +} + +/* 机器人底盘控制核心任务 */ +void ChassisTask() { + // 后续增加没收到消息的处理(双板的情况) + // 获取新的控制信息 +#ifdef ONE_BOARD + SubGetMessage(chassis_sub, &chassis_cmd_recv); +#endif +#ifdef CHASSIS_BOARD + chassis_cmd_recv = *(Chassis_Ctrl_Cmd_s *)CANCommGet(chasiss_can_comm); +#endif // CHASSIS_BOARD + + if (chassis_cmd_recv.chassis_mode == CHASSIS_ZERO_FORCE) { // 如果出现重要模块离线或遥控器设置为急停,让电机停止 + DJIMotorStop(motor_lf); + DJIMotorStop(motor_rf); + DJIMotorStop(motor_lb); + DJIMotorStop(motor_rb); + } else { // 正常工作 + DJIMotorEnable(motor_lf); + DJIMotorEnable(motor_rf); + DJIMotorEnable(motor_lb); + DJIMotorEnable(motor_rb); + } + + // 根据控制模式设定旋转速度 + switch (chassis_cmd_recv.chassis_mode) { + case CHASSIS_NO_FOLLOW: // 底盘不旋转,但维持全向机动,一般用于调整云台姿态 + chassis_cmd_recv.wz = 0; + break; + case CHASSIS_FOLLOW_GIMBAL_YAW: // 跟随云台,不单独设置pid,以误差角度平方为速度输出 + chassis_cmd_recv.wz = 10.0f * chassis_cmd_recv.offset_angle * abs(chassis_cmd_recv.offset_angle); + break; + case CHASSIS_ROTATE: // 自旋,同时保持全向机动;当前wz维持定值,后续增加不规则的变速策略 + chassis_cmd_recv.wz = 30000; + break; + default: + break; + } + + // 根据云台和底盘的角度offset将控制量映射到底盘坐标系上 + // 底盘逆时针旋转为角度正方向;云台命令的方向以云台指向的方向为x,采用右手系(x指向正北时y在正东) + static float sin_theta, cos_theta; + cos_theta = arm_cos_f32(chassis_cmd_recv.offset_angle * DEGREE_2_RAD); + sin_theta = arm_sin_f32(chassis_cmd_recv.offset_angle * DEGREE_2_RAD); + + chassis_vx = chassis_cmd_recv.vx * cos_theta - chassis_cmd_recv.vy * sin_theta; + chassis_vy = chassis_cmd_recv.vx * sin_theta + chassis_cmd_recv.vy * cos_theta; + + // 根据控制模式进行正运动学解算,计算底盘输出 + //MecanumCalculate(); + OmniCalculate(); + + // 根据裁判系统的反馈数据和电容数据对输出限幅并设定闭环参考值 + LimitChassisOutput(); + +// float vofa_send_data[2]; +// vofa_send_data[0] = motor_lb->motor_controller.speed_PID.Ref; +// vofa_send_data[1] = motor_lb->motor_controller.speed_PID.Measure; +// vofa_justfloat_output(vofa_send_data, 8, &huart1); + + // 根据电机的反馈速度和IMU(如果有)计算真实速度 + EstimateSpeed(); + + //todo: 裁判系统信息移植到消息中心发送 + // 获取裁判系统数据 建议将裁判系统与底盘分离,所以此处数据应使用消息中心发送 + // 发送敌方方颜色id + //chassis_feedback_data.enemy_color = !referee_data->referee_id.Robot_Color; + // 当前只做了17mm热量的数据获取,后续根据robot_def中的宏切换双枪管和英雄42mm的情况 + //chassis_feedback_data.bullet_speed = referee_data->GameRobotState.shooter_id1_17mm_speed_limit; + // chassis_feedback_data.rest_heat = referee_data->PowerHeatData.shooter_heat0; + + // 推送反馈消息 +#ifdef ONE_BOARD + PubPushMessage(chassis_pub, (void *) &chassis_feedback_data); +#endif +#ifdef CHASSIS_BOARD + CANCommSend(chasiss_can_comm, (void *)&chassis_feedback_data); +#endif // CHASSIS_BOARD +} \ No newline at end of file diff --git a/application/chassis/chassis.h b/application/chassis/chassis.h new file mode 100644 index 0000000..ea7c0b4 --- /dev/null +++ b/application/chassis/chassis.h @@ -0,0 +1,16 @@ +#ifndef CHASSIS_H +#define CHASSIS_H + +/** + * @brief 底盘应用初始化,请在开启rtos之前调用(目前会被RobotInit()调用) + * + */ +void ChassisInit(); + +/** + * @brief 底盘应用任务,放入实时系统以一定频率运行 + * + */ +void ChassisTask(); + +#endif // CHASSIS_H \ No newline at end of file diff --git a/application/chassis/chassis.md b/application/chassis/chassis.md new file mode 100644 index 0000000..6f04688 --- /dev/null +++ b/application/chassis/chassis.md @@ -0,0 +1,24 @@ +# chassis + + + +## 工作流程 + +首先进行初始化,`ChasissInit()`会被`RobotInit()`调用,进行裁判系统、底盘电机的初始化。如果为双板模式,则还会初始化IMU,并且将消息订阅者和发布者的初始化改为`CANComm`的初始化。 + +操作系统启动后,工作顺序为: + +1. 从cmd模块获取数据(如果双板则从CANComm获取) +2. 判断当前控制数据的模式,如果为停止则停止所有电机 +3. 根据控制数据,计算底盘的旋转速度 +4. 根据控制数据中yaw电机的编码器值`angle_offset`,将控制数据映射到底盘坐标系下 +5. 进行麦克纳姆轮的运动学解算,得到每个电机的设定值 +6. 获取裁判系统的数据,并根据底盘功率限制对输出进行限幅 +7. 由电机的反馈数据和IMU(如果有),计算底盘当前的真实运动速度 +8. 设置底盘反馈数据,包括运动速度和裁判系统数据 +9. 将反馈数据推送到消息中心(如果双板则通过CANComm发送) + + +### 后续支持平衡底盘 + +新增一个app balance_chassis \ No newline at end of file diff --git a/application/cmd/robot_cmd.c b/application/cmd/robot_cmd.c new file mode 100644 index 0000000..463f60f --- /dev/null +++ b/application/cmd/robot_cmd.c @@ -0,0 +1,451 @@ +// app +#include "robot_def.h" +#include "robot_cmd.h" +// module +#include "remote_control.h" +#include "ins_task.h" +#include "master_process.h" +#include "message_center.h" +#include "general_def.h" +#include "dji_motor.h" +#include "auto_aim.h" +// bsp +#include "bsp_dwt.h" +#include "bsp_log.h" +#include "referee_task.h" + +// 私有宏,自动将编码器转换成角度值 +#define YAW_ALIGN_ANGLE (YAW_CHASSIS_ALIGN_ECD * ECD_ANGLE_COEF_DJI) // 对齐时的角度,0-360 +#define PTICH_HORIZON_ANGLE (PITCH_HORIZON_ECD * ECD_ANGLE_COEF_DJI) // pitch水平时电机的角度,0-360 + +/* cmd应用包含的模块实例指针和交互信息存储*/ +#ifdef GIMBAL_BOARD // 对双板的兼容,条件编译 +#include "can_comm.h" +static CANCommInstance *cmd_can_comm; // 双板通信 +#endif +#ifdef ONE_BOARD +static Publisher_t *chassis_cmd_pub; // 底盘控制消息发布者 +static Subscriber_t *chassis_feed_sub; // 底盘反馈信息订阅者 +#endif // ONE_BOARD + +static Chassis_Ctrl_Cmd_s chassis_cmd_send; // 发送给底盘应用的信息,包括控制信息和UI绘制相关 +static Chassis_Upload_Data_s chassis_fetch_data; // 从底盘应用接收的反馈信息信息,底盘功率枪口热量与底盘运动状态等 + +static RC_ctrl_t *rc_data; // 遥控器数据,初始化时返回 +//static Vision_Recv_s *vision_recv_data; // 视觉接收数据指针,初始化时返回 +//static Vision_Send_s vision_send_data; // 视觉发送数据 +static RecievePacket_t *vision_recv_data; // 视觉接收数据指针,初始化时返回 +static SendPacket_t vision_send_data; // 视觉发送数据 + +//自瞄相关信息 +static Trajectory_Type_t trajectory_cal; +static Aim_Select_Type_t aim_select; +static uint32_t no_find_cnt; // 未发现目标计数 +static uint8_t auto_aim_flag = 0; //辅助瞄准标志位 视野内有目标开启 目标丢失关闭 + +static Publisher_t *gimbal_cmd_pub; // 云台控制消息发布者 +static Subscriber_t *gimbal_feed_sub; // 云台反馈信息订阅者 +static Gimbal_Ctrl_Cmd_s gimbal_cmd_send; // 传递给云台的控制信息 +static Gimbal_Upload_Data_s gimbal_fetch_data; // 从云台获取的反馈信息 + +static Publisher_t *shoot_cmd_pub; // 发射控制消息发布者 +static Subscriber_t *shoot_feed_sub; // 发射反馈信息订阅者 +static Shoot_Ctrl_Cmd_s shoot_cmd_send; // 传递给发射的控制信息 +static Shoot_Upload_Data_s shoot_fetch_data; // 从发射获取的反馈信息 + +static Robot_Status_e robot_state; // 机器人整体工作状态 + +static referee_info_t *referee_data; // 用于获取裁判系统的数据 + +void RobotCMDInit() { + rc_data = RemoteControlInit(&huart3); // 修改为对应串口,注意如果是自研板dbus协议串口需选用添加了反相器的那个 + vision_recv_data = VisionInit(&huart1); // 视觉通信串口 + + referee_data = UITaskInit(&huart6, &ui_data); // 裁判系统初始化,会同时初始化UI + + gimbal_cmd_pub = PubRegister("gimbal_cmd", sizeof(Gimbal_Ctrl_Cmd_s)); + gimbal_feed_sub = SubRegister("gimbal_feed", sizeof(Gimbal_Upload_Data_s)); + shoot_cmd_pub = PubRegister("shoot_cmd", sizeof(Shoot_Ctrl_Cmd_s)); + shoot_feed_sub = SubRegister("shoot_feed", sizeof(Shoot_Upload_Data_s)); + +#ifdef ONE_BOARD // 双板兼容 + chassis_cmd_pub = PubRegister("chassis_cmd", sizeof(Chassis_Ctrl_Cmd_s)); + chassis_feed_sub = SubRegister("chassis_feed", sizeof(Chassis_Upload_Data_s)); +#endif // ONE_BOARD +#ifdef GIMBAL_BOARD + CANComm_Init_Config_s comm_conf = { + .can_config = { + .can_handle = &hcan1, + .tx_id = 0x312, + .rx_id = 0x311, + }, + .recv_data_len = sizeof(Chassis_Upload_Data_s), + .send_data_len = sizeof(Chassis_Ctrl_Cmd_s), + }; + cmd_can_comm = CANCommInit(&comm_conf); +#endif // GIMBAL_BOARD + gimbal_cmd_send.pitch = 0; + + robot_state = ROBOT_READY; // 启动时机器人进入工作模式,后续加入所有应用初始化完成之后再进入 +} + +/** + * @brief 根据gimbal app传回的当前电机角度计算和零位的误差 + * 单圈绝对角度的范围是0~360,说明文档中有图示 + * + */ +static void CalcOffsetAngle() { + // 别名angle提高可读性,不然太长了不好看,虽然基本不会动这个函数 + static float angle; + angle = gimbal_fetch_data.yaw_motor_single_round_angle; // 从云台获取的当前yaw电机单圈角度 +#if YAW_ECD_GREATER_THAN_4096 // 如果大于180度 + if (angle > YAW_ALIGN_ANGLE && angle <= 180.0f + YAW_ALIGN_ANGLE) + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE; + else if (angle > 180.0f + YAW_ALIGN_ANGLE) + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE - 360.0f; + else + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE; +#else // 小于180度 + if (angle > YAW_ALIGN_ANGLE) + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE; + else if (angle <= YAW_ALIGN_ANGLE && angle >= YAW_ALIGN_ANGLE - 180.0f) + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE; + else + chassis_cmd_send.offset_angle = angle - YAW_ALIGN_ANGLE + 360.0f; +#endif +} + +/** + * @brief 控制输入为遥控器(调试时)的模式和控制量设置 + * + */ +static void update_ui_data() +{ + ui_data.chassis_mode = chassis_cmd_send.chassis_mode; + ui_data.gimbal_mode = gimbal_cmd_send.gimbal_mode; + ui_data.friction_mode = shoot_cmd_send.friction_mode; + ui_data.shoot_mode = shoot_cmd_send.shoot_mode; + + ui_data.Chassis_Power_Data.chassis_power_mx = referee_data->GameRobotState.chassis_power_limit; +} + +static void RemoteControlSet() { + // 控制底盘和云台运行模式,云台待添加,云台是否始终使用IMU数据? + if (switch_is_down(rc_data[TEMP].rc.switch_right)) // 右侧开关状态[下],小陀螺 + { + chassis_cmd_send.chassis_mode = CHASSIS_ROTATE; + gimbal_cmd_send.gimbal_mode = GIMBAL_GYRO_MODE; + + } else if (switch_is_mid(rc_data[TEMP].rc.switch_right)) // 右侧开关状态[中],,底盘跟随云台 + { + + chassis_cmd_send.chassis_mode = CHASSIS_FOLLOW_GIMBAL_YAW; + gimbal_cmd_send.gimbal_mode = GIMBAL_GYRO_MODE; + } +// else if (switch_is_up(rc_data[TEMP].rc.switch_right))// 右侧开关状态[上],小陀螺 +// { +// chassis_cmd_send.chassis_mode = CHASSIS_ROTATE; +// gimbal_cmd_send.gimbal_mode = GIMBAL_GYRO_MODE; +// } + + // 云台参数,确定云台控制数据 + if (switch_is_mid(rc_data[TEMP].rc.switch_left) || + (vision_recv_data->x == 0 && vision_recv_data->y == 0 && vision_recv_data->z == 0 + && vision_recv_data->vx == 0 && vision_recv_data->vy == 0 && + vision_recv_data->vz == 0)) // 左侧开关状态为[中],或视觉未识别到目标,纯遥控器拨杆控制 + { + // 待添加,视觉会发来和目标的误差,同样将其转化为total angle的增量进行控制 + // ... + aim_select.suggest_fire = 0; + gimbal_cmd_send.yaw -= 0.0025f * (float) rc_data[TEMP].rc.rocker_l_; + gimbal_cmd_send.pitch -= 0.001f * (float) rc_data[TEMP].rc.rocker_l1; + + if (gimbal_cmd_send.pitch >= PITCH_MAX_ANGLE) gimbal_cmd_send.pitch = PITCH_MAX_ANGLE; + if (gimbal_cmd_send.pitch <= PITCH_MIN_ANGLE) gimbal_cmd_send.pitch = PITCH_MIN_ANGLE; + + + } + // 左侧开关状态为[下],视觉模式 + if (switch_is_down(rc_data[TEMP].rc.switch_left)) { + trajectory_cal.v0 = 25; //弹速30 + if (vision_recv_data->x == 0 && vision_recv_data->y == 0 && vision_recv_data->z == 0 + && vision_recv_data->vx == 0 && vision_recv_data->vy == 0 && vision_recv_data->vz == 0) { + aim_select.suggest_fire = 0; + //未发现目标 + no_find_cnt++; + + if (no_find_cnt >= 2000) { + //gimbal_scan_flag = 1; + //auto_aim_flag = 0; + } + //else + //auto_aim_flag = 1; + } else { + //弹道解算 + no_find_cnt = 0; + auto_aim_flag = 1; + + auto_aim(&aim_select, &trajectory_cal, vision_recv_data); + + VisionSetAim(aim_select.aim_point[0], aim_select.aim_point[1], aim_select.aim_point[2]); + + gimbal_cmd_send.yaw = truncf(gimbal_fetch_data.gimbal_imu_data.YawTotalAngle / 360) + trajectory_cal.cmd_yaw * 180 / PI; + + gimbal_cmd_send.pitch = trajectory_cal.cmd_pitch * 180 / PI; + + float yaw_err = fabsf(gimbal_cmd_send.yaw - gimbal_fetch_data.gimbal_imu_data.Yaw); + if (yaw_err <= 5) //3度 + aim_select.suggest_fire = 1; + else + aim_select.suggest_fire = 0; + } + } + // 云台软件限位 + + // 底盘参数,目前没有加入小陀螺(调试似乎暂时没有必要),系数需要调整,遥控器输入灵敏度 + chassis_cmd_send.vx = 8.0f * (float) rc_data[TEMP].rc.rocker_r_; // _水平方向 + chassis_cmd_send.vy = 8.0f * (float) rc_data[TEMP].rc.rocker_r1; // 1数值方向 + + // 发射参数 + if (switch_is_up(rc_data[TEMP].rc.switch_right)) // 右侧开关状态[上],弹舱打开 + ; // 弹舱舵机控制,待添加servo_motor模块,开启 + else; // 弹舱舵机控制,待添加servo_motor模块,关闭 + + + // 摩擦轮控制,拨轮向上打为负,向下为正 + if (rc_data[TEMP].rc.dial < -100) // 向上超过100,打开摩擦轮 + shoot_cmd_send.friction_mode = FRICTION_ON; + else + shoot_cmd_send.friction_mode = FRICTION_OFF; + + // 拨弹控制,遥控器固定为一种拨弹模式,可自行选择 + if (rc_data[TEMP].rc.dial < -500)// + shoot_cmd_send.load_mode = LOAD_BURSTFIRE; + else + shoot_cmd_send.load_mode = LOAD_STOP; + + // 视觉控制发射 +// if (aim_select.suggest_fire == 1) { +// //shoot_cmd_send.friction_mode = FRICTION_ON; +// //shoot_cmd_send.shoot_mode = SHOOT_ON; +// shoot_cmd_send.load_mode = LOAD_BURSTFIRE; +// } else { +// //shoot_cmd_send.friction_mode = FRICTION_OFF; +// shoot_cmd_send.load_mode = LOAD_STOP; +// } + + // 射频控制,固定每秒1发,后续可以根据左侧拨轮的值大小切换射频, + shoot_cmd_send.shoot_rate = 8; +} + +static void hand_aim_mode() { +// gimbal_cmd_send.yaw += (float) rc_data[TEMP].mouse.x / 660 * 6; // 系数待测 +// gimbal_cmd_send.pitch -= (float) rc_data[TEMP].mouse.y / 660 * 6; + +} + +static void auto_aim_mode() { + trajectory_cal.v0 = 25; //弹速30 + if (vision_recv_data->x == 0 && vision_recv_data->y == 0 && vision_recv_data->z == 0 + && vision_recv_data->vx == 0 && vision_recv_data->vy == 0 && vision_recv_data->vz == 0) { + aim_select.suggest_fire = 0; + //未发现目标 + no_find_cnt++; + + if (no_find_cnt >= 2000) { + //gimbal_scan_flag = 1; + //auto_aim_flag = 0; + } + //else + //auto_aim_flag = 1; + } else { + //弹道解算 + no_find_cnt = 0; + auto_aim_flag = 1; + + auto_aim(&aim_select, &trajectory_cal, vision_recv_data); + + VisionSetAim(aim_select.aim_point[0], aim_select.aim_point[1], aim_select.aim_point[2]); + + gimbal_cmd_send.yaw = truncf(gimbal_fetch_data.gimbal_imu_data.YawTotalAngle / 360) + trajectory_cal.cmd_yaw * 180 / PI; + + gimbal_cmd_send.pitch = trajectory_cal.cmd_pitch * 180 / PI; + + float yaw_err = fabsf(gimbal_cmd_send.yaw - gimbal_fetch_data.gimbal_imu_data.Yaw); + if (yaw_err <= 5) //3度 + aim_select.suggest_fire = 1; + else + aim_select.suggest_fire = 0; + } +} + +/** + * @brief 输入为键鼠时模式和控制量设置 + * + */ +static void MouseKeySet() { + chassis_cmd_send.vy = rc_data[TEMP].key[KEY_PRESS].w * 3000 - rc_data[TEMP].key[KEY_PRESS].s * 3000; // 系数待测 + chassis_cmd_send.vx = rc_data[TEMP].key[KEY_PRESS].a * 3000 - rc_data[TEMP].key[KEY_PRESS].d * 3000; + + gimbal_cmd_send.yaw -= (float) rc_data[TEMP].mouse.x / 660 * 4; // 系数待测 + gimbal_cmd_send.pitch += (float) rc_data[TEMP].mouse.y / 660 * 6; + + + if (rc_data[TEMP].mouse.press_l && (!rc_data[TEMP].mouse.press_r)) // 左键发射模式 + { + if (shoot_cmd_send.friction_mode == FRICTION_ON) { + shoot_cmd_send.shoot_mode = SHOOT_ON; + shoot_cmd_send.load_mode = LOAD_BURSTFIRE; + } + } else if ((!rc_data[TEMP].mouse.press_l) && (!rc_data[TEMP].mouse.press_r)) + { + shoot_cmd_send.load_mode = LOAD_STOP; + + } + if (rc_data[TEMP].mouse.press_r) // 右键自瞄模式 + { + + if ((vision_recv_data->x == 0 && vision_recv_data->y == 0 && vision_recv_data->z == 0 + && vision_recv_data->vx == 0 && vision_recv_data->vy == 0 && + vision_recv_data->vz == 0)) + { + shoot_cmd_send.load_mode = LOAD_STOP; + } + + + else { + auto_aim_mode(); + if (aim_select.suggest_fire == 1 && rc_data[TEMP].mouse.press_l && + shoot_cmd_send.friction_mode == FRICTION_ON) { + shoot_cmd_send.shoot_mode = SHOOT_ON; + shoot_cmd_send.load_mode = LOAD_BURSTFIRE; + } else { + shoot_cmd_send.load_mode = LOAD_STOP; + } + } + } + + + switch (rc_data[TEMP].key_count[KEY_PRESS][Key_R] % 2) // R键手动刷新UI + { + case 1: + MyUIInit(); + rc_data[TEMP].key_count[KEY_PRESS][Key_R]++; + break; + default: + break; + } + switch (rc_data[TEMP].key_count[KEY_PRESS][Key_V] % 2) // V键开关红点激光 + { + case 0: + HAL_GPIO_WritePin(GPIOC,GPIO_PIN_8,GPIO_PIN_SET); + break; + default: + HAL_GPIO_WritePin(GPIOC,GPIO_PIN_8,GPIO_PIN_RESET); + break; + } + switch (rc_data[TEMP].key_count[KEY_PRESS][Key_F] % 2) // F键开关摩擦轮 + { + case 0: +// shoot_cmd_send.shoot_mode = SHOOT_OFF; + shoot_cmd_send.friction_mode = FRICTION_OFF; + break; + default: + shoot_cmd_send.shoot_mode = SHOOT_ON; + shoot_cmd_send.friction_mode = FRICTION_ON; + break; + } + switch (rc_data[TEMP].key_count[KEY_PRESS][Key_E] % 2) // E键开关小陀螺 + { + case 0: + chassis_cmd_send.chassis_mode = CHASSIS_FOLLOW_GIMBAL_YAW; + gimbal_cmd_send.gimbal_mode = GIMBAL_FREE_MODE; + break; + default: + chassis_cmd_send.chassis_mode = CHASSIS_ROTATE; + gimbal_cmd_send.gimbal_mode = GIMBAL_GYRO_MODE; + break; + } + + switch (rc_data[TEMP].key[KEY_PRESS].shift) // 待添加 按shift允许超功率 消耗缓冲能量 + { + case 1: + + break; + + default: + + break; + } + + shoot_cmd_send.shoot_rate = 8; +} + +/** + * @brief 紧急停止,包括遥控器左上侧拨轮打满/重要模块离线/双板通信失效等 + * 停止的阈值'300'待修改成合适的值,或改为开关控制. + * + * @todo 后续修改为遥控器离线则电机停止(关闭遥控器急停),通过给遥控器模块添加daemon实现 + * + */ +static void EmergencyHandler() { + // 拨轮的向下拨超过一半进入急停模式.注意向打时下拨轮是正 + if (rc_data[TEMP].rc.dial > 300 || robot_state == ROBOT_STOP) // 还需添加重要应用和模块离线的判断 + { + robot_state = ROBOT_STOP; + gimbal_cmd_send.gimbal_mode = GIMBAL_ZERO_FORCE; + chassis_cmd_send.chassis_mode = CHASSIS_ZERO_FORCE; + shoot_cmd_send.shoot_mode = SHOOT_OFF; + shoot_cmd_send.friction_mode = FRICTION_OFF; + shoot_cmd_send.load_mode = LOAD_STOP; + LOGERROR("[CMD] emergency stop!"); + } + // 遥控器右侧开关为[上],恢复正常运行 + if (switch_is_up(rc_data[TEMP].rc.switch_right)) { + robot_state = ROBOT_READY; + shoot_cmd_send.shoot_mode = SHOOT_ON; + LOGINFO("[CMD] reinstate, robot ready"); + } +} + +/* 机器人核心控制任务,200Hz频率运行(必须高于视觉发送频率) */ +void RobotCMDTask() { + // 从其他应用获取回传数据 +#ifdef ONE_BOARD + SubGetMessage(chassis_feed_sub, (void *) &chassis_fetch_data); +#endif // ONE_BOARD +#ifdef GIMBAL_BOARD + chassis_fetch_data = *(Chassis_Upload_Data_s *)CANCommGet(cmd_can_comm); +#endif // GIMBAL_BOARD + SubGetMessage(shoot_feed_sub, &shoot_fetch_data); + SubGetMessage(gimbal_feed_sub, &gimbal_fetch_data); + update_ui_data(); + // 根据gimbal的反馈值计算云台和底盘正方向的夹角,不需要传参,通过static私有变量完成 + CalcOffsetAngle(); + // 根据遥控器左侧开关,确定当前使用的控制模式为遥控器调试还是键鼠 + if (switch_is_down(rc_data[TEMP].rc.switch_left) || + switch_is_mid(rc_data[TEMP].rc.switch_left)) // 遥控器左侧开关状态为[下],[中],遥控器控制 + RemoteControlSet(); + else if (switch_is_up(rc_data[TEMP].rc.switch_left)) // 遥控器左侧开关状态为[上],键盘控制 + MouseKeySet(); + + EmergencyHandler(); // 处理模块离线和遥控器急停等紧急情况 + + // 设置视觉发送数据,还需增加加速度和角速度数据 + VisionSetFlag(referee_data->referee_id.Robot_Color); + + //根据裁判系统反馈确定底盘功率上限 + chassis_cmd_send.chassis_power_limit = referee_data->GameRobotState.chassis_power_limit; + + // 推送消息,双板通信,视觉通信等 + // 其他应用所需的控制数据在remotecontrolsetmode和mousekeysetmode中完成设置 +#ifdef ONE_BOARD + PubPushMessage(chassis_cmd_pub, (void *) &chassis_cmd_send); +#endif // ONE_BOARD +#ifdef GIMBAL_BOARD + CANCommSend(cmd_can_comm, (void *)&chassis_cmd_send); +#endif // GIMBAL_BOARD + PubPushMessage(shoot_cmd_pub, (void *) &shoot_cmd_send); + PubPushMessage(gimbal_cmd_pub, (void *) &gimbal_cmd_send); + VisionSend(&vision_send_data); +} diff --git a/application/cmd/robot_cmd.h b/application/cmd/robot_cmd.h new file mode 100644 index 0000000..f42e9ce --- /dev/null +++ b/application/cmd/robot_cmd.h @@ -0,0 +1,17 @@ +#ifndef ROBOT_CMD_H +#define ROBOT_CMD_H + + +/** + * @brief 机器人核心控制任务初始化,会被RobotInit()调用 + * + */ +void RobotCMDInit(); + +/** + * @brief 机器人核心控制任务,200Hz频率运行(必须高于视觉发送频率) + * + */ +void RobotCMDTask(); + +#endif // !ROBOT_CMD_H \ No newline at end of file diff --git a/application/cmd/robot_cmd.md b/application/cmd/robot_cmd.md new file mode 100644 index 0000000..c8c9d16 --- /dev/null +++ b/application/cmd/robot_cmd.md @@ -0,0 +1,50 @@ +# robot_cmd + +neozng1@hnu.edu.cn
+ +## 运行流程 + +运行流程可以很直观的从`RobotCMDTask()`中看出。 + +1. 首先通过消息订阅机制,获取其他应用的反馈信息 +2. 使用`CalcOffsetAngle()`计算底盘和云台的offset angle(使得底盘始终获知当前的正方向) +3. 接着根据当前是通过键鼠or遥控器控制,调用对应的函数,将控制指令量化为具体的控制信息 +4. 得到控制信息之后,先不急着发布,而是检测重要的模块和应用是否掉线或出现异常,以及遥控器是否进入紧急停止模式,如果以上情况发生,那么将所有的控制信息都置零,即让电机和其他执行单元保持静止。 +5. 最后通过pubsub机制,把具体的控制信息发布到对应话题,让其他应用获取。若为双板,则将原本要推送给底盘的信息通过CANComm进行发送。 + + + +### 遥控器控制模式: + +拨轮向下打到底进入紧急停止模式(后续改为关闭遥控器停止,利用daemon);拨轮向上打开启摩擦轮,超过一半开始发射(速度环,连发) + +左侧开关: +- 上:键鼠控制 +- 中:视觉控制(没有识别到目标的时候仍然可以使用遥控器控制云台) +- 下:遥控器控制 + +右侧开关: +- 上:弹舱开 +- 中:底盘云台分离(底盘不旋转,全向移动) +- 下:底盘跟随云台 + +### 键鼠控制模式: + +遥控器左侧开关拨到最上方,进入键鼠控制模式,此时不会响应遥控器遥感和拨轮的输入. + +前后左右:WSAD + +开关弹舱盖:R + +小陀螺:Q + +发射:鼠标左键 + +自瞄:鼠标右键 + + + + + + + diff --git a/application/gimbal/gimbal.c b/application/gimbal/gimbal.c new file mode 100644 index 0000000..a7c60f8 --- /dev/null +++ b/application/gimbal/gimbal.c @@ -0,0 +1,200 @@ +#include "gimbal.h" +#include "robot_def.h" +#include "dji_motor.h" +#include "ins_task.h" +#include "message_center.h" +#include "general_def.h" +#include "bmi088.h" +#include "vofa.h" + +static attitude_t *gimba_IMU_data; // 云台IMU数据 +static DJIMotorInstance *yaw_motor, *pitch_motor; + +static Publisher_t *gimbal_pub; // 云台应用消息发布者(云台反馈给cmd) +static Subscriber_t *gimbal_sub; // cmd控制消息订阅者 +static Gimbal_Upload_Data_s gimbal_feedback_data; // 回传给cmd的云台状态信息 +static Gimbal_Ctrl_Cmd_s gimbal_cmd_recv; // 来自cmd的控制信息 + +static float gravity_current = 0; +static void LimitPitchAngleAuto() { + /** 注意电机角度与陀螺仪角度方向是否相同 + * 目前 add > 0, 向下转动 + * 电机角度值减小 + * 陀螺仪角度值增大 + **/ + float add; + float angle_set; + + add = gimbal_cmd_recv.pitch - gimba_IMU_data->Pitch; + + if(pitch_motor->measure.angle_single_round - add > PITCH_MAX_RELATIVE_ANGLE){ + if(add < 0.0f ){ + add = PITCH_MAX_ANGLE - pitch_motor->measure.angle_single_round; + } + }else if(pitch_motor->measure.angle_single_round - add < PITCH_MIN_RELATIVE_ANGLE){ + if(add > 0.0f){ + add = PITCH_MIN_RELATIVE_ANGLE - pitch_motor->measure.angle_single_round; + } + } + angle_set = gimba_IMU_data->Pitch; + DJIMotorSetRef(pitch_motor, angle_set+add); +} + +void GimbalInit() { + gimba_IMU_data = INS_Init(); // IMU先初始化,获取姿态数据指针赋给yaw电机的其他数据来源 + // YAW + Motor_Init_Config_s yaw_config = { + .can_init_config = { + .can_handle = &hcan1, + .tx_id = 1, + }, + .controller_param_init_config = { + .angle_PID = { + .Kp = 1.5f,//4 + .Ki = 0.0f, + .Kd = 0.1f, + .DeadBand = 0.1f, + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .IntegralLimit = 100, + .MaxOut = 500, + }, + .speed_PID = { + .Kp = 3300, // 2480 + .Ki = 0.0f, // 200 + .Kd = 2.0f, + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .IntegralLimit = 1200, + .MaxOut = 20000, + }, + .other_angle_feedback_ptr = &gimba_IMU_data->YawTotalAngle, + // 还需要增加角速度额外反馈指针,注意方向,ins_task.md中有c板的bodyframe坐标系说明 + .other_speed_feedback_ptr = &gimba_IMU_data->Gyro[2], + }, + .controller_setting_init_config = { + .angle_feedback_source = OTHER_FEED, + .speed_feedback_source = OTHER_FEED, + .outer_loop_type = ANGLE_LOOP, + .close_loop_type = SPEED_LOOP | ANGLE_LOOP, + .motor_reverse_flag = MOTOR_DIRECTION_NORMAL, + }, + .motor_type = GM6020, + .motor_control_type = CURRENT_CONTROL + }; + // PITCH + Motor_Init_Config_s pitch_config = { + .can_init_config = { + .can_handle = &hcan2, + .tx_id = 1, + }, + .controller_param_init_config = { + .angle_PID = { + .Kp = 2.5f, + .Ki = 0.0f, + .Kd = 0.1f, + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .IntegralLimit = 100, + .MaxOut = 500, + }, + .speed_PID = { + .Kp = 2900, + .Ki = 0.0f, + .Kd = 0.01f, // 0 + .Improve = PID_Trapezoid_Intergral | PID_Integral_Limit | PID_Derivative_On_Measurement, + .IntegralLimit = 2500, + .MaxOut = 20000, + }, + .other_angle_feedback_ptr = &gimba_IMU_data->Roll, + // 还需要增加角速度额外反馈指针,注意方向,ins_task.md中有c板的bodyframe坐标系说明 + .other_speed_feedback_ptr = &gimba_IMU_data->Gyro[1], + .current_feedforward_ptr = &gravity_current, + }, + .controller_setting_init_config = { + .angle_feedback_source = OTHER_FEED, + .speed_feedback_source = OTHER_FEED, + .outer_loop_type = ANGLE_LOOP, + .close_loop_type = SPEED_LOOP | ANGLE_LOOP, + .motor_reverse_flag = MOTOR_DIRECTION_REVERSE, + .feedforward_flag = CURRENT_FEEDFORWARD, + .feedback_reverse_flag = FEEDBACK_DIRECTION_REVERSE + }, + .motor_type = GM6020, + .motor_control_type = CURRENT_CONTROL + }; + // 电机对total_angle闭环,上电时为零,会保持静止,收到遥控器数据再动 + yaw_motor = DJIMotorInit(&yaw_config); + pitch_motor = DJIMotorInit(&pitch_config); + + gimbal_pub = PubRegister("gimbal_feed", sizeof(Gimbal_Upload_Data_s)); + gimbal_sub = SubRegister("gimbal_cmd", sizeof(Gimbal_Ctrl_Cmd_s)); +} + +/* 机器人云台控制核心任务,后续考虑只保留IMU控制,不再需要电机的反馈 */ +void GimbalTask() { + //红点激光 + //HAL_GPIO_WritePin(GPIOC,GPIO_PIN_8,GPIO_PIN_SET); + // 获取云台控制数据 + // 后续增加未收到数据的处理 + SubGetMessage(gimbal_sub, &gimbal_cmd_recv); + + // @todo:现在已不再需要电机反馈,实际上可以始终使用IMU的姿态数据来作为云台的反馈,yaw电机的offset只是用来跟随底盘 + // 根据控制模式进行电机反馈切换和过渡,视觉模式在robot_cmd模块就已经设置好,gimbal只看yaw_ref和pitch_ref + switch (gimbal_cmd_recv.gimbal_mode) { + // 停止 + case GIMBAL_ZERO_FORCE: + DJIMotorStop(yaw_motor); + DJIMotorStop(pitch_motor); + break; + // 使用陀螺仪的反馈,底盘根据yaw电机的offset跟随云台或视觉模式采用 + case GIMBAL_GYRO_MODE: // 后续只保留此模式 + DJIMotorEnable(yaw_motor); + DJIMotorEnable(pitch_motor); + DJIMotorChangeFeed(yaw_motor, ANGLE_LOOP, OTHER_FEED); + DJIMotorChangeFeed(yaw_motor, SPEED_LOOP, OTHER_FEED); + DJIMotorChangeFeed(pitch_motor, ANGLE_LOOP, OTHER_FEED); + DJIMotorChangeFeed(pitch_motor, SPEED_LOOP, OTHER_FEED); + DJIMotorSetRef(yaw_motor, gimbal_cmd_recv.yaw); // yaw和pitch会在robot_cmd中处理好多圈和单圈 + DJIMotorSetRef(pitch_motor, gimbal_cmd_recv.pitch); + //LimitPitchAngleAuto(); + break; + // 云台自由模式,使用编码器反馈,底盘和云台分离,仅云台旋转,一般用于调整云台姿态(英雄吊射等)/能量机关 + case GIMBAL_FREE_MODE: // 后续删除,或加入云台追地盘的跟随模式(响应速度更快) + DJIMotorEnable(yaw_motor); + DJIMotorEnable(pitch_motor); + DJIMotorChangeFeed(yaw_motor, ANGLE_LOOP, OTHER_FEED); + DJIMotorChangeFeed(yaw_motor, SPEED_LOOP, OTHER_FEED); + DJIMotorChangeFeed(pitch_motor, ANGLE_LOOP, OTHER_FEED); + DJIMotorChangeFeed(pitch_motor, SPEED_LOOP, OTHER_FEED); + DJIMotorSetRef(yaw_motor, gimbal_cmd_recv.yaw); // yaw和pitch会在robot_cmd中处理好多圈和单圈 + DJIMotorSetRef(pitch_motor, gimbal_cmd_recv.pitch); + break; + default: + break; + } + + // 在合适的地方添加pitch重力补偿前馈力矩 + // 根据IMU姿态/pitch电机角度反馈计算出当前配重下的重力矩 + // ... + float theta = - gimba_IMU_data->Roll/180*PI; + gravity_current = (5000)*arm_cos_f32(theta); + +// float vofa_send_data[4]; +// vofa_send_data[0] = pitch_motor->motor_controller.speed_PID.Ref; +// vofa_send_data[1] = pitch_motor->motor_controller.speed_PID.Measure; +// vofa_send_data[2] = pitch_motor->motor_controller.angle_PID.Ref; +// vofa_send_data[3] = pitch_motor->motor_controller.angle_PID.Measure; +// vofa_justfloat_output(vofa_send_data, 16, &huart1); +// float vofa_send_data[4]; +// vofa_send_data[0] = yaw_motor->motor_controller.speed_PID.Ref; +// vofa_send_data[1] = yaw_motor->motor_controller.speed_PID.Measure; +// vofa_send_data[2] = yaw_motor->motor_controller.angle_PID.Ref; +// vofa_send_data[3] = yaw_motor->motor_controller.angle_PID.Measure; +// vofa_justfloat_output(vofa_send_data, 16, &huart1); + + + // 设置反馈数据,主要是imu和yaw的ecd + gimbal_feedback_data.gimbal_imu_data = *gimba_IMU_data; + gimbal_feedback_data.yaw_motor_single_round_angle = yaw_motor->measure.angle_single_round; + + // 推送消息 + PubPushMessage(gimbal_pub, (void *) &gimbal_feedback_data); +} \ No newline at end of file diff --git a/application/gimbal/gimbal.h b/application/gimbal/gimbal.h new file mode 100644 index 0000000..0bcc37e --- /dev/null +++ b/application/gimbal/gimbal.h @@ -0,0 +1,16 @@ +#ifndef GIMBAL_H +#define GIMBAL_H + +/** + * @brief 初始化云台,会被RobotInit()调用 + * + */ +void GimbalInit(); + +/** + * @brief 云台任务 + * + */ +void GimbalTask(); + +#endif // GIMBAL_H \ No newline at end of file diff --git a/application/gimbal/gimbal.md b/application/gimbal/gimbal.md new file mode 100644 index 0000000..d83ca3c --- /dev/null +++ b/application/gimbal/gimbal.md @@ -0,0 +1,13 @@ +# gimbal + + + +## 工作流程 + +初始化pitch和yaw电机以及一个imu。订阅gimbal_cmd消息(来自robot_cmd)并发布gimbal_feed话题。 + +1. 从消息中心获取gimbal_cmd话题的消息 +2. 根据消息中的控制模式进行模式切换,如果急停则关闭所有电机 +3. 由设定的模式,进行电机反馈数据来源的切换,修改反馈数据指针,设置前馈控制数据指针等。 +4. 设置反馈数据,包括yaw电机的绝对角度和imu数据 +5. 推送反馈数据到gimbal_feed话题下 \ No newline at end of file diff --git a/application/robot.c b/application/robot.c new file mode 100644 index 0000000..3102179 --- /dev/null +++ b/application/robot.c @@ -0,0 +1,60 @@ +#include "bsp_init.h" +#include "robot.h" +#include "robot_def.h" +#include "robot_task.h" + +// 编译warning,提醒开发者修改机器人参数 +#ifndef ROBOT_DEF_PARAM_WARNING +#define ROBOT_DEF_PARAM_WARNING +#pragma message "check if you have configured the parameters in robot_def.h, IF NOT, please refer to the comments AND DO IT, otherwise the robot will have FATAL ERRORS!!!" +#endif // !ROBOT_DEF_PARAM_WARNING + +#if defined(ONE_BOARD) || defined(CHASSIS_BOARD) +#include "chassis.h" +#endif + +#if defined(ONE_BOARD) || defined(GIMBAL_BOARD) +#include "gimbal.h" +#include "shoot.h" +#include "robot_cmd.h" +#endif + + +void RobotInit() +{ + // 关闭中断,防止在初始化过程中发生中断 + // 请不要在初始化过程中使用中断和延时函数! + // 若必须,则只允许使用DWT_Delay() + __disable_irq(); + + BSPInit(); + +#if defined(ONE_BOARD) || defined(GIMBAL_BOARD) + RobotCMDInit(); + GimbalInit(); + ShootInit(); +#endif + +#if defined(ONE_BOARD) || defined(CHASSIS_BOARD) + ChassisInit(); +#endif + + OSTaskInit(); // 创建基础任务 + + // 初始化完成,开启中断 + __enable_irq(); +} + +void RobotTask() +{ +#if defined(ONE_BOARD) || defined(GIMBAL_BOARD) + RobotCMDTask(); + GimbalTask(); + ShootTask(); +#endif + +#if defined(ONE_BOARD) || defined(CHASSIS_BOARD) + ChassisTask(); +#endif + +} \ No newline at end of file diff --git a/application/robot.h b/application/robot.h new file mode 100644 index 0000000..36f9809 --- /dev/null +++ b/application/robot.h @@ -0,0 +1,18 @@ +#ifndef ROBOT_H +#define ROBOT_H + +/* Robot利用robot_def.h中的宏对不同的机器人进行了大量的兼容,同时兼容了两个开发板(云台板和底盘板)的配置 */ + +/** + * @brief 机器人初始化,请在开启rtos之前调用.这也是唯一需要放入main函数的函数 + * + */ +void RobotInit(); + +/** + * @brief 机器人任务,放入实时系统以一定频率运行,内部会调用各个应用的任务 + * + */ +void RobotTask(); + +#endif \ No newline at end of file diff --git a/application/robot_def.h b/application/robot_def.h new file mode 100644 index 0000000..64ba525 --- /dev/null +++ b/application/robot_def.h @@ -0,0 +1,221 @@ +/** + * @file robot_def.h + * @author NeoZeng neozng1@hnu.edu.cn + * @author Even + * @version 0.1 + * @date 2022-12-02 + * + * @copyright Copyright (c) HNU YueLu EC 2022 all rights reserved + * + */ +#pragma once // 可以用#pragma once代替#ifndef ROBOT_DEF_H(header guard) +#ifndef ROBOT_DEF_H +#define ROBOT_DEF_H + +#include "ins_task.h" +#include "master_process.h" +#include "stdint.h" + +/* 开发板类型定义,烧录时注意不要弄错对应功能;修改定义后需要重新编译,只能存在一个定义! */ +#define ONE_BOARD // 单板控制整车 +// #define CHASSIS_BOARD //底盘板 +// #define GIMBAL_BOARD //云台板 + +#define VISION_USE_VCP // 使用虚拟串口发送视觉数据 +// #define VISION_USE_UART // 使用串口发送视觉数据 + +/* 机器人重要参数定义,注意根据不同机器人进行修改,浮点数需要以.0或f结尾,无符号以u结尾 */ +// 云台参数 +#define YAW_CHASSIS_ALIGN_ECD 6822 // 云台和底盘对齐指向相同方向时的电机编码器值,若对云台有机械改动需要修改 +#define YAW_ECD_GREATER_THAN_4096 0 // ALIGN_ECD值是否大于4096,是为1,否为0;用于计算云台偏转角度 +#define PITCH_HORIZON_ECD 4422 // 云台处于水平位置时编码器值,若对云台有机械改动需要修改 +#define PITCH_MAX_ANGLE 20 // 云台竖直方向最大角度 (注意反馈如果是陀螺仪,则填写陀螺仪的角度) +#define PITCH_MIN_ANGLE -30 // 云台竖直方向最小角度 (注意反馈如果是陀螺仪,则填写陀螺仪的角度) + +#define PITCH_MAX_RELATIVE_ANGLE 123 // 云台相对底盘最大角度 +#define PITCH_MIN_RELATIVE_ANGLE 80 // 云台相对底盘最小角度 + + +// 发射参数 +#define ONE_BULLET_DELTA_ANGLE 45 // 发射一发弹丸拨盘转动的距离,由机械设计图纸给出 +#define REDUCTION_RATIO_LOADER 49.0f // 拨盘电机的减速比,英雄需要修改为3508的19.0f +#define NUM_PER_CIRCLE 8 // 拨盘一圈的装载量 +// 机器人底盘修改的参数,单位为m(米) +#define WHEEL_BASE 0.1f // 纵向轴距(前进后退方向) +#define TRACK_WIDTH 0.1f // 横向轮距(左右平移方向) +#define CENTER_GIMBAL_OFFSET_X 0 // 云台旋转中心距底盘几何中心的距离,前后方向,云台位于正中心时默认设为0 +#define CENTER_GIMBAL_OFFSET_Y 0 // 云台旋转中心距底盘几何中心的距离,左右方向,云台位于正中心时默认设为0 +#define RADIUS_WHEEL 0.08f // 轮子半径 +#define REDUCTION_RATIO_WHEEL 19.0f // 电机减速比,因为编码器量测的是转子的速度而不是输出轴的速度故需进行转换 + +#define GYRO2GIMBAL_DIR_YAW 1 // 陀螺仪数据相较于云台的yaw的方向,1为相同,-1为相反 +#define GYRO2GIMBAL_DIR_PITCH 1 // 陀螺仪数据相较于云台的pitch的方向,1为相同,-1为相反 +#define GYRO2GIMBAL_DIR_ROLL 1 // 陀螺仪数据相较于云台的roll的方向,1为相同,-1为相反 + +// 检查是否出现主控板定义冲突,只允许一个开发板定义存在,否则编译会自动报错 +#if (defined(ONE_BOARD) && defined(CHASSIS_BOARD)) || \ + (defined(ONE_BOARD) && defined(GIMBAL_BOARD)) || \ + (defined(CHASSIS_BOARD) && defined(GIMBAL_BOARD)) +#error Conflict board definition! You can only define one board type. +#endif + +#pragma pack(1) // 压缩结构体,取消字节对齐,下面的数据都可能被传输 +/* -------------------------基本控制模式和数据类型定义-------------------------*/ +/** + * @brief 这些枚举类型和结构体会作为CMD控制数据和各应用的反馈数据的一部分 + * + */ +// 机器人状态 +typedef enum +{ + ROBOT_STOP = 0, + ROBOT_READY, +} Robot_Status_e; + +// 应用状态 +typedef enum +{ + APP_OFFLINE = 0, + APP_ONLINE, + APP_ERROR, +} App_Status_e; + +// 底盘模式设置 +/** + * @brief 后续考虑修改为云台跟随底盘,而不是让底盘去追云台,云台的惯量比底盘小. + * + */ +typedef enum +{ + CHASSIS_ZERO_FORCE = 0, // 电流零输入 + CHASSIS_ROTATE, // 小陀螺模式 + CHASSIS_NO_FOLLOW, // 不跟随,允许全向平移 + CHASSIS_FOLLOW_GIMBAL_YAW, // 跟随模式,底盘叠加角度环控制 +} chassis_mode_e; + +// 云台模式设置 +typedef enum +{ + GIMBAL_ZERO_FORCE = 0, // 电流零输入 + GIMBAL_FREE_MODE, // 云台自由运动模式,即与底盘分离(底盘此时应为NO_FOLLOW)反馈值为电机total_angle;似乎可以改为全部用IMU数据? + GIMBAL_GYRO_MODE, // 云台陀螺仪反馈模式,反馈值为陀螺仪pitch,total_yaw_angle,底盘可以为小陀螺和跟随模式 +} gimbal_mode_e; + +// 发射模式设置 +typedef enum +{ + SHOOT_OFF = 0, + SHOOT_ON, +} shoot_mode_e; +typedef enum +{ + FRICTION_OFF = 0, // 摩擦轮关闭 + FRICTION_ON, // 摩擦轮开启 +} friction_mode_e; + +typedef enum +{ + LID_OPEN = 0, // 弹舱盖打开 + LID_CLOSE, // 弹舱盖关闭 +} lid_mode_e; + +typedef enum +{ + LOAD_STOP = 0, // 停止发射 + LOAD_REVERSE, // 反转 + LOAD_1_BULLET, // 单发 + LOAD_3_BULLET, // 三发 + LOAD_BURSTFIRE, // 连发 +} loader_mode_e; + +// 功率限制,从裁判系统获取,是否有必要保留? +typedef struct +{ // 功率控制 + uint16_t chassis_power_mx; + uint16_t last_power_mx; + +} Chassis_Power_Data_s; + +/* ----------------CMD应用发布的控制数据,应当由gimbal/chassis/shoot订阅---------------- */ +/** + * @brief 对于双板情况,遥控器和pc在云台,裁判系统在底盘 + * + */ +// cmd发布的底盘控制数据,由chassis订阅 +typedef struct +{ + // 控制部分 + float vx; // 前进方向速度 + float vy; // 横移方向速度 + float wz; // 旋转速度 + float offset_angle; // 底盘和归中位置的夹角 + chassis_mode_e chassis_mode; + int chassis_speed_buff; + + uint16_t chassis_power_limit; + // UI部分 + // ... + +} Chassis_Ctrl_Cmd_s; + +// cmd发布的云台控制数据,由gimbal订阅 +typedef struct +{ // 云台角度控制 + float yaw; + float pitch; + float chassis_rotate_wz; + + gimbal_mode_e gimbal_mode; +} Gimbal_Ctrl_Cmd_s; + +// cmd发布的发射控制数据,由shoot订阅 +typedef struct +{ + shoot_mode_e shoot_mode; + loader_mode_e load_mode; + lid_mode_e lid_mode; + friction_mode_e friction_mode; + Bullet_Speed_e bullet_speed; // 弹速枚举 + uint8_t rest_heat; + float shoot_rate; // 连续发射的射频,unit per s,发/秒 +} Shoot_Ctrl_Cmd_s; + +/* ----------------gimbal/shoot/chassis发布的反馈数据----------------*/ +/** + * @brief 由cmd订阅,其他应用也可以根据需要获取. + * + */ + +typedef struct +{ +#if defined(CHASSIS_BOARD) || defined(GIMBAL_BOARD) // 非单板的时候底盘还将imu数据回传(若有必要) + // attitude_t chassis_imu_data; +#endif + // 后续增加底盘的真实速度 + // float real_vx; + // float real_vy; + // float real_wz; + + uint8_t rest_heat; // 剩余枪口热量 + Bullet_Speed_e bullet_speed; // 弹速限制 + Enemy_Color_e enemy_color; // 0 for red, 1 for blue + Chassis_Power_Data_s chassis_power_mx; +} Chassis_Upload_Data_s; + + +typedef struct +{ + attitude_t gimbal_imu_data; + float yaw_motor_single_round_angle; +} Gimbal_Upload_Data_s; + +typedef struct +{ + // code to go here + // ... + uint8_t stalled_flag; //堵转标志 +} Shoot_Upload_Data_s; + +#pragma pack() // 开启字节对齐,结束前面的#pragma pack(1) + +#endif // !ROBOT_DEF_H \ No newline at end of file diff --git a/application/robot_task.h b/application/robot_task.h new file mode 100644 index 0000000..252e77b --- /dev/null +++ b/application/robot_task.h @@ -0,0 +1,139 @@ +/* 注意该文件应只用于任务初始化,只能被robot.c包含*/ +#pragma once + +#include "FreeRTOS.h" +#include "task.h" +#include "main.h" +#include "cmsis_os.h" + +#include "robot.h" +#include "ins_task.h" +#include "motor_task.h" +#include "referee_task.h" +#include "master_process.h" +#include "daemon.h" +#include "HT04.h" +#include "buzzer.h" + +#include "bsp_log.h" + +osThreadId insTaskHandle; +osThreadId robotTaskHandle; +osThreadId motorTaskHandle; +osThreadId daemonTaskHandle; +osThreadId uiTaskHandle; + +void StartINSTASK(void const *argument); +void StartMOTORTASK(void const *argument); +void StartDAEMONTASK(void const *argument); +void StartROBOTTASK(void const *argument); +void StartUITASK(void const *argument); + +/** + * @brief 初始化机器人任务,所有持续运行的任务都在这里初始化 + * + */ +void OSTaskInit() +{ + osThreadDef(instask, StartINSTASK, osPriorityAboveNormal, 0, 1024); + insTaskHandle = osThreadCreate(osThread(instask), NULL); // 由于是阻塞读取传感器,为姿态解算设置较高优先级,确保以1khz的频率执行 + // 后续修改为读取传感器数据准备好的中断处理, + + osThreadDef(motortask, StartMOTORTASK, osPriorityNormal, 0, 256); + motorTaskHandle = osThreadCreate(osThread(motortask), NULL); + + osThreadDef(daemontask, StartDAEMONTASK, osPriorityNormal, 0, 128); + daemonTaskHandle = osThreadCreate(osThread(daemontask), NULL); + + osThreadDef(robottask, StartROBOTTASK, osPriorityNormal, 0, 1024); + robotTaskHandle = osThreadCreate(osThread(robottask), NULL); + + osThreadDef(uitask, StartUITASK, osPriorityNormal, 0, 512); + uiTaskHandle = osThreadCreate(osThread(uitask), NULL); + + HTMotorControlInit(); // 没有注册HT电机则不会执行 +} + +__attribute__((noreturn)) void StartINSTASK(void const *argument) +{ + static float ins_start; + static float ins_dt; + INS_Init(); // 确保BMI088被正确初始化. + LOGINFO("[freeRTOS] INS Task Start"); + for (;;) + { + // 1kHz + ins_start = DWT_GetTimeline_ms(); + INS_Task(); + ins_dt = DWT_GetTimeline_ms() - ins_start; + if (ins_dt > 1) + LOGERROR("[freeRTOS] INS Task is being DELAY! dt = [%f]", &ins_dt); + VisionSend(); // 解算完成后发送视觉数据,但是当前的实现不太优雅,后续若添加硬件触发需要重新考虑结构的组织 + osDelay(1); + } +} + +__attribute__((noreturn)) void StartMOTORTASK(void const *argument) +{ + static float motor_dt; + static float motor_start; + LOGINFO("[freeRTOS] MOTOR Task Start"); + for (;;) + { + motor_start = DWT_GetTimeline_ms(); + MotorControlTask(); + motor_dt = DWT_GetTimeline_ms() - motor_start; + if (motor_dt > 1) + LOGERROR("[freeRTOS] MOTOR Task is being DELAY! dt = [%f]", &motor_dt); + osDelay(1); + } +} + +__attribute__((noreturn)) void StartDAEMONTASK(void const *argument) +{ + static float daemon_dt; + static float daemon_start; + BuzzerInit(); + LOGINFO("[freeRTOS] Daemon Task Start"); + for (;;) + { + // 100Hz + daemon_start = DWT_GetTimeline_ms(); + DaemonTask(); + BuzzerTask(); + daemon_dt = DWT_GetTimeline_ms() - daemon_start; + if (daemon_dt > 10) + LOGERROR("[freeRTOS] Daemon Task is being DELAY! dt = [%f]", &daemon_dt); + osDelay(10); + } +} + +__attribute__((noreturn)) void StartROBOTTASK(void const *argument) +{ + static float robot_dt; + static float robot_start; + LOGINFO("[freeRTOS] ROBOT core Task Start"); + // 200Hz-500Hz,若有额外的控制任务如平衡步兵可能需要提升至1kHz + for (;;) + { + robot_start = DWT_GetTimeline_ms(); + RobotTask(); + robot_dt = DWT_GetTimeline_ms() - robot_start; + if (robot_dt > 5) + LOGERROR("[freeRTOS] ROBOT core Task is being DELAY! dt = [%f]", &robot_dt); + osDelay(5); + } +} + +__attribute__((noreturn)) void StartUITASK(void const *argument) +{ + LOGINFO("[freeRTOS] UI Task Start"); + MyUIInit(); + LOGINFO("[freeRTOS] UI Init Done, communication with ref has established"); + for (;;) + { + // 每给裁判系统发送一包数据会挂起一次,详见UITask函数的refereeSend() + UITask(); + osDelay(1); // 即使没有任何UI需要刷新,也挂起一次,防止卡在UITask中无法切换 + } +} diff --git a/application/shoot/shoot.c b/application/shoot/shoot.c new file mode 100644 index 0000000..38130f1 --- /dev/null +++ b/application/shoot/shoot.c @@ -0,0 +1,251 @@ +#include "shoot.h" +#include "robot_def.h" + +#include "dji_motor.h" +#include "message_center.h" +#include "bsp_dwt.h" +#include "general_def.h" + +/* 对于双发射机构的机器人,将下面的数据封装成结构体即可,生成两份shoot应用实例 */ +static DJIMotorInstance *friction_l, *friction_r, *loader; // 拨盘电机 +// static servo_instance *lid; 需要增加弹舱盖 + +static Publisher_t *shoot_pub; +static Shoot_Ctrl_Cmd_s shoot_cmd_recv; // 来自cmd的发射控制信息 +static Subscriber_t *shoot_sub; +static Shoot_Upload_Data_s shoot_feedback_data; // 来自cmd的发射控制信息 + +// dwt定时,计算冷却用 +static float hibernate_time = 0,last_hibernate_time = 0, dead_time = 0; + +void ShootInit() +{ + // 左摩擦轮 + Motor_Init_Config_s friction_config = { + .can_init_config = { + .can_handle = &hcan2, + }, + .controller_param_init_config = { + .speed_PID = { + .Kp = 1.5f, // 20 + .Ki = 0.2f, // 1 + .Kd = 0, + .Improve = PID_Integral_Limit, + .IntegralLimit = 10000, + .MaxOut = 15000, + }, + .current_PID = { + .Kp = 0, // 0.7 + .Ki = 0, // 0.1 + .Kd = 0, + .Improve = PID_Integral_Limit, + .IntegralLimit = 10000, + .MaxOut = 15000, + }, + }, + .controller_setting_init_config = { + .angle_feedback_source = MOTOR_FEED, + .speed_feedback_source = MOTOR_FEED, + + .outer_loop_type = SPEED_LOOP, + .close_loop_type = SPEED_LOOP, + .motor_reverse_flag = MOTOR_DIRECTION_NORMAL, + }, + .motor_type = M3508}; + friction_config.can_init_config.tx_id = 2, + friction_l = DJIMotorInit(&friction_config); + + friction_config.can_init_config.tx_id = 3; // 右摩擦轮,改txid和方向就行 + friction_config.controller_setting_init_config.motor_reverse_flag = MOTOR_DIRECTION_REVERSE; + friction_r = DJIMotorInit(&friction_config); + + // 拨盘电机 + Motor_Init_Config_s loader_config = { + .can_init_config = { + .can_handle = &hcan2, + .tx_id = 1 + }, + .controller_param_init_config = { + .angle_PID = { + // 如果启用位置环来控制发弹,需要较大的I值保证输出力矩的线性度否则出现接近拨出的力矩大幅下降 + .Kp = 0, // 10 + .Ki = 0, + .Kd = 0, + .MaxOut = 200, + }, + .speed_PID = { + .Kp = 3, // 10 + .Ki = 0, // 1 + .Kd = 0, + .Improve = PID_Integral_Limit, + .IntegralLimit = 5000, + .MaxOut = 10000, + }, + .current_PID = { + .Kp = 0, // 0.7 + .Ki = 0, // 0.1 + .Kd = 0, + .Improve = PID_Integral_Limit, + .IntegralLimit = 5000, + .MaxOut = 5000, + }, + }, + .controller_setting_init_config = { + .angle_feedback_source = MOTOR_FEED, .speed_feedback_source = MOTOR_FEED, + .outer_loop_type = SPEED_LOOP, // 初始化成SPEED_LOOP,让拨盘停在原地,防止拨盘上电时乱转 + .close_loop_type = CURRENT_LOOP | SPEED_LOOP, + .motor_reverse_flag = MOTOR_DIRECTION_REVERSE, // 注意方向设置为拨盘的拨出的击发方向 + }, + .motor_type = M2006 // 英雄使用m3508 + }; + loader = DJIMotorInit(&loader_config); + + shoot_pub = PubRegister("shoot_feed", sizeof(Shoot_Upload_Data_s)); + shoot_sub = SubRegister("shoot_cmd", sizeof(Shoot_Ctrl_Cmd_s)); +} +//卡弹检测 +void stalled_detect() +{ + static float last_detect_time = 0,detect_time = 0; + static float last_total_angle = 0; + static uint8_t stalled_cnt = 0; + + last_detect_time = detect_time; + detect_time = DWT_GetTimeline_ms(); + + if(detect_time - last_detect_time < 200) // 200ms 检测一次 + return; + + if(shoot_cmd_recv.load_mode == LOAD_BURSTFIRE) + { + float reference_angle = (detect_time - last_detect_time) * loader->motor_controller.pid_ref * 1e3f; + float real_angle = loader->measure.total_angle - last_total_angle; + if(real_angle < reference_angle * 0.2f) + { + //stalled_cnt ++; + shoot_feedback_data.stalled_flag = 1; + } + } +} + + +/* 机器人发射机构控制核心任务 */ +void ShootTask() +{ + //从cmd获取控制数据 + SubGetMessage(shoot_sub, &shoot_cmd_recv); + + // 对shoot mode等于SHOOT_STOP的情况特殊处理,直接停止所有电机(紧急停止) + if (shoot_cmd_recv.shoot_mode == SHOOT_OFF) + { + DJIMotorStop(friction_l); + DJIMotorStop(friction_r); + DJIMotorStop(loader); + } + else // 恢复运行 + { + DJIMotorEnable(friction_l); + DJIMotorEnable(friction_r); + DJIMotorEnable(loader); + } + + // 如果上一次触发单发或3发指令的时间加上不应期仍然大于当前时间(尚未休眠完毕),直接返回即可 + // 单发模式主要提供给能量机关激活使用(以及英雄的射击大部分处于单发) + if (hibernate_time + dead_time > DWT_GetTimeline_ms()) + return; + + // 若不在休眠状态,根据robotCMD传来的控制模式进行拨盘电机参考值设定和模式切换 + switch (shoot_cmd_recv.load_mode) + { + // 停止拨盘 + case LOAD_STOP: + DJIMotorOuterLoop(loader, SPEED_LOOP); // 切换到速度环 + DJIMotorSetRef(loader, 0); // 同时设定参考值为0,这样停止的速度最快 + break; + // 单发模式,根据鼠标按下的时间,触发一次之后需要进入不响应输入的状态(否则按下的时间内可能多次进入,导致多次发射) + case LOAD_1_BULLET: // 激活能量机关/干扰对方用,英雄用. + DJIMotorOuterLoop(loader, ANGLE_LOOP); // 切换到角度环 + DJIMotorSetRef(loader, loader->measure.total_angle + ONE_BULLET_DELTA_ANGLE); // 控制量增加一发弹丸的角度 + hibernate_time = DWT_GetTimeline_ms(); // 记录触发指令的时间 + dead_time = 150; // 完成1发弹丸发射的时间 + break; + // 三连发,如果不需要后续可能删除 + case LOAD_3_BULLET: + DJIMotorOuterLoop(loader, ANGLE_LOOP); // 切换到速度环 + DJIMotorSetRef(loader, loader->measure.total_angle + 3 * ONE_BULLET_DELTA_ANGLE); // 增加3发 + hibernate_time = DWT_GetTimeline_ms(); // 记录触发指令的时间 + dead_time = 300; // 完成3发弹丸发射的时间 + break; + // 连发模式,对速度闭环,射频后续修改为可变,目前固定为1Hz + case LOAD_BURSTFIRE: + DJIMotorOuterLoop(loader, SPEED_LOOP); + DJIMotorSetRef(loader, shoot_cmd_recv.shoot_rate * 360 * REDUCTION_RATIO_LOADER / 8); + + // x颗/秒换算成速度: 已知一圈的载弹量,由此计算出1s需要转的角度,注意换算角速度(DJIMotor的速度单位是angle per second) + break; + // 拨盘反转,对速度闭环,后续增加卡弹检测(通过裁判系统剩余热量反馈和电机电流) + // 也有可能需要从switch-case中独立出来 + case LOAD_REVERSE: + DJIMotorOuterLoop(loader, SPEED_LOOP); + DJIMotorSetRef(loader, 8 * 360 * REDUCTION_RATIO_LOADER / 8); // 固定速度反转 + hibernate_time = DWT_GetTimeline_ms(); // 记录触发指令的时间 + dead_time = 500; // 翻转500ms + shoot_feedback_data.stalled_flag = 0 ; //清除堵转标志 + // ... + break; + default: + while (1) + ; // 未知模式,停止运行,检查指针越界,内存溢出等问题 + } + + // 确定是否开启摩擦轮,后续可能修改为键鼠模式下始终开启摩擦轮(上场时建议一直开启) + if (shoot_cmd_recv.friction_mode == FRICTION_ON) + { + // 根据收到的弹速设置设定摩擦轮电机参考值,需实测后填入 +// switch (shoot_cmd_recv.bullet_speed) +// { +// case SMALL_AMU_15: +// DJIMotorSetRef(friction_l, 0); +// DJIMotorSetRef(friction_r, 0); +// break; +// case SMALL_AMU_18: +// DJIMotorSetRef(friction_l, 0); +// DJIMotorSetRef(friction_r, 0); +// break; +// case SMALL_AMU_30: +// DJIMotorSetRef(friction_l, 0); +// DJIMotorSetRef(friction_r, 0); +// break; + //default: // 当前为了调试设定的默认值4000,因为还没有加入裁判系统无法读取弹速. + DJIMotorSetRef(friction_l, 34000); + DJIMotorSetRef(friction_r, 34000); +// break; +// } + } + else // 关闭摩擦轮 + { + DJIMotorSetRef(friction_l, 0); + DJIMotorSetRef(friction_r, 0); + } + + // 开关弹舱盖 + if (shoot_cmd_recv.lid_mode == LID_CLOSE) + { + //... + } + else if (shoot_cmd_recv.lid_mode == LID_OPEN) + { + //... + } + //卡弹检测 + stalled_detect(); + + +// DJIMotorEnable(friction_l); +// DJIMotorEnable(friction_r); +// DJIMotorSetRef(friction_l, 30000); +// DJIMotorSetRef(friction_r, 30000); + + // 反馈数据,目前暂时没有要设定的反馈数据,后续可能增加应用离线监测以及卡弹反馈 + PubPushMessage(shoot_pub, (void *)&shoot_feedback_data); +} \ No newline at end of file diff --git a/application/shoot/shoot.h b/application/shoot/shoot.h new file mode 100644 index 0000000..45701c3 --- /dev/null +++ b/application/shoot/shoot.h @@ -0,0 +1,16 @@ +#ifndef SHOOT_H +#define SHOOT_H + +/** + * @brief 发射初始化,会被RobotInit()调用 + * + */ +void ShootInit(); + +/** + * @brief 发射任务 + * + */ +void ShootTask(); + +#endif // SHOOT_H \ No newline at end of file diff --git a/application/shoot/shoot.md b/application/shoot/shoot.md new file mode 100644 index 0000000..8608033 --- /dev/null +++ b/application/shoot/shoot.md @@ -0,0 +1,15 @@ +# shoot + + + +## 工作流程 + +初始化3个电机和一个舵机,包括发射的2个m3508,拨盘的m2006和弹仓盖上的舵机(双开门舵机可能要换成2个)。m2006初始化时设置为速度闭环,防止上电乱转。订阅shoot_cmd话题(robot_cmd发布的)并发布shoot_feed话题(robot_cmd会订阅)。 + +1. 从shoot_cmd获取消息 +2. 根据工作模式确定是否急停 +3. 如果之前是单发模式或3发模式并且冷却时间没到,直接结束本次任务,等待下一次进入 +4. 如果已经冷却完成,根据发来的拨盘模式,设定m2006的闭环类型和参考值 +5. 根据发来的弹速数据,设定摩擦轮的参考值 +6. 根据发来的弹舱数据进行开合 +7. 设定反馈数据,推送到shoot_feed话题 \ No newline at end of file diff --git a/basic_framework.ioc b/basic_framework.ioc new file mode 100644 index 0000000..c478417 --- /dev/null +++ b/basic_framework.ioc @@ -0,0 +1,693 @@ +#MicroXplorer Configuration settings - do not modify +ADC1.Channel-0\#ChannelRegularConversion=ADC_CHANNEL_TEMPSENSOR +ADC1.ClockPrescaler=ADC_CLOCK_SYNC_PCLK_DIV6 +ADC1.IPParameters=Rank-0\#ChannelRegularConversion,master,Channel-0\#ChannelRegularConversion,SamplingTime-0\#ChannelRegularConversion,NbrOfConversionFlag,ClockPrescaler +ADC1.NbrOfConversionFlag=1 +ADC1.Rank-0\#ChannelRegularConversion=1 +ADC1.SamplingTime-0\#ChannelRegularConversion=ADC_SAMPLETIME_3CYCLES +ADC1.master=1 +CAD.formats= +CAD.pinconfig= +CAD.provider= +CAN1.BS1=CAN_BS1_10TQ +CAN1.BS2=CAN_BS2_3TQ +CAN1.CalculateBaudRate=1000000 +CAN1.CalculateTimeQuantum=71.42857142857143 +CAN1.IPParameters=CalculateTimeQuantum,BS1,BS2,Prescaler,CalculateBaudRate,TXFP,NART +CAN1.NART=ENABLE +CAN1.Prescaler=3 +CAN1.TXFP=ENABLE +CAN2.BS1=CAN_BS1_10TQ +CAN2.BS2=CAN_BS2_3TQ +CAN2.CalculateBaudRate=1000000 +CAN2.CalculateTimeQuantum=71.42857142857143 +CAN2.IPParameters=CalculateTimeQuantum,BS1,BS2,Prescaler,CalculateBaudRate,TXFP,NART +CAN2.NART=ENABLE +CAN2.Prescaler=3 +CAN2.TXFP=ENABLE +Dma.ADC1.8.Direction=DMA_PERIPH_TO_MEMORY +Dma.ADC1.8.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.ADC1.8.Instance=DMA2_Stream4 +Dma.ADC1.8.MemDataAlignment=DMA_MDATAALIGN_HALFWORD +Dma.ADC1.8.MemInc=DMA_MINC_ENABLE +Dma.ADC1.8.Mode=DMA_NORMAL +Dma.ADC1.8.PeriphDataAlignment=DMA_PDATAALIGN_HALFWORD +Dma.ADC1.8.PeriphInc=DMA_PINC_DISABLE +Dma.ADC1.8.Priority=DMA_PRIORITY_LOW +Dma.ADC1.8.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.I2C2_RX.9.Direction=DMA_PERIPH_TO_MEMORY +Dma.I2C2_RX.9.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.I2C2_RX.9.Instance=DMA1_Stream2 +Dma.I2C2_RX.9.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.I2C2_RX.9.MemInc=DMA_MINC_ENABLE +Dma.I2C2_RX.9.Mode=DMA_NORMAL +Dma.I2C2_RX.9.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.I2C2_RX.9.PeriphInc=DMA_PINC_DISABLE +Dma.I2C2_RX.9.Priority=DMA_PRIORITY_LOW +Dma.I2C2_RX.9.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.I2C2_TX.10.Direction=DMA_MEMORY_TO_PERIPH +Dma.I2C2_TX.10.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.I2C2_TX.10.Instance=DMA1_Stream7 +Dma.I2C2_TX.10.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.I2C2_TX.10.MemInc=DMA_MINC_ENABLE +Dma.I2C2_TX.10.Mode=DMA_NORMAL +Dma.I2C2_TX.10.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.I2C2_TX.10.PeriphInc=DMA_PINC_DISABLE +Dma.I2C2_TX.10.Priority=DMA_PRIORITY_LOW +Dma.I2C2_TX.10.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.Request0=USART6_RX +Dma.Request1=USART6_TX +Dma.Request10=I2C2_TX +Dma.Request11=SPI1_TX +Dma.Request2=USART1_TX +Dma.Request3=USART1_RX +Dma.Request4=SPI1_RX +Dma.Request5=SPI2_RX +Dma.Request6=SPI2_TX +Dma.Request7=USART3_RX +Dma.Request8=ADC1 +Dma.Request9=I2C2_RX +Dma.RequestsNb=12 +Dma.SPI1_RX.4.Direction=DMA_PERIPH_TO_MEMORY +Dma.SPI1_RX.4.FIFOMode=DMA_FIFOMODE_ENABLE +Dma.SPI1_RX.4.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL +Dma.SPI1_RX.4.Instance=DMA2_Stream0 +Dma.SPI1_RX.4.MemBurst=DMA_MBURST_SINGLE +Dma.SPI1_RX.4.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.SPI1_RX.4.MemInc=DMA_MINC_ENABLE +Dma.SPI1_RX.4.Mode=DMA_NORMAL +Dma.SPI1_RX.4.PeriphBurst=DMA_PBURST_SINGLE +Dma.SPI1_RX.4.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.SPI1_RX.4.PeriphInc=DMA_PINC_DISABLE +Dma.SPI1_RX.4.Priority=DMA_PRIORITY_LOW +Dma.SPI1_RX.4.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst +Dma.SPI1_TX.11.Direction=DMA_MEMORY_TO_PERIPH +Dma.SPI1_TX.11.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.SPI1_TX.11.Instance=DMA2_Stream3 +Dma.SPI1_TX.11.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.SPI1_TX.11.MemInc=DMA_MINC_ENABLE +Dma.SPI1_TX.11.Mode=DMA_NORMAL +Dma.SPI1_TX.11.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.SPI1_TX.11.PeriphInc=DMA_PINC_DISABLE +Dma.SPI1_TX.11.Priority=DMA_PRIORITY_LOW +Dma.SPI1_TX.11.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.SPI2_RX.5.Direction=DMA_PERIPH_TO_MEMORY +Dma.SPI2_RX.5.FIFOMode=DMA_FIFOMODE_ENABLE +Dma.SPI2_RX.5.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL +Dma.SPI2_RX.5.Instance=DMA1_Stream3 +Dma.SPI2_RX.5.MemBurst=DMA_MBURST_SINGLE +Dma.SPI2_RX.5.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.SPI2_RX.5.MemInc=DMA_MINC_ENABLE +Dma.SPI2_RX.5.Mode=DMA_NORMAL +Dma.SPI2_RX.5.PeriphBurst=DMA_PBURST_SINGLE +Dma.SPI2_RX.5.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.SPI2_RX.5.PeriphInc=DMA_PINC_DISABLE +Dma.SPI2_RX.5.Priority=DMA_PRIORITY_LOW +Dma.SPI2_RX.5.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst +Dma.SPI2_TX.6.Direction=DMA_MEMORY_TO_PERIPH +Dma.SPI2_TX.6.FIFOMode=DMA_FIFOMODE_ENABLE +Dma.SPI2_TX.6.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL +Dma.SPI2_TX.6.Instance=DMA1_Stream4 +Dma.SPI2_TX.6.MemBurst=DMA_MBURST_SINGLE +Dma.SPI2_TX.6.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.SPI2_TX.6.MemInc=DMA_MINC_ENABLE +Dma.SPI2_TX.6.Mode=DMA_NORMAL +Dma.SPI2_TX.6.PeriphBurst=DMA_PBURST_SINGLE +Dma.SPI2_TX.6.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.SPI2_TX.6.PeriphInc=DMA_PINC_DISABLE +Dma.SPI2_TX.6.Priority=DMA_PRIORITY_LOW +Dma.SPI2_TX.6.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst +Dma.USART1_RX.3.Direction=DMA_PERIPH_TO_MEMORY +Dma.USART1_RX.3.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.USART1_RX.3.Instance=DMA2_Stream5 +Dma.USART1_RX.3.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.USART1_RX.3.MemInc=DMA_MINC_ENABLE +Dma.USART1_RX.3.Mode=DMA_NORMAL +Dma.USART1_RX.3.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.USART1_RX.3.PeriphInc=DMA_PINC_DISABLE +Dma.USART1_RX.3.Priority=DMA_PRIORITY_VERY_HIGH +Dma.USART1_RX.3.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.USART1_TX.2.Direction=DMA_MEMORY_TO_PERIPH +Dma.USART1_TX.2.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.USART1_TX.2.Instance=DMA2_Stream7 +Dma.USART1_TX.2.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.USART1_TX.2.MemInc=DMA_MINC_ENABLE +Dma.USART1_TX.2.Mode=DMA_NORMAL +Dma.USART1_TX.2.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.USART1_TX.2.PeriphInc=DMA_PINC_DISABLE +Dma.USART1_TX.2.Priority=DMA_PRIORITY_VERY_HIGH +Dma.USART1_TX.2.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.USART3_RX.7.Direction=DMA_PERIPH_TO_MEMORY +Dma.USART3_RX.7.FIFOMode=DMA_FIFOMODE_DISABLE +Dma.USART3_RX.7.Instance=DMA1_Stream1 +Dma.USART3_RX.7.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.USART3_RX.7.MemInc=DMA_MINC_ENABLE +Dma.USART3_RX.7.Mode=DMA_NORMAL +Dma.USART3_RX.7.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.USART3_RX.7.PeriphInc=DMA_PINC_DISABLE +Dma.USART3_RX.7.Priority=DMA_PRIORITY_LOW +Dma.USART3_RX.7.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode +Dma.USART6_RX.0.Direction=DMA_PERIPH_TO_MEMORY +Dma.USART6_RX.0.FIFOMode=DMA_FIFOMODE_ENABLE +Dma.USART6_RX.0.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL +Dma.USART6_RX.0.Instance=DMA2_Stream2 +Dma.USART6_RX.0.MemBurst=DMA_MBURST_SINGLE +Dma.USART6_RX.0.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.USART6_RX.0.MemInc=DMA_MINC_ENABLE +Dma.USART6_RX.0.Mode=DMA_NORMAL +Dma.USART6_RX.0.PeriphBurst=DMA_PBURST_SINGLE +Dma.USART6_RX.0.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.USART6_RX.0.PeriphInc=DMA_PINC_DISABLE +Dma.USART6_RX.0.Priority=DMA_PRIORITY_HIGH +Dma.USART6_RX.0.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst +Dma.USART6_TX.1.Direction=DMA_MEMORY_TO_PERIPH +Dma.USART6_TX.1.FIFOMode=DMA_FIFOMODE_ENABLE +Dma.USART6_TX.1.FIFOThreshold=DMA_FIFO_THRESHOLD_FULL +Dma.USART6_TX.1.Instance=DMA2_Stream6 +Dma.USART6_TX.1.MemBurst=DMA_MBURST_SINGLE +Dma.USART6_TX.1.MemDataAlignment=DMA_MDATAALIGN_BYTE +Dma.USART6_TX.1.MemInc=DMA_MINC_ENABLE +Dma.USART6_TX.1.Mode=DMA_NORMAL +Dma.USART6_TX.1.PeriphBurst=DMA_PBURST_SINGLE +Dma.USART6_TX.1.PeriphDataAlignment=DMA_PDATAALIGN_BYTE +Dma.USART6_TX.1.PeriphInc=DMA_PINC_DISABLE +Dma.USART6_TX.1.Priority=DMA_PRIORITY_HIGH +Dma.USART6_TX.1.RequestParameters=Instance,Direction,PeriphInc,MemInc,PeriphDataAlignment,MemDataAlignment,Mode,Priority,FIFOMode,FIFOThreshold,MemBurst,PeriphBurst +FREERTOS.INCLUDE_vTaskDelayUntil=1 +FREERTOS.IPParameters=Tasks01,configENABLE_FPU,configMAX_TASK_NAME_LEN,configUSE_TIMERS,configUSE_POSIX_ERRNO,INCLUDE_vTaskDelayUntil,configTOTAL_HEAP_SIZE,configUSE_COUNTING_SEMAPHORES +FREERTOS.Tasks01=defaultTask,0,128,StartDefaultTask,Default,NULL,Dynamic,NULL,NULL +FREERTOS.configENABLE_FPU=1 +FREERTOS.configMAX_TASK_NAME_LEN=32 +FREERTOS.configTOTAL_HEAP_SIZE=20000 +FREERTOS.configUSE_COUNTING_SEMAPHORES=1 +FREERTOS.configUSE_POSIX_ERRNO=0 +FREERTOS.configUSE_TIMERS=0 +File.Version=6 +GPIO.groupedBy=Group By Peripherals +I2C2.I2C_Mode=I2C_Fast +I2C2.IPParameters=I2C_Mode +I2C3.I2C_Mode=I2C_Fast +I2C3.IPParameters=I2C_Mode +KeepUserPlacement=false +Mcu.CPN=STM32F407IGH6 +Mcu.Family=STM32F4 +Mcu.IP0=ADC1 +Mcu.IP1=CAN1 +Mcu.IP10=RCC +Mcu.IP11=RNG +Mcu.IP12=RTC +Mcu.IP13=SPI1 +Mcu.IP14=SPI2 +Mcu.IP15=SYS +Mcu.IP16=TIM1 +Mcu.IP17=TIM4 +Mcu.IP18=TIM5 +Mcu.IP19=TIM8 +Mcu.IP2=CAN2 +Mcu.IP20=TIM10 +Mcu.IP21=USART1 +Mcu.IP22=USART3 +Mcu.IP23=USART6 +Mcu.IP24=USB_DEVICE +Mcu.IP25=USB_OTG_FS +Mcu.IP3=CRC +Mcu.IP4=DAC +Mcu.IP5=DMA +Mcu.IP6=FREERTOS +Mcu.IP7=I2C2 +Mcu.IP8=I2C3 +Mcu.IP9=NVIC +Mcu.IPNb=26 +Mcu.Name=STM32F407I(E-G)Hx +Mcu.Package=UFBGA176 +Mcu.Pin0=PB5 +Mcu.Pin1=PG14 +Mcu.Pin10=PC10 +Mcu.Pin11=PA12 +Mcu.Pin12=PI7 +Mcu.Pin13=PI6 +Mcu.Pin14=PG9 +Mcu.Pin15=PD1 +Mcu.Pin16=PA11 +Mcu.Pin17=PA10 +Mcu.Pin18=PF0 +Mcu.Pin19=PA9 +Mcu.Pin2=PB4 +Mcu.Pin20=PC9 +Mcu.Pin21=PA8 +Mcu.Pin22=PH0-OSC_IN +Mcu.Pin23=PH1-OSC_OUT +Mcu.Pin24=PF1 +Mcu.Pin25=PC6 +Mcu.Pin26=PG6 +Mcu.Pin27=PF6 +Mcu.Pin28=PH12 +Mcu.Pin29=PG3 +Mcu.Pin3=PB3 +Mcu.Pin30=PH11 +Mcu.Pin31=PH10 +Mcu.Pin32=PD14 +Mcu.Pin33=PA0-WKUP +Mcu.Pin34=PA4 +Mcu.Pin35=PC4 +Mcu.Pin36=PE13 +Mcu.Pin37=PA5 +Mcu.Pin38=PC5 +Mcu.Pin39=PE9 +Mcu.Pin4=PA14 +Mcu.Pin40=PE11 +Mcu.Pin41=PE14 +Mcu.Pin42=PB13 +Mcu.Pin43=PA7 +Mcu.Pin44=PB0 +Mcu.Pin45=PB14 +Mcu.Pin46=PB15 +Mcu.Pin47=VP_ADC1_TempSens_Input +Mcu.Pin48=VP_ADC1_Vref_Input +Mcu.Pin49=VP_CRC_VS_CRC +Mcu.Pin5=PA13 +Mcu.Pin50=VP_FREERTOS_VS_CMSIS_V1 +Mcu.Pin51=VP_RNG_VS_RNG +Mcu.Pin52=VP_RTC_VS_RTC_Activate +Mcu.Pin53=VP_SYS_VS_tim14 +Mcu.Pin54=VP_TIM1_VS_ClockSourceINT +Mcu.Pin55=VP_TIM4_VS_ClockSourceINT +Mcu.Pin56=VP_TIM5_VS_ClockSourceINT +Mcu.Pin57=VP_TIM8_VS_ClockSourceINT +Mcu.Pin58=VP_TIM10_VS_ClockSourceINT +Mcu.Pin59=VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS +Mcu.Pin6=PB7 +Mcu.Pin60=VP_STMicroelectronics.X-CUBE-ALGOBUILD_VS_DSPOoLibraryJjLibrary_1.3.0_1.3.0 +Mcu.Pin7=PB6 +Mcu.Pin8=PD0 +Mcu.Pin9=PC11 +Mcu.PinsNb=61 +Mcu.ThirdParty0=STMicroelectronics.X-CUBE-ALGOBUILD.1.3.0 +Mcu.ThirdPartyNb=1 +Mcu.UserConstants= +Mcu.UserName=STM32F407IGHx +MxCube.Version=6.8.1 +MxDb.Version=DB.6.0.81 +NVIC.BusFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false\:false +NVIC.CAN1_RX0_IRQn=true\:5\:0\:true\:false\:true\:true\:true\:true\:true +NVIC.CAN1_RX1_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.CAN2_RX0_IRQn=true\:5\:0\:true\:false\:true\:true\:true\:true\:true +NVIC.CAN2_RX1_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.DMA1_Stream1_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA1_Stream2_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA1_Stream3_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA1_Stream4_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA1_Stream7_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream0_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream2_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream3_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream4_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream5_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream6_IRQn=true\:5\:0\:true\:false\:true\:true\:false\:true\:true +NVIC.DMA2_Stream7_IRQn=true\:5\:0\:true\:false\:true\:true\:false\:true\:true +NVIC.DebugMonitor_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false\:false +NVIC.EXTI3_IRQn=true\:5\:0\:true\:false\:true\:true\:true\:true\:true +NVIC.EXTI4_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.EXTI9_5_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.FLASH_IRQn=true\:6\:0\:true\:false\:true\:true\:true\:true\:true +NVIC.ForceEnableDMAVector=true +NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false\:false +NVIC.I2C2_ER_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.I2C2_EV_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.I2C3_ER_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.I2C3_EV_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.MemoryManagement_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false\:false +NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false\:false +NVIC.OTG_FS_IRQn=true\:5\:0\:false\:false\:true\:true\:false\:true\:true +NVIC.PendSV_IRQn=true\:15\:0\:false\:false\:false\:true\:false\:false\:false +NVIC.PriorityGroup=NVIC_PRIORITYGROUP_4 +NVIC.SPI1_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.SPI2_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:false\:false\:false\:false\:false +NVIC.SavedPendsvIrqHandlerGenerated=true +NVIC.SavedSvcallIrqHandlerGenerated=true +NVIC.SavedSystickIrqHandlerGenerated=true +NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:false\:true\:false\:true\:false +NVIC.TIM8_TRG_COM_TIM14_IRQn=true\:15\:0\:false\:false\:true\:false\:false\:true\:true +NVIC.TimeBase=TIM8_TRG_COM_TIM14_IRQn +NVIC.TimeBaseIP=TIM14 +NVIC.USART1_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.USART3_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.USART6_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true\:true +NVIC.UsageFault_IRQn=true\:0\:0\:true\:false\:true\:false\:false\:false\:false +PA0-WKUP.GPIOParameters=GPIO_PuPd,GPIO_Label +PA0-WKUP.GPIO_Label=KEY +PA0-WKUP.GPIO_PuPd=GPIO_PULLUP +PA0-WKUP.Locked=true +PA0-WKUP.Signal=GPIO_Input +PA10.Locked=true +PA10.Signal=USB_OTG_FS_ID +PA11.Mode=Device_Only +PA11.Signal=USB_OTG_FS_DM +PA12.Mode=Device_Only +PA12.Signal=USB_OTG_FS_DP +PA13.Mode=Serial_Wire +PA13.Signal=SYS_JTMS-SWDIO +PA14.Mode=Serial_Wire +PA14.Signal=SYS_JTCK-SWCLK +PA4.GPIOParameters=GPIO_Speed,PinState,GPIO_PuPd,GPIO_Label +PA4.GPIO_Label=CS1_ACCEL +PA4.GPIO_PuPd=GPIO_PULLUP +PA4.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PA4.Locked=true +PA4.PinState=GPIO_PIN_SET +PA4.Signal=GPIO_Output +PA5.Signal=COMP_DAC2_group +PA7.GPIOParameters=GPIO_PuPd +PA7.GPIO_PuPd=GPIO_PULLUP +PA7.Locked=true +PA7.Mode=Full_Duplex_Master +PA7.Signal=SPI1_MOSI +PA8.Locked=true +PA8.Mode=I2C +PA8.Signal=I2C3_SCL +PA9.Locked=true +PA9.Mode=Asynchronous +PA9.Signal=USART1_TX +PB0.GPIOParameters=GPIO_Speed,PinState,GPIO_PuPd,GPIO_Label +PB0.GPIO_Label=CS1_GYRO +PB0.GPIO_PuPd=GPIO_PULLUP +PB0.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PB0.Locked=true +PB0.PinState=GPIO_PIN_SET +PB0.Signal=GPIO_Output +PB13.Locked=true +PB13.Mode=Full_Duplex_Master +PB13.Signal=SPI2_SCK +PB14.Locked=true +PB14.Mode=Full_Duplex_Master +PB14.Signal=SPI2_MISO +PB15.Locked=true +PB15.Mode=Full_Duplex_Master +PB15.Signal=SPI2_MOSI +PB3.GPIOParameters=GPIO_PuPd +PB3.GPIO_PuPd=GPIO_PULLUP +PB3.Locked=true +PB3.Mode=Full_Duplex_Master +PB3.Signal=SPI1_SCK +PB4.GPIOParameters=GPIO_PuPd +PB4.GPIO_PuPd=GPIO_PULLUP +PB4.Locked=true +PB4.Mode=Full_Duplex_Master +PB4.Signal=SPI1_MISO +PB5.Locked=true +PB5.Mode=CAN_Activate +PB5.Signal=CAN2_RX +PB6.Locked=true +PB6.Mode=CAN_Activate +PB6.Signal=CAN2_TX +PB7.Locked=true +PB7.Mode=Asynchronous +PB7.Signal=USART1_RX +PC10.Locked=true +PC10.Mode=Asynchronous +PC10.Signal=USART3_TX +PC11.Locked=true +PC11.Mode=Asynchronous +PC11.Signal=USART3_RX +PC4.GPIOParameters=GPIO_Label,GPIO_ModeDefaultEXTI +PC4.GPIO_Label=INT_ACC +PC4.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING +PC4.Locked=true +PC4.Signal=GPXTI4 +PC5.GPIOParameters=GPIO_Label,GPIO_ModeDefaultEXTI +PC5.GPIO_Label=INT_GYRO +PC5.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING +PC5.Locked=true +PC5.Signal=GPXTI5 +PC6.Locked=true +PC6.Signal=S_TIM8_CH1 +PC9.Mode=I2C +PC9.Signal=I2C3_SDA +PD0.Locked=true +PD0.Mode=CAN_Activate +PD0.Signal=CAN1_RX +PD1.Locked=true +PD1.Mode=CAN_Activate +PD1.Signal=CAN1_TX +PD14.GPIOParameters=GPIO_Speed,GPIO_PuPd,GPIO_Label +PD14.GPIO_Label=BUZZER +PD14.GPIO_PuPd=GPIO_PULLUP +PD14.GPIO_Speed=GPIO_SPEED_FREQ_VERY_HIGH +PD14.Locked=true +PD14.Signal=S_TIM4_CH3 +PE11.Signal=S_TIM1_CH2 +PE13.Locked=true +PE13.Signal=S_TIM1_CH3 +PE14.Signal=S_TIM1_CH4 +PE9.GPIOParameters=GPIO_Label +PE9.GPIO_Label=SERVO +PE9.Locked=true +PE9.Signal=S_TIM1_CH1 +PF0.Mode=I2C +PF0.Signal=I2C2_SDA +PF1.Mode=I2C +PF1.Signal=I2C2_SCL +PF6.GPIOParameters=GPIO_Speed,GPIO_PuPd,GPIO_Label +PF6.GPIO_Label=IMU_TEMP +PF6.GPIO_PuPd=GPIO_PULLUP +PF6.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PF6.Locked=true +PF6.Signal=S_TIM10_CH1 +PG14.Locked=true +PG14.Mode=Asynchronous +PG14.Signal=USART6_TX +PG3.GPIOParameters=GPIO_PuPd,GPIO_Label,GPIO_ModeDefaultEXTI +PG3.GPIO_Label=INT_MAG +PG3.GPIO_ModeDefaultEXTI=GPIO_MODE_IT_FALLING +PG3.GPIO_PuPd=GPIO_PULLUP +PG3.Locked=true +PG3.Signal=GPXTI3 +PG6.GPIOParameters=GPIO_Label +PG6.GPIO_Label=MAG_RST +PG6.Locked=true +PG6.Signal=GPIO_Output +PG9.Locked=true +PG9.Mode=Asynchronous +PG9.Signal=USART6_RX +PH0-OSC_IN.Mode=HSE-External-Oscillator +PH0-OSC_IN.Signal=RCC_OSC_IN +PH1-OSC_OUT.Mode=HSE-External-Oscillator +PH1-OSC_OUT.Signal=RCC_OSC_OUT +PH10.GPIOParameters=GPIO_Speed,GPIO_PuPd,GPIO_Label +PH10.GPIO_Label=LED_B +PH10.GPIO_PuPd=GPIO_PULLUP +PH10.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PH10.Locked=true +PH10.Signal=S_TIM5_CH1 +PH11.GPIOParameters=GPIO_Speed,GPIO_PuPd,GPIO_Label +PH11.GPIO_Label=LED_G +PH11.GPIO_PuPd=GPIO_PULLUP +PH11.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PH11.Locked=true +PH11.Signal=S_TIM5_CH2 +PH12.GPIOParameters=GPIO_Speed,GPIO_PuPd,GPIO_Label +PH12.GPIO_Label=LED_R +PH12.GPIO_PuPd=GPIO_PULLUP +PH12.GPIO_Speed=GPIO_SPEED_FREQ_HIGH +PH12.Locked=true +PH12.Signal=S_TIM5_CH3 +PI6.Signal=S_TIM8_CH2 +PI7.Signal=S_TIM8_CH3 +PinOutPanel.CurrentBGAView=Top +PinOutPanel.RotationAngle=0 +ProjectManager.AskForMigrate=true +ProjectManager.BackupPrevious=false +ProjectManager.CompilerOptimize=6 +ProjectManager.ComputerToolchain=false +ProjectManager.CoupleFile=true +ProjectManager.CustomerFirmwarePackage= +ProjectManager.DefaultFWLocation=true +ProjectManager.DeletePrevious=true +ProjectManager.DeviceId=STM32F407IGHx +ProjectManager.FirmwarePackage=STM32Cube FW_F4 V1.27.1 +ProjectManager.FreePins=false +ProjectManager.HalAssertFull=false +ProjectManager.HeapSize=0x5000 +ProjectManager.KeepUserCode=true +ProjectManager.LastFirmware=true +ProjectManager.LibraryCopy=1 +ProjectManager.MainLocation=Src +ProjectManager.NoMain=false +ProjectManager.PreviousToolchain=STM32CubeIDE +ProjectManager.ProjectBuild=false +ProjectManager.ProjectFileName=basic_framework.ioc +ProjectManager.ProjectName=basic_framework +ProjectManager.ProjectStructure= +ProjectManager.RegisterCallBack= +ProjectManager.StackSize=0x5000 +ProjectManager.TargetToolchain=STM32CubeIDE +ProjectManager.ToolChainLocation= +ProjectManager.UnderRoot=true +ProjectManager.functionlistsort=1-MX_GPIO_Init-GPIO-false-HAL-true,2-MX_DMA_Init-DMA-false-HAL-true,3-SystemClock_Config-RCC-false-HAL-false,4-MX_ADC1_Init-ADC1-false-HAL-true,5-MX_CAN1_Init-CAN1-false-HAL-true,6-MX_CAN2_Init-CAN2-false-HAL-true,7-MX_SPI1_Init-SPI1-false-HAL-true,8-MX_TIM4_Init-TIM4-false-HAL-true,9-MX_TIM5_Init-TIM5-false-HAL-true,10-MX_USART3_UART_Init-USART3-false-HAL-true,11-MX_RNG_Init-RNG-false-HAL-true,12-MX_RTC_Init-RTC-false-HAL-true,13-MX_TIM1_Init-TIM1-false-HAL-true,14-MX_TIM10_Init-TIM10-false-HAL-true,15-MX_USART1_UART_Init-USART1-false-HAL-true,16-MX_USART6_UART_Init-USART6-false-HAL-true,17-MX_TIM8_Init-TIM8-false-HAL-true,18-MX_I2C2_Init-I2C2-false-HAL-true,19-MX_I2C3_Init-I2C3-false-HAL-true,20-MX_SPI2_Init-SPI2-false-HAL-true,21-MX_CRC_Init-CRC-false-HAL-true,22-MX_DAC_Init-DAC-false-HAL-true,23-MX_USB_DEVICE_Init-USB_DEVICE-false-HAL-false +RCC.48MHZClocksFreq_Value=48000000 +RCC.AHBFreq_Value=168000000 +RCC.APB1CLKDivider=RCC_HCLK_DIV4 +RCC.APB1Freq_Value=42000000 +RCC.APB1TimFreq_Value=84000000 +RCC.APB2CLKDivider=RCC_HCLK_DIV2 +RCC.APB2Freq_Value=84000000 +RCC.APB2TimFreq_Value=168000000 +RCC.CortexFreq_Value=168000000 +RCC.EthernetFreq_Value=168000000 +RCC.FCLKCortexFreq_Value=168000000 +RCC.FamilyName=M +RCC.HCLKFreq_Value=168000000 +RCC.HSE_VALUE=12000000 +RCC.HSI_VALUE=16000000 +RCC.I2SClocksFreq_Value=192000000 +RCC.IPParameters=48MHZClocksFreq_Value,AHBFreq_Value,APB1CLKDivider,APB1Freq_Value,APB1TimFreq_Value,APB2CLKDivider,APB2Freq_Value,APB2TimFreq_Value,CortexFreq_Value,EthernetFreq_Value,FCLKCortexFreq_Value,FamilyName,HCLKFreq_Value,HSE_VALUE,HSI_VALUE,I2SClocksFreq_Value,LSE_VALUE,LSI_VALUE,MCO2PinFreq_Value,PLLCLKFreq_Value,PLLM,PLLN,PLLQ,PLLQCLKFreq_Value,RCC_RTC_Clock_SourceVirtual,RCC_RTC_Clock_Source_FROM_HSE,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,SYSCLKSource,VCOI2SOutputFreq_Value,VCOInputFreq_Value,VCOOutputFreq_Value,VcooutputI2S +RCC.LSE_VALUE=32768 +RCC.LSI_VALUE=32000 +RCC.MCO2PinFreq_Value=168000000 +RCC.PLLCLKFreq_Value=168000000 +RCC.PLLM=6 +RCC.PLLN=168 +RCC.PLLQ=7 +RCC.PLLQCLKFreq_Value=48000000 +RCC.RCC_RTC_Clock_SourceVirtual=RCC_RTCCLKSOURCE_HSE_DIV30 +RCC.RCC_RTC_Clock_Source_FROM_HSE=RCC_RTCCLKSOURCE_HSE_DIV30 +RCC.RTCFreq_Value=400000 +RCC.RTCHSEDivFreq_Value=400000 +RCC.SYSCLKFreq_VALUE=168000000 +RCC.SYSCLKSource=RCC_SYSCLKSOURCE_PLLCLK +RCC.VCOI2SOutputFreq_Value=384000000 +RCC.VCOInputFreq_Value=2000000 +RCC.VCOOutputFreq_Value=336000000 +RCC.VcooutputI2S=192000000 +RTC.AsynchPrediv=124 +RTC.IPParameters=SynchPrediv,AsynchPrediv +RTC.SynchPrediv=3199 +SH.COMP_DAC2_group.0=DAC_OUT2,DAC_OUT2 +SH.COMP_DAC2_group.ConfNb=1 +SH.GPXTI3.0=GPIO_EXTI3 +SH.GPXTI3.ConfNb=1 +SH.GPXTI4.0=GPIO_EXTI4 +SH.GPXTI4.ConfNb=1 +SH.GPXTI5.0=GPIO_EXTI5 +SH.GPXTI5.ConfNb=1 +SH.S_TIM10_CH1.0=TIM10_CH1,PWM Generation1 CH1 +SH.S_TIM10_CH1.ConfNb=1 +SH.S_TIM1_CH1.0=TIM1_CH1,PWM Generation1 CH1 +SH.S_TIM1_CH1.ConfNb=1 +SH.S_TIM1_CH2.0=TIM1_CH2,PWM Generation2 CH2 +SH.S_TIM1_CH2.ConfNb=1 +SH.S_TIM1_CH3.0=TIM1_CH3,PWM Generation3 CH3 +SH.S_TIM1_CH3.ConfNb=1 +SH.S_TIM1_CH4.0=TIM1_CH4,PWM Generation4 CH4 +SH.S_TIM1_CH4.ConfNb=1 +SH.S_TIM4_CH3.0=TIM4_CH3,PWM Generation3 CH3 +SH.S_TIM4_CH3.ConfNb=1 +SH.S_TIM5_CH1.0=TIM5_CH1,PWM Generation1 CH1 +SH.S_TIM5_CH1.ConfNb=1 +SH.S_TIM5_CH2.0=TIM5_CH2,PWM Generation2 CH2 +SH.S_TIM5_CH2.ConfNb=1 +SH.S_TIM5_CH3.0=TIM5_CH3,PWM Generation3 CH3 +SH.S_TIM5_CH3.ConfNb=1 +SH.S_TIM8_CH1.0=TIM8_CH1,Output Compare1 CH1 +SH.S_TIM8_CH1.ConfNb=1 +SH.S_TIM8_CH2.0=TIM8_CH2,Output Compare2 CH2 +SH.S_TIM8_CH2.ConfNb=1 +SH.S_TIM8_CH3.0=TIM8_CH3,Output Compare3 CH3 +SH.S_TIM8_CH3.ConfNb=1 +SPI1.BaudRatePrescaler=SPI_BAUDRATEPRESCALER_8 +SPI1.CLKPhase=SPI_PHASE_2EDGE +SPI1.CLKPolarity=SPI_POLARITY_HIGH +SPI1.CalculateBaudRate=10.5 MBits/s +SPI1.Direction=SPI_DIRECTION_2LINES +SPI1.IPParameters=VirtualType,Mode,Direction,CalculateBaudRate,BaudRatePrescaler,CLKPolarity,CLKPhase +SPI1.Mode=SPI_MODE_MASTER +SPI1.VirtualType=VM_MASTER +SPI2.BaudRatePrescaler=SPI_BAUDRATEPRESCALER_256 +SPI2.CLKPhase=SPI_PHASE_2EDGE +SPI2.CLKPolarity=SPI_POLARITY_HIGH +SPI2.CalculateBaudRate=164.062 KBits/s +SPI2.Direction=SPI_DIRECTION_2LINES +SPI2.IPParameters=VirtualType,Mode,Direction,CLKPhase,CLKPolarity,CalculateBaudRate,BaudRatePrescaler +SPI2.Mode=SPI_MODE_MASTER +SPI2.VirtualType=VM_MASTER +STMicroelectronics.X-CUBE-ALGOBUILD.1.3.0.DSPOoLibraryJjLibrary_Checked=true +STMicroelectronics.X-CUBE-ALGOBUILD.1.3.0.IPParameters=LibraryCcDSPOoLibraryJjDSPOoLibrary +STMicroelectronics.X-CUBE-ALGOBUILD.1.3.0.LibraryCcDSPOoLibraryJjDSPOoLibrary=true +STMicroelectronics.X-CUBE-ALGOBUILD.1.3.0_SwParameter=LibraryCcDSPOoLibraryJjDSPOoLibrary\:true; +TIM1.Channel-PWM\ Generation1\ CH1=TIM_CHANNEL_1 +TIM1.Channel-PWM\ Generation2\ CH2=TIM_CHANNEL_2 +TIM1.Channel-PWM\ Generation3\ CH3=TIM_CHANNEL_3 +TIM1.Channel-PWM\ Generation4\ CH4=TIM_CHANNEL_4 +TIM1.IPParameters=Period,Prescaler,Channel-PWM Generation2 CH2,Channel-PWM Generation3 CH3,Channel-PWM Generation4 CH4,Channel-PWM Generation1 CH1 +TIM1.Period=19999 +TIM1.Prescaler=167 +TIM10.Channel=TIM_CHANNEL_1 +TIM10.IPParameters=Period,Channel,Prescaler +TIM10.Period=5000-1 +TIM10.Prescaler=167 +TIM4.Channel-PWM\ Generation3\ CH3=TIM_CHANNEL_3 +TIM4.IPParameters=Channel-PWM Generation3 CH3,Prescaler,Period +TIM4.Period=65535 +TIM4.Prescaler=167 +TIM5.Channel-PWM\ Generation1\ CH1=TIM_CHANNEL_1 +TIM5.Channel-PWM\ Generation2\ CH2=TIM_CHANNEL_2 +TIM5.Channel-PWM\ Generation3\ CH3=TIM_CHANNEL_3 +TIM5.IPParameters=Channel-PWM Generation1 CH1,Channel-PWM Generation2 CH2,Channel-PWM Generation3 CH3,Prescaler,Period +TIM5.Period=65535 +TIM5.Prescaler=0 +TIM8.Channel-Output\ Compare1\ CH1=TIM_CHANNEL_1 +TIM8.Channel-Output\ Compare2\ CH2=TIM_CHANNEL_2 +TIM8.Channel-Output\ Compare3\ CH3=TIM_CHANNEL_3 +TIM8.IPParameters=Channel-Output Compare1 CH1,Channel-Output Compare2 CH2,Channel-Output Compare3 CH3,Prescaler,Period +TIM8.Period=19999 +TIM8.Prescaler=167 +USART1.BaudRate=921600 +USART1.IPParameters=VirtualMode,BaudRate +USART1.VirtualMode=VM_ASYNC +USART3.BaudRate=100000 +USART3.IPParameters=VirtualMode,BaudRate,Parity,WordLength +USART3.Parity=PARITY_EVEN +USART3.VirtualMode=VM_ASYNC +USART3.WordLength=WORDLENGTH_9B +USART6.IPParameters=VirtualMode +USART6.VirtualMode=VM_ASYNC +USB_DEVICE.CLASS_NAME_FS=CDC +USB_DEVICE.IPParameters=VirtualMode-CDC_FS,VirtualModeFS,CLASS_NAME_FS,MANUFACTURER_STRING-CDC_FS,PID_CDC_FS,PRODUCT_STRING_CDC_FS +USB_DEVICE.MANUFACTURER_STRING-CDC_FS=YueLuEmbedded +USB_DEVICE.PID_CDC_FS=202 +USB_DEVICE.PRODUCT_STRING_CDC_FS=Vision Comm port +USB_DEVICE.VirtualMode-CDC_FS=Cdc +USB_DEVICE.VirtualModeFS=Cdc_FS +USB_OTG_FS.IPParameters=VirtualMode +USB_OTG_FS.VirtualMode=Device_Only +VP_ADC1_TempSens_Input.Mode=IN-TempSens +VP_ADC1_TempSens_Input.Signal=ADC1_TempSens_Input +VP_ADC1_Vref_Input.Mode=IN-Vrefint +VP_ADC1_Vref_Input.Signal=ADC1_Vref_Input +VP_CRC_VS_CRC.Mode=CRC_Activate +VP_CRC_VS_CRC.Signal=CRC_VS_CRC +VP_FREERTOS_VS_CMSIS_V1.Mode=CMSIS_V1 +VP_FREERTOS_VS_CMSIS_V1.Signal=FREERTOS_VS_CMSIS_V1 +VP_RNG_VS_RNG.Mode=RNG_Activate +VP_RNG_VS_RNG.Signal=RNG_VS_RNG +VP_RTC_VS_RTC_Activate.Mode=RTC_Enabled +VP_RTC_VS_RTC_Activate.Signal=RTC_VS_RTC_Activate +VP_STMicroelectronics.X-CUBE-ALGOBUILD_VS_DSPOoLibraryJjLibrary_1.3.0_1.3.0.Mode=DSPOoLibraryJjLibrary +VP_STMicroelectronics.X-CUBE-ALGOBUILD_VS_DSPOoLibraryJjLibrary_1.3.0_1.3.0.Signal=STMicroelectronics.X-CUBE-ALGOBUILD_VS_DSPOoLibraryJjLibrary_1.3.0_1.3.0 +VP_SYS_VS_tim14.Mode=TIM14 +VP_SYS_VS_tim14.Signal=SYS_VS_tim14 +VP_TIM10_VS_ClockSourceINT.Mode=Enable_Timer +VP_TIM10_VS_ClockSourceINT.Signal=TIM10_VS_ClockSourceINT +VP_TIM1_VS_ClockSourceINT.Mode=Internal +VP_TIM1_VS_ClockSourceINT.Signal=TIM1_VS_ClockSourceINT +VP_TIM4_VS_ClockSourceINT.Mode=Internal +VP_TIM4_VS_ClockSourceINT.Signal=TIM4_VS_ClockSourceINT +VP_TIM5_VS_ClockSourceINT.Mode=Internal +VP_TIM5_VS_ClockSourceINT.Signal=TIM5_VS_ClockSourceINT +VP_TIM8_VS_ClockSourceINT.Mode=Internal +VP_TIM8_VS_ClockSourceINT.Signal=TIM8_VS_ClockSourceINT +VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS.Mode=CDC_FS +VP_USB_DEVICE_VS_USB_DEVICE_CDC_FS.Signal=USB_DEVICE_VS_USB_DEVICE_CDC_FS +board=custom +rtos.0.ip=FREERTOS diff --git a/bsp/adc/bsp_adc.c b/bsp/adc/bsp_adc.c new file mode 100644 index 0000000..e69de29 diff --git a/bsp/adc/bsp_adc.h b/bsp/adc/bsp_adc.h new file mode 100644 index 0000000..e69de29 diff --git a/bsp/adc/bsp_adc.md b/bsp/adc/bsp_adc.md new file mode 100644 index 0000000..15f222f --- /dev/null +++ b/bsp/adc/bsp_adc.md @@ -0,0 +1,5 @@ +待添加adc的bsp支持,应该提供阻塞/IT/DMA的量测接口 + +是否需要bsp_adc?由于功能非常简单,似乎可以直接使用HAL的接口,没有必要多此一举进行封装? + +回调函数. \ No newline at end of file diff --git a/bsp/bsp.md b/bsp/bsp.md new file mode 100644 index 0000000..ef1a455 --- /dev/null +++ b/bsp/bsp.md @@ -0,0 +1,12 @@ +BSP + +这是BSP层的说明文档。 + +> TODO: +> 1. 增加硬件和软件CRC支持,统一不同crc顺序和计算码的调用方式 + +bsp的功能是提供对片上(MCU中)外设的封装,即单片机芯片内部拥有的功能的封装。**在开发板pcb上集成的模块(蜂鸣器,加热电阻,wifi等)应该放在module层而不是这里**。 + +bsp应该提供几种接口。包括初始化接口,一般命名为`XXXRegister()`(对于只有一个instance的可以叫`XXXInit()`,但建议统一风格都叫register);调用此模块实现的必要功能,如通信型外设(CubeMX下的connectivity)提供接收和发送的接口,以及接收完成、发送完成(若有必要,或有发送队列需求)的数据回调函数。 + +- bsp_tools.h中提供了将bsp数据接收回调函数设置为任务的接口,通过这种方式,可以进一步提高整个系统的实时性,同时保证高优先级的任务一定按时执行。 \ No newline at end of file diff --git a/bsp/bsp_init.h b/bsp/bsp_init.h new file mode 100644 index 0000000..73cecf8 --- /dev/null +++ b/bsp/bsp_init.h @@ -0,0 +1,24 @@ +#ifndef BSP_INIT_h +#define BSP_INIT_h + +#include "bsp_init.h" +#include "bsp_log.h" +#include "bsp_dwt.h" +#include "bsp_usb.h" + +/** + * @brief bsp层初始化统一入口,这里仅初始化必须的bsp组件,其他组件的初始化在各自的模块中进行 + * 需在实时系统启动前调用,目前由RobotoInit()调用 + * + * @note 其他实例型的外设如CAN和串口会在注册实例的时候自动初始化,不注册不初始化 + */ +// +void BSPInit() +{ + DWT_Init(168); + BSPLogInit(); +} + + +#endif // !BSP_INIT_h + diff --git a/bsp/bsp_tools.c b/bsp/bsp_tools.c new file mode 100644 index 0000000..efcdd1f --- /dev/null +++ b/bsp/bsp_tools.c @@ -0,0 +1,56 @@ +#include+ +#include "cmsis_os.h" +#include "bsp_log.h" +#include "bsp_tools.h" + +#define MX_SIG_LIST_SIZE 32 // 不可修改,最大信号量数量 + +typedef struct +{ + void *callback; + uint32_t sig; + void *ins; +} CallbackTask_t; + +// 递增记录全局信号量的数组,最大32个信号量 +static uint8_t sig_idx = 0; +static uint32_t tmp_sig = 1; // tmp_sing << sig_idx从而生成对应信号量 + +static osThreadId cbkid_list[MX_SIG_LIST_SIZE]; +static CallbackTask_t cbkinfo_list[MX_SIG_LIST_SIZE]; + +// 死循环任务,执行cbk函数指针,每次执行完毕后等待sig信号 +__attribute__((noreturn)) static void CallbackTaskBase(void const *cbk) +{ + void (*cbk_func)(void const *) = (void (*)(void const *))((CallbackTask_t const *)cbk)->callback; + void const *ins = ((CallbackTask_t const *)cbk)->ins; + uint32_t sig = ((CallbackTask_t const *)cbk)->sig; + + for (;;) + { + cbk_func(ins); + osSignalWait(sig, osWaitForever); + } +} + +uint32_t CreateCallbackTask(char *name, void *cbk, void *ins, osPriority priority) +{ + if (sig_idx >= MX_SIG_LIST_SIZE) + while (1) + LOGERROR("[rtos:cbk_register] CreateCallbackTask: sig_idx >= MX_SIG_LIST_SIZE"); + + cbkinfo_list[sig_idx].callback = cbk; + cbkinfo_list[sig_idx].sig = tmp_sig << sig_idx; + cbkinfo_list[sig_idx].ins = ins; + + osThreadDef_t threadDef; + threadDef.name = name; + threadDef.pthread = &CallbackTaskBase; + threadDef.tpriority = priority; + threadDef.instances = 0; + threadDef.stacksize = 128; + cbkid_list[sig_idx] = osThreadCreate(&threadDef, (void *)&cbkinfo_list[sig_idx]); + + return cbkinfo_list[sig_idx++].sig; // 返回信号量,同时增加索引 +} \ No newline at end of file diff --git a/bsp/bsp_tools.h b/bsp/bsp_tools.h new file mode 100644 index 0000000..ea046c7 --- /dev/null +++ b/bsp/bsp_tools.h @@ -0,0 +1,17 @@ +#include "cmsis_os.h" +#include "bsp_log.h" + +/** + * @brief 创建一个新的任务,该任务收到osSignalSet信号时会被唤醒,否则保持挂起状态 + * + * @note 注册完成后,只需要将module提供的回调函数替换成osSignalSet即可 + * 推荐将处理较为复杂的回调函数注册为任务,如视觉长包解析/多机通信/双板通信/裁判系统通信等 + * + * @param name 任务名称,注意以'\0'结尾 + * @param cbk 回调函数指针 + * @param ins 回调函数的参数,bsp为实例指针 + * @param priority 任务优先级,决定了在中断结束后能否保证立刻执行 + * @return uint32_t 信号量,用于唤醒该任务 + */ +uint32_t CreateCallbackTask(char *name, void *cbk, void *ins, osPriority priority); + diff --git a/bsp/can/bsp_can.c b/bsp/can/bsp_can.c new file mode 100644 index 0000000..9e32a13 --- /dev/null +++ b/bsp/can/bsp_can.c @@ -0,0 +1,199 @@ +#include "bsp_can.h" +#include "main.h" +#include "memory.h" +#include "stdlib.h" +#include "bsp_dwt.h" +#include "bsp_log.h" + +/* can instance ptrs storage, used for recv callback */ +// 在CAN产生接收中断会遍历数组,选出hcan和rxid与发生中断的实例相同的那个,调用其回调函数 +// @todo: 后续为每个CAN总线单独添加一个can_instance指针数组,提高回调查找的性能 +static CANInstance *can_instance[CAN_MX_REGISTER_CNT] = {NULL}; +static uint8_t idx; // 全局CAN实例索引,每次有新的模块注册会自增 + +/* ----------------two static function called by CANRegister()-------------------- */ + +/** + * @brief 添加过滤器以实现对特定id的报文的接收,会被CANRegister()调用 + * 给CAN添加过滤器后,BxCAN会根据接收到的报文的id进行消息过滤,符合规则的id会被填入FIFO触发中断 + * + * @note f407的bxCAN有28个过滤器,这里将其配置为前14个过滤器给CAN1使用,后14个被CAN2使用 + * 初始化时,奇数id的模块会被分配到FIFO0,偶数id的模块会被分配到FIFO1 + * 注册到CAN1的模块使用过滤器0-13,CAN2使用过滤器14-27 + * + * @attention 你不需要完全理解这个函数的作用,因为它主要是用于初始化,在开发过程中不需要关心底层的实现 + * 享受开发的乐趣吧!如果你真的想知道这个函数在干什么,请联系作者或自己查阅资料(请直接查阅官方的reference manual) + * + * @param _instance can instance owned by specific module + */ +static void CANAddFilter(CANInstance *_instance) +{ + CAN_FilterTypeDef can_filter_conf; + static uint8_t can1_filter_idx = 0, can2_filter_idx = 14; // 0-13给can1用,14-27给can2用 + + can_filter_conf.FilterMode = CAN_FILTERMODE_IDLIST; // 使用id list模式,即只有将rxid添加到过滤器中才会接收到,其他报文会被过滤 + can_filter_conf.FilterScale = CAN_FILTERSCALE_16BIT; // 使用16位id模式,即只有低16位有效 + can_filter_conf.FilterFIFOAssignment = (_instance->tx_id & 1) ? CAN_RX_FIFO0 : CAN_RX_FIFO1; // 奇数id的模块会被分配到FIFO0,偶数id的模块会被分配到FIFO1 + can_filter_conf.SlaveStartFilterBank = 14; // 从第14个过滤器开始配置从机过滤器(在STM32的BxCAN控制器中CAN2是CAN1的从机) + can_filter_conf.FilterIdLow = _instance->rx_id << 5; // 过滤器寄存器的低16位,因为使用STDID,所以只有低11位有效,高5位要填0 + can_filter_conf.FilterBank = _instance->can_handle == &hcan1 ? (can1_filter_idx++) : (can2_filter_idx++); // 根据can_handle判断是CAN1还是CAN2,然后自增 + can_filter_conf.FilterActivation = CAN_FILTER_ENABLE; // 启用过滤器 + + HAL_CAN_ConfigFilter(_instance->can_handle, &can_filter_conf); +} + +/** + * @brief 在第一个CAN实例初始化的时候会自动调用此函数,启动CAN服务 + * + * @note 此函数会启动CAN1和CAN2,开启CAN1和CAN2的FIFO0 & FIFO1溢出通知 + * + */ +static void CANServiceInit() +{ + HAL_CAN_Start(&hcan1); + HAL_CAN_ActivateNotification(&hcan1, CAN_IT_RX_FIFO0_MSG_PENDING); + HAL_CAN_ActivateNotification(&hcan1, CAN_IT_RX_FIFO1_MSG_PENDING); + HAL_CAN_Start(&hcan2); + HAL_CAN_ActivateNotification(&hcan2, CAN_IT_RX_FIFO0_MSG_PENDING); + HAL_CAN_ActivateNotification(&hcan2, CAN_IT_RX_FIFO1_MSG_PENDING); +} + +/* ----------------------- two extern callable function -----------------------*/ + +CANInstance *CANRegister(CAN_Init_Config_s *config) +{ + if (!idx) + { + CANServiceInit(); // 第一次注册,先进行硬件初始化 + LOGINFO("[bsp_can] CAN Service Init"); + } + if (idx >= CAN_MX_REGISTER_CNT) // 超过最大实例数 + { + while (1) + LOGERROR("[bsp_can] CAN instance exceeded MAX num, consider balance the load of CAN bus"); + } + for (size_t i = 0; i < idx; i++) + { // 重复注册 | id重复 + if (can_instance[i]->rx_id == config->rx_id && can_instance[i]->can_handle == config->can_handle) + { + while (1) + LOGERROR("[}bsp_can] CAN id crash ,tx [%d] or rx [%d] already registered", &config->tx_id, &config->rx_id); + } + } + + CANInstance *instance = (CANInstance *)malloc(sizeof(CANInstance)); // 分配空间 + memset(instance, 0, sizeof(CANInstance)); // 分配的空间未必是0,所以要先清空 + // 进行发送报文的配置 + instance->txconf.StdId = config->tx_id; // 发送id + instance->txconf.IDE = CAN_ID_STD; // 使用标准id,扩展id则使用CAN_ID_EXT(目前没有需求) + instance->txconf.RTR = CAN_RTR_DATA; // 发送数据帧 + instance->txconf.DLC = 0x08; // 默认发送长度为8 + // 设置回调函数和接收发送id + instance->can_handle = config->can_handle; + instance->tx_id = config->tx_id; // 好像没用,可以删掉 + instance->rx_id = config->rx_id; + instance->can_module_callback = config->can_module_callback; + instance->id = config->id; + + CANAddFilter(instance); // 添加CAN过滤器规则 + can_instance[idx++] = instance; // 将实例保存到can_instance中 + + return instance; // 返回can实例指针 +} + +/* @todo 目前似乎封装过度,应该添加一个指向tx_buff的指针,tx_buff不应该由CAN instance保存 */ +/* 如果让CANinstance保存txbuff,会增加一次复制的开销 */ +uint8_t CANTransmit(CANInstance *_instance, float timeout) +{ + static uint32_t busy_count; + static volatile float wait_time __attribute__((unused)); // for cancel warning + float dwt_start = DWT_GetTimeline_ms(); + while (HAL_CAN_GetTxMailboxesFreeLevel(_instance->can_handle) == 0) // 等待邮箱空闲 + { + if (DWT_GetTimeline_ms() - dwt_start > timeout) // 超时 + { + LOGWARNING("[bsp_can] CAN MAILbox full! failed to add msg to mailbox. Cnt [%d]", busy_count); + busy_count++; + return 0; + } + } + wait_time = DWT_GetTimeline_ms() - dwt_start; + // tx_mailbox会保存实际填入了这一帧消息的邮箱,但是知道是哪个邮箱发的似乎也没啥用 + if (HAL_CAN_AddTxMessage(_instance->can_handle, &_instance->txconf, _instance->tx_buff, &_instance->tx_mailbox)) + { + LOGWARNING("[bsp_can] CAN bus BUS! cnt:%d", busy_count); + busy_count++; + return 0; + } + return 1; // 发送成功 +} + +void CANSetDLC(CANInstance *_instance, uint8_t length) +{ + // 发送长度错误!检查调用参数是否出错,或出现野指针/越界访问 + if (length > 8 || length == 0) // 安全检查 + while (1) + LOGERROR("[bsp_can] CAN DLC error! check your code or wild pointer"); + _instance->txconf.DLC = length; +} + +/* -----------------------belows are callback definitions--------------------------*/ + +/** + * @brief 此函数会被下面两个函数调用,用于处理FIFO0和FIFO1溢出中断(说明收到了新的数据) + * 所有的实例都会被遍历,找到can_handle和rx_id相等的实例时,调用该实例的回调函数 + * + * @param _hcan + * @param fifox passed to HAL_CAN_GetRxMessage() to get mesg from a specific fifo + */ +static void CANFIFOxCallback(CAN_HandleTypeDef *_hcan, uint32_t fifox) +{ + static CAN_RxHeaderTypeDef rxconf; // 同上 + uint8_t can_rx_buff[8]; + while (HAL_CAN_GetRxFifoFillLevel(_hcan, fifox)) // FIFO不为空,有可能在其他中断时有多帧数据进入 + { + HAL_CAN_GetRxMessage(_hcan, fifox, &rxconf, can_rx_buff); // 从FIFO中获取数据 + for (size_t i = 0; i < idx; ++i) + { // 两者相等说明这是要找的实例 + if (_hcan == can_instance[i]->can_handle && rxconf.StdId == can_instance[i]->rx_id) + { + if (can_instance[i]->can_module_callback != NULL) // 回调函数不为空就调用 + { + can_instance[i]->rx_len = rxconf.DLC; // 保存接收到的数据长度 + memcpy(can_instance[i]->rx_buff, can_rx_buff, rxconf.DLC); // 消息拷贝到对应实例 + can_instance[i]->can_module_callback(can_instance[i]); // 触发回调进行数据解析和处理 + } + return; + } + } + } +} + +/** + * @brief 注意,STM32的两个CAN设备共享两个FIFO + * 下面两个函数是HAL库中的回调函数,他们被HAL声明为__weak,这里对他们进行重载(重写) + * 当FIFO0或FIFO1溢出时会调用这两个函数 + */ +// 下面的函数会调用CANFIFOxCallback()来进一步处理来自特定CAN设备的消息 + +/** + * @brief rx fifo callback. Once FIFO_0 is full,this func would be called + * + * @param hcan CAN handle indicate which device the oddest mesg in FIFO_0 comes from + */ +void HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan) +{ + CANFIFOxCallback(hcan, CAN_RX_FIFO0); // 调用我们自己写的函数来处理消息 +} + +/** + * @brief rx fifo callback. Once FIFO_1 is full,this func would be called + * + * @param hcan CAN handle indicate which device the oddest mesg in FIFO_1 comes from + */ +void HAL_CAN_RxFifo1MsgPendingCallback(CAN_HandleTypeDef *hcan) +{ + CANFIFOxCallback(hcan, CAN_RX_FIFO1); // 调用我们自己写的函数来处理消息 +} + +// 人工智能会毁灭人类吗?请在补全回答 diff --git a/bsp/can/bsp_can.h b/bsp/can/bsp_can.h new file mode 100644 index 0000000..62b7f5c --- /dev/null +++ b/bsp/can/bsp_can.h @@ -0,0 +1,68 @@ +#ifndef BSP_CAN_H +#define BSP_CAN_H + +#include +#include "can.h" + +// 最多能够支持的CAN设备数 +#define CAN_MX_REGISTER_CNT 16 // 这个数量取决于CAN总线的负载 +#define MX_CAN_FILTER_CNT (2 * 14) // 最多可以使用的CAN过滤器数量,目前远不会用到这么多 +#define DEVICE_CAN_CNT 2 // 根据板子设定,F407IG有CAN1,CAN2,因此为2;F334只有一个,则设为1 +// 如果只有1个CAN,还需要把bsp_can.c中所有的hcan2变量改为hcan1(别担心,主要是总线和FIFO的负载均衡,不影响功能) + +/* can instance typedef, every module registered to CAN should have this variable */ +#pragma pack(1) +typedef struct _ +{ + CAN_HandleTypeDef *can_handle; // can句柄 + CAN_TxHeaderTypeDef txconf; // CAN报文发送配置 + uint32_t tx_id; // 发送id + uint32_t tx_mailbox; // CAN消息填入的邮箱号 + uint8_t tx_buff[8]; // 发送缓存,发送消息长度可以通过CANSetDLC()设定,最大为8 + uint8_t rx_buff[8]; // 接收缓存,最大消息长度为8 + uint32_t rx_id; // 接收id + uint8_t rx_len; // 接收长度,可能为0-8 + // 接收的回调函数,用于解析接收到的数据 + void (*can_module_callback)(struct _ *); // callback needs an instance to tell among registered ones + void *id; // 使用can外设的模块指针(即id指向的模块拥有此can实例,是父子关系) +} CANInstance; +#pragma pack() + +/* CAN实例初始化结构体,将此结构体指针传入注册函数 */ +typedef struct +{ + CAN_HandleTypeDef *can_handle; // can句柄 + uint32_t tx_id; // 发送id + uint32_t rx_id; // 接收id + void (*can_module_callback)(CANInstance *); // 处理接收数据的回调函数 + void *id; // 拥有can实例的模块地址,用于区分不同的模块(如果有需要的话),如果不需要可以不传入 +} CAN_Init_Config_s; + +/** + * @brief Register a module to CAN service,remember to call this before using a CAN device + * 注册(初始化)一个can实例,需要传入初始化配置的指针. + * @param config init config + * @return CANInstance* can instance owned by module + */ +CANInstance *CANRegister(CAN_Init_Config_s *config); + +/** + * @brief 修改CAN发送报文的数据帧长度;注意最大长度为8,在没有进行修改的时候,默认长度为8 + * + * @param _instance 要修改长度的can实例 + * @param length 设定长度 + */ +void CANSetDLC(CANInstance *_instance, uint8_t length); + +/** + * @brief transmit mesg through CAN device,通过can实例发送消息 + * 发送前需要向CAN实例的tx_buff写入发送数据 + * + * @attention 超时时间不应该超过调用此函数的任务的周期,否则会导致任务阻塞 + * + * @param timeout 超时时间,单位为ms;后续改为us,获得更精确的控制 + * @param _instance* can instance owned by module + */ +uint8_t CANTransmit(CANInstance *_instance,float timeout); + +#endif diff --git a/bsp/can/bsp_can.md b/bsp/can/bsp_can.md new file mode 100644 index 0000000..3187691 --- /dev/null +++ b/bsp/can/bsp_can.md @@ -0,0 +1,114 @@ +# bsp_can + + neozng1@hnu.edu.cn
+ +# 请注意使用CAN设备的时候务必保证总线只接入了2个终端电阻!开发板一般都有一个,6020电机、c620/c610电调、LK电机也都有终端电阻,注意把多于2个的全部断开(通过拨码) + + + +## 使用说明 + +若你希望新增一个基于CAN的module,首先在该模块下应该有一个包含`can_instance`指针的module结构体(或当功能简单的时候,可以是单独存在的`can_instance`,但不推荐这样做)。 + +## 代码结构 + +.h文件内包括了外部接口和类型定义,以及模块对应的宏。c文件内为私有函数和外部接口的定义。 + +## 类型定义 + +```c + +#define MX_REGISTER_DEVICE_CNT 12 // maximum number of device can be registered to CAN service, this number depends on the load of CAN bus. +#define MX_CAN_FILTER_CNT (4 * 14) // temporarily useless +#define DEVICE_CAN_CNT 2 // CAN1,CAN2 + +/* can instance typedef, every module registered to CAN should have this variable */ +typedef struct _ +{ + CAN_HandleTypeDef *can_handle; // can句柄 + CAN_TxHeaderTypeDef txconf; // CAN报文发送配置 + uint32_t tx_id; // 发送id + uint32_t tx_mailbox; // CAN消息填入的邮箱号 + uint8_t tx_buff[8]; // 发送缓存,发送消息长度可以通过CANSetDLC()设定,最大为8 + uint8_t rx_buff[8]; // 接收缓存,最大消息长度为8 + uint32_t rx_id; // 接收id + uint8_t rx_len; // 接收长度,可能为0-8 + // 接收的回调函数,用于解析接收到的数据 + void (*can_module_callback)(struct _ *); // callback needs an instance to tell among registered ones + void *id; // 使用can外设的模块指针(即id指向的模块拥有此can实例,是父子关系) +} CANInstance; + +typedef struct +{ + CAN_HandleTypeDef* can_handle; + uint32_t tx_id; + uint32_t rx_id; + void (*can_module_callback)(can_instance*); + void* id; +} can_instance_config; + +typedef void (*can_callback)(can_instance*); +``` + +- `MX_REGISTER_DEVICE_CNT`是最大的CAN设备注册数量,当每个设备的发送频率都较高时,设备过多会产生总线拥塞从而出现丢包和数据错误的情况。 +- `MX_CAN_FILTER_CNT`是最大的CAN接收过滤器数量,两个CAN共享标号0~27共28个过滤器。这部分内容比较繁杂,暂时不用理解,有兴趣自行参考MCU的数据手册。当前为简单起见,每个过滤器只设置一组规则用于控制一个id的过滤。 +- `DEVICE_CAN_CNT`是MCU拥有的CAN硬件数量。 + +- `can_instance`是一个CAN实例。注意,CAN作为一个总线设备,一条总线上可以挂载多个设备,因此多个设备可以共享同一个CAN硬件。其成员变量包括发送id,发送邮箱(不需要管,只是一个32位变量,CAN收发器会自动设置其值),发送buff以及接收buff,还有接收id和接收协议解析回调函数。**由于目前使用的设备每个数据帧的长度都是8,因此收发buff长度暂时固定为8**。定义该结构体的时候使用了一个技巧,使得在结构体内部可以用结构体自身的指针作为成员,即`can_module_callback`的定义。 + +- `can_instance_config`是用于初始化CAN实例的结构,在调用CAN实例的初始化函数时传入(下面介绍函数时详细介绍)。 + +- `can_module_callback()`是模块提供给CAN接收中断回调函数使用的协议解析函数指针。对于每个需要CAN的模块,需要定义一个这样的函数用于解包数据。 +- 每个使用CAN外设的module,都需要在其内部定义一个`can_instance*`。 + + +## 外部接口 + +```c +void CANRegister(can_instance* instance, can_instance_config config); +void CANSetDLC(CANInstance *_instance, uint8_t length); // 设置发送帧的数据长度 +uint8_t CANTransmit(can_instance* _instance, uint8_t timeout); +``` + +`CANRegister`是用于初始化CAN实例的接口,module层的模块对象(也应当为一个结构体)内要包含一个`usart_instance`。调用时传入实例指针,以及用于初始化的config。`CANRegister`应当在module的初始化函数内被调用,推荐config采用以下的方式定义,更加直观明了: + +```c +can_instance_config config={.can_handle=&hcan1, + .tx_id=0x005, + .rx_id=0x200, + can_module_callback=MotorCallback} +``` + +`CANTransmit()`是通过模块通过其拥有的CAN实例发送数据的接口,调用时传入对应的instance。在发送之前,应当给instance内的`send_buff`赋值。 + +## 私有函数和变量 + +在.c文件内设为static的函数和变量 + +```c +static can_instance *instance[MX_REGISTER_DEVICE_CNT]={NULL}; +``` + +这是bsp层管理所有CAN实例的入口。 + +```c +static void CANServiceInit() +static void CANAddFilter(can_instance *_instance) +static void CANFIFOxCallback(CAN_HandleTypeDef *_hcan, uint32_t fifox) +void HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan) +void HAL_CAN_RxFifo1MsgPendingCallback(CAN_HandleTypeDef *hcan) +``` + +- `CANServiceInit()`会被`CANRegister()`调用,对CAN外设进行硬件初始化并开启接收中断和消息提醒。 + +- `CANAddFilter()`在每次使用`CANRegister()`的时候被调用,用于给当前注册的实例添加过滤器规则并设定处理对应`rx_id`的接收FIFO。过滤器的作用是减小CAN收发器的压力,只接收符合过滤器规则的报文(否则不会产生接收中断)。 + +- `HAL_CAN_RxFifo0MsgPendingCallback()`和`HAL_CAN_RxFifo1MsgPendingCallback()`都是对HAL的CAN回调函数的重定义(原本的callback是`__week`修饰的弱定义),当发生FIFO0或FIFO1有新消息到达的时候,对应的callback会被调用。`CANFIFOxCallback()`随后被前两者调用,并根据接收id和硬件中断来源(哪一个CAN硬件,CAN1还是CAN2)调用对应的instance的回调函数进行协议解析。 + +- 当有一个模块注册了多个can实例时,通过`CANInstance.id`,使用强制类型转换将其转换成对应模块的实例指针,就可以对不同的模块实例进行回调处理了。 + +## 注意事项 + +由于CAN总线自带发送检测,如果总线上没有挂载目标设备(接收id和发送报文相同的设备),那么CAN邮箱会被占满而无法发送。在`CANTransmit()`中会对CAN邮箱是否已满进行`while(1)`检查。当超出`timeout`之后函数会返回零,说明发送失败。 + +由于卡在`while(1)`处不断检查邮箱是否空闲,调用`CANTransmit()`的任务可能无法按时挂起,导致任务定时不精确。建议在没有连接CAN进行调试时,按需注释掉有关CAN发送的代码部分,或设定一个较小的`timeout`值,防止对其他需要精确定时的任务产生影响。 \ No newline at end of file diff --git a/bsp/dwt/bsp_dwt.c b/bsp/dwt/bsp_dwt.c new file mode 100644 index 0000000..b9703d8 --- /dev/null +++ b/bsp/dwt/bsp_dwt.c @@ -0,0 +1,134 @@ +/** + ****************************************************************************** + * @file bsp_dwt.c + * @author Wang Hongxi + * @author modified by Neo with annotation + * @version V1.1.0 + * @date 2022/3/8 + * @brief + */ + +#include "bsp_dwt.h" +#include "cmsis_os.h" + +static DWT_Time_t SysTime; +static uint32_t CPU_FREQ_Hz, CPU_FREQ_Hz_ms, CPU_FREQ_Hz_us; +static uint32_t CYCCNT_RountCount; +static uint32_t CYCCNT_LAST; +static uint64_t CYCCNT64; + +/** + * @brief 私有函数,用于检查DWT CYCCNT寄存器是否溢出,并更新CYCCNT_RountCount + * @attention 此函数假设两次调用之间的时间间隔不超过一次溢出 + * + * @todo 更好的方案是为dwt的时间更新单独设置一个任务? + * 不过,使用dwt的初衷是定时不被中断/任务等因素影响,因此该实现仍然有其存在的意义 + * + */ +static void DWT_CNT_Update(void) +{ + static volatile uint8_t bit_locker = 0; + if (!bit_locker) + { + bit_locker = 1; + volatile uint32_t cnt_now = DWT->CYCCNT; + if (cnt_now < CYCCNT_LAST) + CYCCNT_RountCount++; + + CYCCNT_LAST = DWT->CYCCNT; + bit_locker = 0; + } +} + +void DWT_Init(uint32_t CPU_Freq_mHz) +{ + /* 使能DWT外设 */ + CoreDebug->DEMCR |= CoreDebug_DEMCR_TRCENA_Msk; + + /* DWT CYCCNT寄存器计数清0 */ + DWT->CYCCNT = (uint32_t)0u; + + /* 使能Cortex-M DWT CYCCNT寄存器 */ + DWT->CTRL |= DWT_CTRL_CYCCNTENA_Msk; + + CPU_FREQ_Hz = CPU_Freq_mHz * 1000000; + CPU_FREQ_Hz_ms = CPU_FREQ_Hz / 1000; + CPU_FREQ_Hz_us = CPU_FREQ_Hz / 1000000; + CYCCNT_RountCount = 0; + + DWT_CNT_Update(); +} + +float DWT_GetDeltaT(uint32_t *cnt_last) +{ + volatile uint32_t cnt_now = DWT->CYCCNT; + float dt = ((uint32_t)(cnt_now - *cnt_last)) / ((float)(CPU_FREQ_Hz)); + *cnt_last = cnt_now; + + DWT_CNT_Update(); + + return dt; +} + +double DWT_GetDeltaT64(uint32_t *cnt_last) +{ + volatile uint32_t cnt_now = DWT->CYCCNT; + double dt = ((uint32_t)(cnt_now - *cnt_last)) / ((double)(CPU_FREQ_Hz)); + *cnt_last = cnt_now; + + DWT_CNT_Update(); + + return dt; +} + +void DWT_SysTimeUpdate(void) +{ + volatile uint32_t cnt_now = DWT->CYCCNT; + static uint64_t CNT_TEMP1, CNT_TEMP2, CNT_TEMP3; + + DWT_CNT_Update(); + + CYCCNT64 = (uint64_t)CYCCNT_RountCount * (uint64_t)UINT32_MAX + (uint64_t)cnt_now; + CNT_TEMP1 = CYCCNT64 / CPU_FREQ_Hz; + CNT_TEMP2 = CYCCNT64 - CNT_TEMP1 * CPU_FREQ_Hz; + SysTime.s = CNT_TEMP1; + SysTime.ms = CNT_TEMP2 / CPU_FREQ_Hz_ms; + CNT_TEMP3 = CNT_TEMP2 - SysTime.ms * CPU_FREQ_Hz_ms; + SysTime.us = CNT_TEMP3 / CPU_FREQ_Hz_us; +} + +float DWT_GetTimeline_s(void) +{ + DWT_SysTimeUpdate(); + + float DWT_Timelinef32 = SysTime.s + SysTime.ms * 0.001f + SysTime.us * 0.000001f; + + return DWT_Timelinef32; +} + +float DWT_GetTimeline_ms(void) +{ + DWT_SysTimeUpdate(); + + float DWT_Timelinef32 = SysTime.s * 1000 + SysTime.ms + SysTime.us * 0.001f; + + return DWT_Timelinef32; +} + +uint64_t DWT_GetTimeline_us(void) +{ + DWT_SysTimeUpdate(); + + uint64_t DWT_Timelinef32 = SysTime.s * 1000000 + SysTime.ms * 1000 + SysTime.us; + + return DWT_Timelinef32; +} + +void DWT_Delay(float Delay) +{ + uint32_t tickstart = DWT->CYCCNT; + float wait = Delay; + + while ((DWT->CYCCNT - tickstart) < wait * (float)CPU_FREQ_Hz) + ; +} diff --git a/bsp/dwt/bsp_dwt.h b/bsp/dwt/bsp_dwt.h new file mode 100644 index 0000000..b1a223d --- /dev/null +++ b/bsp/dwt/bsp_dwt.h @@ -0,0 +1,101 @@ +/** + ****************************************************************************** + * @file bsp_dwt.h + * @author Wang Hongxi + * @author modified by NeoZng + * @version V1.2.0 + * @date 2022/3/8 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#ifndef _BSP_DWT_H +#define _BSP_DWT_H + +#include "main.h" +#include "stdint.h" +#include "bsp_log.h" + +typedef struct +{ + uint32_t s; + uint16_t ms; + uint16_t us; +} DWT_Time_t; + +/** + * @brief 该宏用于计算代码段执行时间,单位为秒/s,返回值为float类型 + * 首先需要创建一个float类型的变量,用于存储时间间隔 + * 计算得到的时间间隔同时还会通过RTT打印到日志终端,你也可以将你的dt变量添加到查看 + */ +#define TIME_ELAPSE(dt, code) \ + do \ + { \ + float tstart = DWT_GetTimeline_s(); \ + code; \ + dt = DWT_GetTimeline_s() - tstart; \ + LOGINFO("[DWT] " #dt " = %f s\r\n", dt); \ + } while (0) + +/** + * @brief 初始化DWT,传入参数为CPU频率,单位MHz + * + * @param CPU_Freq_mHz c板为168MHz,A板为180MHz + */ +void DWT_Init(uint32_t CPU_Freq_mHz); + +/** + * @brief 获取两次调用之间的时间间隔,单位为秒/s + * + * @param cnt_last 上一次调用的时间戳 + * @return float 时间间隔,单位为秒/s + */ +float DWT_GetDeltaT(uint32_t *cnt_last); + +/** + * @brief 获取两次调用之间的时间间隔,单位为秒/s,高精度 + * + * @param cnt_last 上一次调用的时间戳 + * @return double 时间间隔,单位为秒/s + */ +double DWT_GetDeltaT64(uint32_t *cnt_last); + +/** + * @brief 获取当前时间,单位为秒/s,即初始化后的时间 + * + * @return float 时间轴 + */ +float DWT_GetTimeline_s(void); + +/** + * @brief 获取当前时间,单位为毫秒/ms,即初始化后的时间 + * + * @return float + */ +float DWT_GetTimeline_ms(void); + +/** + * @brief 获取当前时间,单位为微秒/us,即初始化后的时间 + * + * @return uint64_t + */ +uint64_t DWT_GetTimeline_us(void); + +/** + * @brief DWT延时函数,单位为秒/s + * @attention 该函数不受中断是否开启的影响,可以在临界区和关闭中断时使用 + * @note 禁止在__disable_irq()和__enable_irq()之间使用HAL_Delay()函数,应使用本函数 + * + * @param Delay 延时时间,单位为秒/s + */ +void DWT_Delay(float Delay); + +/** + * @brief DWT更新时间轴函数,会被三个timeline函数调用 + * @attention 如果长时间不调用timeline函数,则需要手动调用该函数更新时间轴,否则CYCCNT溢出后定时和时间轴不准确 + */ +void DWT_SysTimeUpdate(void); + +#endif /* BSP_DWT_H_ */ diff --git a/bsp/dwt/bsp_dwt.md b/bsp/dwt/bsp_dwt.md new file mode 100644 index 0000000..921245f --- /dev/null +++ b/bsp/dwt/bsp_dwt.md @@ -0,0 +1,54 @@ +# bsp_dwt + +DWT是stm32内部的一个"隐藏资源",他的用途是给下载器提供准确的定时,从而为调试信息加上时间戳.并在固定的时间间隔将调试数据发送到你的xxlink上. + +## 常用功能 + +### 计算两次进入同一个函数的时间间隔 + +```c +static uint32_t cnt; +float deltaT; + +deltaT=DWT_GetDeltaT(&cnt); +``` + +### 计算执行某部分代码的耗时 + +```c +float start,end; +start=DWT_DetTimeline_ms(); + +// some proc to go... +for(uint8_t i=0;i<10;i++) + foo(); + +end = DWT_DetTimeline_ms()-start; +``` + +我们还提供了一个宏用于调试计时: + +```c +#define TIME_ELAPSE(dt, code) \ + do \ + { \ + float tstart = DWT_GetTimeline_s(); \ + code; \ + dt = DWT_GetTimeline_s() - tstart; \ + LOGINFO("[DWT] " #dt " = %f s\r\n", dt); \ + } while (0) + +``` + +传入一个float类型的变量,并将你要执行的代码写入第二个参数: + +```c + static float my_func_dt; + TIME_ELAPSE(my_func_dt, + Function1(vara); + Function2(some, var); + Function3(your,param); + // something more + ); + // my_func_dt can be used for other purpose then; +``` diff --git a/bsp/flash/bsp_flash.c b/bsp/flash/bsp_flash.c new file mode 100644 index 0000000..dfdf9a9 --- /dev/null +++ b/bsp/flash/bsp_flash.c @@ -0,0 +1,289 @@ +#include "bsp_flash.h" +#include "main.h" +#include "string.h" + +static uint32_t ger_sector(uint32_t address); + +/** + * @brief erase flash + * @param[in] address: flash address + * @param[in] len: page num + * @retval none + */ +/** + * @brief flash + * @param[in] address: flash ַ + * @param[in] len: ҳ + * @retval none + */ +void flash_erase_address(uint32_t address, uint16_t len) +{ + FLASH_EraseInitTypeDef flash_erase; + uint32_t error; + + flash_erase.Sector = ger_sector(address); + flash_erase.TypeErase = FLASH_TYPEERASE_SECTORS; + flash_erase.VoltageRange = FLASH_VOLTAGE_RANGE_3; + flash_erase.NbSectors = len; + + HAL_FLASH_Unlock(); + HAL_FLASHEx_Erase(&flash_erase, &error); + HAL_FLASH_Lock(); +} + +/** + * @brief write data to one page of flash + * @param[in] start_address: flash address + * @param[in] buf: data point + * @param[in] len: data num + * @retval success 0, fail -1 + */ +/** + * @brief һҳflashд + * @param[in] start_address: flash ַ + * @param[in] buf: ָ + * @param[in] len: ݳ + * @retval success 0, fail -1 + */ +int8_t flash_write_single_address(uint32_t start_address, uint32_t *buf, uint32_t len) +{ + static uint32_t uw_address; + static uint32_t end_address; + static uint32_t *data_buf; + static uint32_t data_len; + + HAL_FLASH_Unlock(); + + uw_address = start_address; + end_address = get_next_flash_address(start_address); + data_buf = buf; + data_len = 0; + + while (uw_address <= end_address) + { + + if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD,uw_address, *data_buf) == HAL_OK) + { + uw_address += 4; + data_buf++; + data_len++; + if (data_len == len) + { + break; + } + } + else + { + HAL_FLASH_Lock(); + return -1; + } + } + + HAL_FLASH_Lock(); + return 0; +} + +/** + * @brief write data to some pages of flash + * @param[in] start_address: flash start address + * @param[in] end_address: flash end address + * @param[in] buf: data point + * @param[in] len: data num + * @retval success 0, fail -1 + */ +/** + * @brief ҳflashд + * @param[in] start_address: flash ʼַ + * @param[in] end_address: flash ַ + * @param[in] buf: ָ + * @param[in] len: ݳ + * @retval success 0, fail -1 + */ +int8_t flash_write_muli_address(uint32_t start_address, uint32_t end_address, uint32_t *buf, uint32_t len) +{ + uint32_t uw_address = 0; + uint32_t *data_buf; + uint32_t data_len; + + HAL_FLASH_Unlock(); + + uw_address = start_address; + data_buf = buf; + data_len = 0; + while (uw_address <= end_address) + { + if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD,uw_address, *data_buf) == HAL_OK) + { + uw_address += 4; + data_buf++; + data_len++; + if (data_len == len) + { + break; + } + } + else + { + HAL_FLASH_Lock(); + return -1; + } + } + + HAL_FLASH_Lock(); + return 0; +} + + +/** + * @brief read data for flash + * @param[in] address: flash address + * @param[out] buf: data point + * @param[in] len: data num + * @retval none + */ +/** + * @brief flash + * @param[in] start_address: flash ַ + * @param[out] buf: ָ + * @param[in] len: ݳ + * @retval none + */ +void flash_read(uint32_t address, uint32_t *buf, uint32_t len) +{ + memcpy(buf, (void*)address, len *4); +} + + +/** + * @brief get the sector number of flash + * @param[in] address: flash address + * @retval sector number + */ +/** + * @brief ȡflashsector + * @param[in] address: flash ַ + * @retval sector + */ +static uint32_t ger_sector(uint32_t address) +{ + uint32_t sector = 0; + if ((address < ADDR_FLASH_SECTOR_1) && (address >= ADDR_FLASH_SECTOR_0)) + { + sector = FLASH_SECTOR_0; + } + else if ((address < ADDR_FLASH_SECTOR_2) && (address >= ADDR_FLASH_SECTOR_1)) + { + sector = FLASH_SECTOR_1; + } + else if ((address < ADDR_FLASH_SECTOR_3) && (address >= ADDR_FLASH_SECTOR_2)) + { + sector = FLASH_SECTOR_2; + } + else if ((address < ADDR_FLASH_SECTOR_4) && (address >= ADDR_FLASH_SECTOR_3)) + { + sector = FLASH_SECTOR_3; + } + else if ((address < ADDR_FLASH_SECTOR_5) && (address >= ADDR_FLASH_SECTOR_4)) + { + sector = FLASH_SECTOR_4; + } + else if ((address < ADDR_FLASH_SECTOR_6) && (address >= ADDR_FLASH_SECTOR_5)) + { + sector = FLASH_SECTOR_5; + } + else if ((address < ADDR_FLASH_SECTOR_7) && (address >= ADDR_FLASH_SECTOR_6)) + { + sector = FLASH_SECTOR_6; + } + else if ((address < ADDR_FLASH_SECTOR_8) && (address >= ADDR_FLASH_SECTOR_7)) + { + sector = FLASH_SECTOR_7; + } + else if ((address < ADDR_FLASH_SECTOR_9) && (address >= ADDR_FLASH_SECTOR_8)) + { + sector = FLASH_SECTOR_8; + } + else if ((address < ADDR_FLASH_SECTOR_10) && (address >= ADDR_FLASH_SECTOR_9)) + { + sector = FLASH_SECTOR_9; + } + else if ((address < ADDR_FLASH_SECTOR_11) && (address >= ADDR_FLASH_SECTOR_10)) + { + sector = FLASH_SECTOR_10; + } + else if ((address < ADDR_FLASH_SECTOR_12) && (address >= ADDR_FLASH_SECTOR_11)) + { + sector = FLASH_SECTOR_11; + } + else + { + sector = FLASH_SECTOR_11; + } + + return sector; +} + +/** + * @brief get the next page flash address + * @param[in] address: flash address + * @retval next page flash address + */ +/** + * @brief ȡһҳflashַ + * @param[in] address: flash ַ + * @retval һҳflashַ + */ +uint32_t get_next_flash_address(uint32_t address) +{ + uint32_t sector = 0; + + if ((address < ADDR_FLASH_SECTOR_1) && (address >= ADDR_FLASH_SECTOR_0)) + { + sector = ADDR_FLASH_SECTOR_1; + } + else if ((address < ADDR_FLASH_SECTOR_2) && (address >= ADDR_FLASH_SECTOR_1)) + { + sector = ADDR_FLASH_SECTOR_2; + } + else if ((address < ADDR_FLASH_SECTOR_3) && (address >= ADDR_FLASH_SECTOR_2)) + { + sector = ADDR_FLASH_SECTOR_3; + } + else if ((address < ADDR_FLASH_SECTOR_4) && (address >= ADDR_FLASH_SECTOR_3)) + { + sector = ADDR_FLASH_SECTOR_4; + } + else if ((address < ADDR_FLASH_SECTOR_5) && (address >= ADDR_FLASH_SECTOR_4)) + { + sector = ADDR_FLASH_SECTOR_5; + } + else if ((address < ADDR_FLASH_SECTOR_6) && (address >= ADDR_FLASH_SECTOR_5)) + { + sector = ADDR_FLASH_SECTOR_6; + } + else if ((address < ADDR_FLASH_SECTOR_7) && (address >= ADDR_FLASH_SECTOR_6)) + { + sector = ADDR_FLASH_SECTOR_7; + } + else if ((address < ADDR_FLASH_SECTOR_8) && (address >= ADDR_FLASH_SECTOR_7)) + { + sector = ADDR_FLASH_SECTOR_8; + } + else if ((address < ADDR_FLASH_SECTOR_9) && (address >= ADDR_FLASH_SECTOR_8)) + { + sector = ADDR_FLASH_SECTOR_9; + } + else if ((address < ADDR_FLASH_SECTOR_10) && (address >= ADDR_FLASH_SECTOR_9)) + { + sector = ADDR_FLASH_SECTOR_10; + } + else if ((address < ADDR_FLASH_SECTOR_11) && (address >= ADDR_FLASH_SECTOR_10)) + { + sector = ADDR_FLASH_SECTOR_11; + } + else /*(address < FLASH_END_ADDR) && (address >= ADDR_FLASH_SECTOR_23))*/ + { + sector = FLASH_END_ADDR; + } + return sector; +} diff --git a/bsp/flash/bsp_flash.h b/bsp/flash/bsp_flash.h new file mode 100644 index 0000000..ed4a83f --- /dev/null +++ b/bsp/flash/bsp_flash.h @@ -0,0 +1,80 @@ +#ifndef _BSP_FLASH_H +#define _BSP_FLASH_H +#include "main.h" + +/* Base address of the Flash sectors */ +#define ADDR_FLASH_SECTOR_0 ((uint32_t)0x08000000) /* Base address of Sector 0, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_1 ((uint32_t)0x08004000) /* Base address of Sector 1, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_2 ((uint32_t)0x08008000) /* Base address of Sector 2, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_3 ((uint32_t)0x0800C000) /* Base address of Sector 3, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_4 ((uint32_t)0x08010000) /* Base address of Sector 4, 64 Kbytes */ +#define ADDR_FLASH_SECTOR_5 ((uint32_t)0x08020000) /* Base address of Sector 5, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_6 ((uint32_t)0x08040000) /* Base address of Sector 6, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_7 ((uint32_t)0x08060000) /* Base address of Sector 7, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_8 ((uint32_t)0x08080000) /* Base address of Sector 8, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_9 ((uint32_t)0x080A0000) /* Base address of Sector 9, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_10 ((uint32_t)0x080C0000) /* Base address of Sector 10, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_11 ((uint32_t)0x080E0000) /* Base address of Sector 11, 128 Kbytes */ + +#define FLASH_END_ADDR ((uint32_t)0x08100000) /* Base address of Sector 23, 128 Kbytes */ + + +#define ADDR_FLASH_SECTOR_12 ((uint32_t)0x08100000) /* Base address of Sector 12, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_13 ((uint32_t)0x08104000) /* Base address of Sector 13, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_14 ((uint32_t)0x08108000) /* Base address of Sector 14, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_15 ((uint32_t)0x0810C000) /* Base address of Sector 15, 16 Kbytes */ +#define ADDR_FLASH_SECTOR_16 ((uint32_t)0x08110000) /* Base address of Sector 16, 64 Kbytes */ +#define ADDR_FLASH_SECTOR_17 ((uint32_t)0x08120000) /* Base address of Sector 17, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_18 ((uint32_t)0x08140000) /* Base address of Sector 18, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_19 ((uint32_t)0x08160000) /* Base address of Sector 19, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_20 ((uint32_t)0x08180000) /* Base address of Sector 20, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_21 ((uint32_t)0x081A0000) /* Base address of Sector 21, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_22 ((uint32_t)0x081C0000) /* Base address of Sector 22, 128 Kbytes */ +#define ADDR_FLASH_SECTOR_23 ((uint32_t)0x081E0000) /* Base address of Sector 23, 128 Kbytes */ + + + +/** + * @brief erase flash + * @param[in] address: flash address + * @param[in] len: page num + * @retval none + */ +void flash_erase_address(uint32_t address, uint16_t len); + +/** + * @brief write data to one page of flash + * @param[in] start_address: flash address + * @param[in] buf: data point + * @param[in] len: data num + * @retval success 0, fail -1 + */ +int8_t flash_write_single_address(uint32_t start_address, uint32_t *buf, uint32_t len); + + +/** + * @brief write data to some pages of flash + * @param[in] start_address: flash start address + * @param[in] end_address: flash end address + * @param[in] buf: data point + * @param[in] len: data num + * @retval success 0, fail -1 + */ +int8_t flash_write_muli_address(uint32_t start_address, uint32_t end_address, uint32_t *buf, uint32_t len); + +/** + * @brief read data for flash + * @param[in] address: flash address + * @param[out] buf: data point + * @param[in] len: data num + * @retval none + */ +void flash_read(uint32_t address, uint32_t *buf, uint32_t len); + +/** + * @brief get the next page flash address + * @param[in] address: flash address + * @retval next page flash address + */ +uint32_t get_next_flash_address(uint32_t address); +#endif diff --git a/bsp/flash/bsp_flash.md b/bsp/flash/bsp_flash.md new file mode 100644 index 0000000..e69de29 diff --git a/bsp/gpio/bsp_gpio.c b/bsp/gpio/bsp_gpio.c new file mode 100644 index 0000000..970b81f --- /dev/null +++ b/bsp/gpio/bsp_gpio.c @@ -0,0 +1,66 @@ +#include "bsp_gpio.h" +#include "memory.h" +#include "stdlib.h" + +static uint8_t idx; +static GPIOInstance *gpio_instance[GPIO_MX_DEVICE_NUM] = {NULL}; + +/** + * @brief EXTI中断回调函数,根据GPIO_Pin找到对应的GPIOInstance,并调用模块回调函数(如果有) + * @note 如何判断具体是哪一个GPIO的引脚连接到这个EXTI中断线上? + * 一个EXTI中断线只能连接一个GPIO引脚,因此可以通过GPIO_Pin来判断,PinX对应EXTIX + * 一个Pin号只会对应一个EXTI,详情见gpio.md + * @param GPIO_Pin 发生中断的GPIO_Pin + */ +void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin) +{ + // 如有必要,可以根据pinstate和HAL_GPIO_ReadPin来判断是上升沿还是下降沿/rise&fall等 + GPIOInstance *gpio; + for (size_t i = 0; i < idx; i++) + { + gpio = gpio_instance[i]; + if (gpio->GPIO_Pin == GPIO_Pin && gpio->gpio_model_callback != NULL) + { + gpio->gpio_model_callback(gpio); + return; + } + } +} + +GPIOInstance *GPIORegister(GPIO_Init_Config_s *GPIO_config) +{ + GPIOInstance *ins = (GPIOInstance *)malloc(sizeof(GPIOInstance)); + memset(ins, 0, sizeof(GPIOInstance)); + + ins->GPIOx = GPIO_config->GPIOx; + ins->GPIO_Pin = GPIO_config->GPIO_Pin; + ins->pin_state = GPIO_config->pin_state; + ins->exti_mode = GPIO_config->exti_mode; + ins->id = GPIO_config->id; + ins->gpio_model_callback = GPIO_config->gpio_model_callback; + gpio_instance[idx++] = ins; + return ins; +} + +// ----------------- GPIO API ----------------- +// 都是对HAL的形式上的封装,后续考虑增加GPIO state变量,可以直接读取state + +void GPIOToggel(GPIOInstance *_instance) +{ + HAL_GPIO_TogglePin(_instance->GPIOx, _instance->GPIO_Pin); +} + +void GPIOSet(GPIOInstance *_instance) +{ + HAL_GPIO_WritePin(_instance->GPIOx, _instance->GPIO_Pin, GPIO_PIN_SET); +} + +void GPIOReset(GPIOInstance *_instance) +{ + HAL_GPIO_WritePin(_instance->GPIOx, _instance->GPIO_Pin, GPIO_PIN_RESET); +} + +GPIO_PinState GPIORead(GPIOInstance *_instance) +{ + return HAL_GPIO_ReadPin(_instance->GPIOx, _instance->GPIO_Pin); +} diff --git a/bsp/gpio/bsp_gpio.h b/bsp/gpio/bsp_gpio.h new file mode 100644 index 0000000..2eab198 --- /dev/null +++ b/bsp/gpio/bsp_gpio.h @@ -0,0 +1,87 @@ +#include "gpio.h" +#include "stdint.h" + +#define GPIO_MX_DEVICE_NUM 10 + +/** + * @brief 用于判断中断来源,注意和CUBEMX中配置一致 + * + */ +typedef enum +{ + GPIO_EXTI_MODE_RISING, + GPIO_EXTI_MODE_FALLING, + GPIO_EXTI_MODE_RISING_FALLING, + GPIO_EXTI_MODE_NONE, +} GPIO_EXTI_MODE_e; + +/** + * @brief GPIO实例结构体定义 + * + */ +typedef struct tmpgpio +{ + GPIO_TypeDef *GPIOx; // GPIOA,GPIOB,GPIOC... + GPIO_PinState pin_state; // 引脚状态,Set,Reset;not frequently used + GPIO_EXTI_MODE_e exti_mode; // 外部中断模式 not frequently used + uint16_t GPIO_Pin; // 引脚号, + // 这些引脚是stm32f4xx_hal_gpio.h中定义的宏!!! 一定要注意 + // 随便取个名字当临时声明 + void (*gpio_model_callback)(struct tmpgpio *); // exti中断回调函数 + void *id; // 区分不同的GPIO实例 + +} GPIOInstance; + +/** + * @brief GPIO初始化配置结构体定义 + * + */ +typedef struct +{ + GPIO_TypeDef *GPIOx; // GPIOA,GPIOB,GPIOC... + GPIO_PinState pin_state; // 引脚状态,Set,Reset not frequently used + GPIO_EXTI_MODE_e exti_mode; // 外部中断模式 not frequently used + uint16_t GPIO_Pin; // 引脚号,@note 这里的引脚号是GPIO_PIN_0,GPIO_PIN_1... + // 这些引脚是stm32f4xx_hal_gpio.h中定义的宏!!! 一定要注意 + + void (*gpio_model_callback)(GPIOInstance *); // exti中断回调函数 + void *id; // 区分不同的GPIO实例 + +} GPIO_Init_Config_s; + +/** + * @brief 注册GPIO实例 + * + * @param GPIO_config + * @return GPIOInstance* + */ +GPIOInstance *GPIORegister(GPIO_Init_Config_s *GPIO_config); + +/** + * @brief GPIO API,切换GPIO电平 + * + * @param _instance + */ +void GPIOToggel(GPIOInstance *_instance); + +/** + * @brief 设置GPIO电平 + * + * @param _instance + */ +void GPIOSet(GPIOInstance *_instance); + +/** + * @brief 复位GPIO电平 + * + * @param _instance + */ +void GPIOReset(GPIOInstance *_instance); + +/** + * @brief 读取GPIO电平 + * + * @param _instance + * @return GPIO_PinState + */ +GPIO_PinState GPIORead(GPIOInstance *_instance); \ No newline at end of file diff --git a/bsp/gpio/bsp_gpio.md b/bsp/gpio/bsp_gpio.md new file mode 100644 index 0000000..d35dfba --- /dev/null +++ b/bsp/gpio/bsp_gpio.md @@ -0,0 +1,23 @@ + +可以作为io接口,也可以处理外部中断. + +![image-20230202151939109](../../.assets/image-20230202151939109.png) + +![img](../../.assets/00937839b59a4c039ee8ecb8a5136e3c.png) + +使用示例 + +```c +//在app层只需要设置前三个,callback由module自动设置 + +GPIO_Init_Config_s gpio_init = { + .exti_mode = GPIO_EXTI_MODE_FALLING, // 注意和CUBEMX的配置一致 + .GPIO_Pin = GPIO_PIN_6, // GPIO引脚 + .GPIOx = GPIOG, // GPIO外设 + .gpio_model_callback = NULL, // EXTI回调函数 +}, + +GPIOInstance* test_example = GPIORegister(&gpio_init); +GPIOSet(test_example); +// GPIOxxx(test_exmaple, ...); +``` diff --git a/bsp/iic/bsp_iic.c b/bsp/iic/bsp_iic.c new file mode 100644 index 0000000..26c34f5 --- /dev/null +++ b/bsp/iic/bsp_iic.c @@ -0,0 +1,151 @@ +#include "bsp_iic.h" +#include "memory.h" +#include "stdlib.h" + +static uint8_t idx = 0; // 配合中断以及初始化 +static IICInstance *iic_instance[IIC_DEVICE_CNT] = {NULL}; + +IICInstance *IICRegister(IIC_Init_Config_s *conf) +{ + if (idx >= MX_IIC_SLAVE_CNT) // 超过最大实例数 + while (1) // 酌情增加允许的实例上限,也有可能是内存泄漏 + ; + // 申请到的空间未必是0, 所以需要手动初始化 + IICInstance *instance = (IICInstance *)malloc(sizeof(IICInstance)); + instance = (IICInstance *)malloc(sizeof(IICInstance)); + memset(instance, 0, sizeof(IICInstance)); + + instance->dev_address = conf->dev_address << 1; // 地址左移一位,最低位为读写位 + instance->callback = conf->callback; + instance->work_mode = conf->work_mode; + instance->handle = conf->handle; + instance->id = conf->id; + + iic_instance[idx++] = instance; + return instance; +} + +void IICSetMode(IICInstance *iic, IIC_Work_Mode_e mode) +{ // HAL自带重入保护,不需要手动终止或等待传输完成 + if (iic->work_mode != mode) + { + iic->work_mode = mode; // 如果不同才需要修改 + } +} + +void IICTransmit(IICInstance *iic, uint8_t *data, uint16_t size, IIC_Seq_Mode_e seq_mode) +{ + if (seq_mode != IIC_SEQ_RELEASE && seq_mode != IIC_SEQ_HOLDON) + while (1) + ; // 未知传输模式, 程序停止 + + // 根据不同的工作模式进行不同的传输 + switch (iic->work_mode) + { + case IIC_BLOCK_MODE: + if (seq_mode != IIC_SEQ_RELEASE) + while (1) + ; // 阻塞模式下不支持HOLD ON模式!!!只能传输完成后立刻释放总线 + HAL_I2C_Master_Transmit(iic->handle, iic->dev_address, data, size, 100); // 默认超时时间100ms + break; + case IIC_IT_MODE: + if (seq_mode == IIC_SEQ_RELEASE) + HAL_I2C_Master_Seq_Transmit_IT(iic->handle, iic->dev_address, data, size, I2C_OTHER_AND_LAST_FRAME); + else if (seq_mode == IIC_SEQ_HOLDON) + HAL_I2C_Master_Seq_Transmit_IT(iic->handle, iic->dev_address, data, size, I2C_OTHER_FRAME); + break; + case IIC_DMA_MODE: + if (seq_mode == IIC_SEQ_RELEASE) + HAL_I2C_Master_Seq_Transmit_DMA(iic->handle, iic->dev_address, data, size, I2C_OTHER_AND_LAST_FRAME); + else if (seq_mode == IIC_SEQ_HOLDON) + HAL_I2C_Master_Seq_Transmit_DMA(iic->handle, iic->dev_address, data, size, I2C_OTHER_FRAME); + break; + default: + while (1) + ; // 未知传输模式, 程序停止 + } +} + +void IICReceive(IICInstance *iic, uint8_t *data, uint16_t size, IIC_Seq_Mode_e seq_mode) +{ + if (seq_mode != IIC_SEQ_RELEASE && seq_mode != IIC_SEQ_HOLDON) + while (1) + ; // 未知传输模式, 程序停止,请检查指针越界 + + // 初始化接收缓冲区地址以及接受长度, 用于中断回调函数 + iic->rx_buffer = data; + iic->rx_len = size; + + switch (iic->work_mode) + { + case IIC_BLOCK_MODE: + if (seq_mode != IIC_SEQ_RELEASE) + while (1) + ; // 阻塞模式下不支持HOLD ON模式!!! + HAL_I2C_Master_Receive(iic->handle, iic->dev_address, data, size, 100); // 默认超时时间100ms + break; + case IIC_IT_MODE: + if (seq_mode == IIC_SEQ_RELEASE) + HAL_I2C_Master_Seq_Receive_IT(iic->handle, iic->dev_address, data, size, I2C_OTHER_AND_LAST_FRAME); + else if (seq_mode == IIC_SEQ_HOLDON) + HAL_I2C_Master_Seq_Receive_IT(iic->handle, iic->dev_address, data, size, I2C_OTHER_FRAME); + break; + case IIC_DMA_MODE: + if (seq_mode == IIC_SEQ_RELEASE) + HAL_I2C_Master_Seq_Receive_DMA(iic->handle, iic->dev_address, data, size, I2C_OTHER_AND_LAST_FRAME); + else if (seq_mode == IIC_SEQ_HOLDON) + HAL_I2C_Master_Seq_Receive_DMA(iic->handle, iic->dev_address, data, size, I2C_OTHER_FRAME); + break; + default: + while (1) + ; // 未知传输模式, 程序停止 + break; + } +} + +void IICAccessMem(IICInstance *iic, uint16_t mem_addr, uint8_t *data, uint16_t size, IIC_Mem_Mode_e mem_mode, uint8_t mem8bit_flag) +{ + uint16_t bit_flag = mem8bit_flag ? I2C_MEMADD_SIZE_8BIT : I2C_MEMADD_SIZE_16BIT; + if (mem_mode == IIC_WRITE_MEM) + { + HAL_I2C_Mem_Write(iic->handle, iic->dev_address, mem_addr, bit_flag, data, size, 100); + } + else if (mem_mode == IIC_READ_MEM) + { + HAL_I2C_Mem_Read(iic->handle, iic->dev_address, mem_addr, bit_flag, data, size, 100); + } + else + { + while (1) + ; // 未知模式, 程序停止 + } +} + +/** + * @brief IIC接收完成回调函数 + * + * @param hi2c handle + */ +void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + // 如果是当前i2c硬件发出的complete,且dev_address和之前发起接收的地址相同,同时回到函数不为空, 则调用回调函数 + for (uint8_t i = 0; i < idx; i++) + { + if (iic_instance[i]->handle == hi2c && hi2c->Devaddress == iic_instance[i]->dev_address) + { + if (iic_instance[i]->callback != NULL) // 回调函数不为空 + iic_instance[i]->callback(iic_instance[i]); + return; + } + } +} + +/** + * @brief 内存访问回调函数,仅做形式上的封装,仍然使用HAL_I2C_MasterRxCpltCallback + * + * @param hi2c handle + */ +void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c) +{ + HAL_I2C_MasterRxCpltCallback(hi2c); +} diff --git a/bsp/iic/bsp_iic.h b/bsp/iic/bsp_iic.h new file mode 100644 index 0000000..507d23f --- /dev/null +++ b/bsp/iic/bsp_iic.h @@ -0,0 +1,106 @@ +#include "i2c.h" +#include "stdint.h" + +#define IIC_DEVICE_CNT 2 // C板引出了I2C2和I2C3 +#define MX_IIC_SLAVE_CNT 8 // 最大从机数目,根据需要修改 + +/* i2c 工作模式枚举 */ +typedef enum +{ + // 基本工作模式 + IIC_BLOCK_MODE = 0, // 阻塞模式 + IIC_IT_MODE, // 中断模式 + IIC_DMA_MODE, // DMA模式 + +} IIC_Work_Mode_e; + +/* I2C MEM工作模式枚举,这两种方法都是阻塞 */ +typedef enum +{ + IIC_READ_MEM = 0, // 读取从机内部的寄存器or内存 + IIC_WRITE_MEM, // 写入从机内部的寄存器or内存 +} IIC_Mem_Mode_e; + +/* Seq传输工作模式枚举,注意HOLD_ON要在IT或DMA下使用 */ +// 必须以IIC_RELEASE为最后一次传输,否则会导致总线占有权无法释放 +typedef enum +{ + IIC_SEQ_RELEASE, // 完成传输后释放总线占有权,这是默认的传输方式 + IIC_SEQ_HOLDON = 0, // 保持总线占有权不释放,只支持IT和DMA模式 +} IIC_Seq_Mode_e; + +/* i2c实例 */ +typedef struct iic_temp_s +{ + I2C_HandleTypeDef *handle; // i2c handle + uint8_t dev_address; // 暂时只支持7位地址(还有一位是读写位) + + IIC_Work_Mode_e work_mode; // 工作模式 + uint8_t *rx_buffer; // 接收缓冲区指针 + uint8_t rx_len; // 接收长度 + void (*callback)(struct iic_temp_s *); // 接收完成后的回调函数 + + void *id; // 用于标识i2c instance +} IICInstance; + +/* I2C 初始化结构体配置 */ +typedef struct +{ + I2C_HandleTypeDef *handle; // i2c handle + uint8_t dev_address; // 暂时只支持7位地址(还有一位是读写位),注意不需要左移 + IIC_Work_Mode_e work_mode; // 工作模式 + void (*callback)(IICInstance *); // 接收完成后的回调函数 + void *id; // 用于标识i2c instance +} IIC_Init_Config_s; + +/** + * @brief IIC初始化 + * + * @param conf 初始化配置 + * @return IICInstance* + */ +IICInstance *IICRegister(IIC_Init_Config_s *conf); + +/** + * @brief IIC设置工作模式 + * + * @param iic 要设置的iic实例 + * @param mode 工作模式 + */ +void IICSetMode(IICInstance *iic, IIC_Work_Mode_e mode); + +/** + * @brief IIC发送数据 + * + * @param iic iic实例 + * @param data 待发送的数据首地址指针 + * @param size 发送长度 + * @param mode 序列传输模式 + * @note 注意,如果发送结构体,那么该结构体在声明时务必使用#pragma pack(1)进行对齐,并在声明结束后使用#pragma pack()恢复对齐 + * + */ +void IICTransmit(IICInstance *iic, uint8_t *data, uint16_t size, IIC_Seq_Mode_e mode); + +/** + * @brief IIC接收数据 + * + * @param iic iic实例 + * @param data 接收数据的首地址指针 + * @param size 接收长度 + * @param mode 序列传输模式 + * @note 注意,如果直接将接收数据memcpy到目标结构体或通过强制类型转换进行逐字节写入, + * 那么该结构体在声明时务必使用#pragma pack(1)进行对齐,并在声明结束后使用#pragma pack()恢复对齐 + */ +void IICReceive(IICInstance *iic, uint8_t *data, uint16_t size, IIC_Seq_Mode_e mode); + +/** + * @brief IIC读取从机寄存器(内存),只支持阻塞模式,超时默认为1ms + * + * @param iic iic实例 + * @param mem_addr 要读取的从机内存地址,目前只支持8位地址 + * @param data 要读取或写入的数据首地址指针 + * @param size 要读取或写入的数据长度 + * @param mode 写入或读取模式: IIC_READ_MEM or IIC_WRITE_MEM + * @param mem8bit_flag 从机内存地址是否为8位 + */ +void IICAccessMem(IICInstance *iic, uint16_t mem_addr, uint8_t *data, uint16_t size, IIC_Mem_Mode_e mode, uint8_t mem8bit_flag); diff --git a/bsp/iic/bsp_iic.md b/bsp/iic/bsp_iic.md new file mode 100644 index 0000000..57a7dcd --- /dev/null +++ b/bsp/iic/bsp_iic.md @@ -0,0 +1,19 @@ +# bsp iic + +> 预计增加模拟iic + +## 注意事项 + +使用时写入地址,不需要左移!!! + +cubemx未配置dma时请勿使用dma传输,其行为是未定义的。 + +## 总线机制详解 + +关于I2C的序列传输,Restart condition和总线仲裁,请看: + +https://blog.csdn.net/NeoZng/article/details/128496694 + +https://blog.csdn.net/NeoZng/article/details/128486366 + +使用序列通信则在单次通信后不会释放总线,继续占用直到调用传输函数时传入`IIC_RELEASE`参数. 这个功能只在一条总线上挂载多个主机的时候有用. diff --git a/bsp/log/bsp_log.c b/bsp/log/bsp_log.c new file mode 100644 index 0000000..da35f0d --- /dev/null +++ b/bsp/log/bsp_log.c @@ -0,0 +1,34 @@ +#include "bsp_log.h" + +#include "SEGGER_RTT.h" +#include "SEGGER_RTT_Conf.h" +#include+ + +void BSPLogInit() +{ + SEGGER_RTT_Init(); +} + +int PrintLog(const char *fmt, ...) +{ + va_list args; + va_start(args, fmt); + int n = SEGGER_RTT_vprintf(BUFFER_INDEX, fmt, &args); // 一次可以开启多个buffer(多个终端),我们只用一个 + va_end(args); + return n; +} + +void Float2Str(char *str, float va) +{ + int flag = va < 0; + int head = (int)va; + int point = (int)((va - head) * 1000); + head = abs(head); + point = abs(point); + if (flag) + sprintf(str, "-%d.%d", head, point); + else + sprintf(str, "%d.%d", head, point); +} + diff --git a/bsp/log/bsp_log.h b/bsp/log/bsp_log.h new file mode 100644 index 0000000..4d1a1a3 --- /dev/null +++ b/bsp/log/bsp_log.h @@ -0,0 +1,72 @@ +#ifndef _BSP_LOG_H +#define _BSP_LOG_H + +#include "SEGGER_RTT.h" +#include "SEGGER_RTT_Conf.h" +#include + +#define BUFFER_INDEX 0 + +/** + * @brief 日志系统初始化 + * + */ +void BSPLogInit(); + +/** + * @brief 日志功能原型,供下面的LOGI,LOGW,LOGE等使用 + * + */ +#define LOG_PROTO(type, color, format, ...) \ + SEGGER_RTT_printf(BUFFER_INDEX, " %s%s" format "\r\n%s", \ + color, \ + type, \ + ##__VA_ARGS__, \ + RTT_CTRL_RESET) + +/*----------------------------------------下面是日志输出的接口-------------------------------------------------*/ + +/* 清屏 */ +#define LOG_CLEAR() SEGGER_RTT_WriteString(0, " " RTT_CTRL_CLEAR) + +/* 无颜色日志输出 */ +#define LOG(format, ...) LOG_PROTO("", "", format, ##__VA_ARGS__) + +/** + * 有颜色格式日志输出,建议使用这些宏来输出日志 + * @attention 注意这些接口不支持浮点格式化输出,若有需要,请使用Float2Str()函数进行转换后再打印 + * @note 在release版本上车使用时,与makefile中添加的宏DISABLE_LOG_SYSTEM一起使用,可以关闭日志系统 + */ +#if DISABLE_LOG_SYSTEM +#define LOGINFO(format, ...) +#define LOGWARNING(format, ...) +#define LOGERROR(format, ...) +#else +// information level +#define LOGINFO(format, ...) LOG_PROTO("I:", RTT_CTRL_TEXT_BRIGHT_GREEN, format, ##__VA_ARGS__) +// warning level +#define LOGWARNING(format, ...) LOG_PROTO("W:", RTT_CTRL_TEXT_BRIGHT_YELLOW, format, ##__VA_ARGS__) +// error level +#define LOGERROR(format, ...) LOG_PROTO("E:", RTT_CTRL_TEXT_BRIGHT_RED, format, ##__VA_ARGS__) +#endif // DISABLE_LOG_SYSTEM + +/** + * @brief 通过segger RTT打印日志,支持格式化输出,格式化输出的实现参考printf. + * @attention !! 此函数不支持浮点格式化,若有需要,请使用Float2Str()函数进行转换后再打印 !! + * + * @param fmt 格式字符串 + * @param ... 参数列表 + * @return int 打印的log字符数 + */ +int PrintLog(const char *fmt, ...); + +/** + * @brief 利用sprintf(),将float转换为字符串进行打印 + * @attention 浮点数需要转换为字符串后才能通过RTT打印 + * + * @param str 转换后的字符串 + * @param va 待转换的float + */ +void Float2Str(char *str, float va); + +#endif \ No newline at end of file diff --git a/bsp/log/bsp_log.md b/bsp/log/bsp_log.md new file mode 100644 index 0000000..259c296 --- /dev/null +++ b/bsp/log/bsp_log.md @@ -0,0 +1,50 @@ +# bsp_log + + neozng1@hnu.edu.cn
+ +## 使用说明 + +bsp_log是基于segger RTT实现的日志打印模块。 + +推荐使用`bsp_log.h`中提供了三级日志: + +```c +#define LOGINFO(format,...) +#define LOGWARNING(format,...) +#define LOGERROR(format,...) +``` + +分别用于输出不同等级的日志。注意RTT不支持直接使用`%f`进行浮点格式化,要使用`void Float2Str(char *str, float va);`转化成字符串之后再发送。 + +**若想启用RTT,必须通过`launch.json`的`debug-jlink`启动调试(不论使用什么调试器)。** 按照`VSCode+Ozone环境配置`完成配置之后的cmsis dap和daplink是可以支持Jlink全家桶的。 + +另外,若你使用的是cmsis-dap和daplink,**请在 *jlink* 调试任务启动之后再打开`log`任务。**(均在项目文件夹下的.vsocde/task.json中,有注释自行查看)。否则可能出线RTT viewer无法连接客户端的情况。 + +在ozone中查看log输出,直接打开console调试任务台和terminal调试中断便可看到调试输出。 + +> 由于ozone版本的原因,可能出现日志不换行或没有颜色。 + +## 自定义输出 + +你也可以自定义输出格式,详见Segger RTT的文档。 + +```c +int printf_log(const char *fmt, ...); +void Float2Str(char *str, float va); // 输出浮点需要先用此函数进行转换 +``` + +调用第一个函数,可以通过jlink或dap-link向调试器连接的上位机发送信息,格式和printf相同,示例如下: + +```c +printf_log("Hello World!\n"); +printf_log("Motor %d met some problem, error code %d!\n",3,1); +``` + +第二个函数可以将浮点类型转换成字符串以方便发送: + +```c +float current_feedback=114.514; +char* str_buff[64]; +Float2Str(str_buff,current_feedback); +printf_log("Motor %d met some problem, error code %d!\n",3,1); +``` diff --git a/bsp/pwm/bsp_pwm.c b/bsp/pwm/bsp_pwm.c new file mode 100644 index 0000000..6c7bf1d --- /dev/null +++ b/bsp/pwm/bsp_pwm.c @@ -0,0 +1,109 @@ +#include "bsp_pwm.h" +#include "stdlib.h" +#include "memory.h" + +// 配合中断以及初始化 +static uint8_t idx; +static PWMInstance *pwm_instance[PWM_DEVICE_CNT] = {NULL}; // 所有的pwm instance保存于此,用于callback时判断中断来源 +static uint32_t PWMSelectTclk(TIM_HandleTypeDef *htim ); +/** + * @brief pwm dma传输完成回调函数 + * + * @param htim 发生中断的定时器句柄 + */ +void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) +{ + for (uint8_t i = 0; i < idx; i++) + { // 来自同一个定时器的中断且通道相同 + if (pwm_instance[i]->htim == htim && htim->Channel == (1<<(pwm_instance[i]->channel/4))) + { + if (pwm_instance[i]->callback) // 如果有回调函数 + pwm_instance[i]->callback(pwm_instance[i]); + return; // 一次只能有一个通道的中断,所以直接返回 + } + } +} + +PWMInstance *PWMRegister(PWM_Init_Config_s *config) +{ + if (idx >= PWM_DEVICE_CNT) // 超过最大实例数,考虑增加或查看是否有内存泄漏 + while (1) + ; + PWMInstance *pwm = (PWMInstance *)malloc(sizeof(PWMInstance)); + memset(pwm, 0, sizeof(PWMInstance)); + + pwm->htim = config->htim; + pwm->channel = config->channel; + pwm->period = config->period; + pwm->dutyratio = config->dutyratio; + pwm->callback = config->callback; + pwm->id = config->id; + pwm->tclk = PWMSelectTclk(pwm->htim); + // 启动PWM + HAL_TIM_PWM_Start(pwm->htim, pwm->channel); + PWMSetPeriod(pwm, pwm->period); + PWMSetDutyRatio(pwm, pwm->dutyratio); + pwm_instance[idx++] = pwm; + return pwm; +} + +/* 只是对HAL的函数进行了形式上的封装 */ +void PWMStart(PWMInstance *pwm) +{ + HAL_TIM_PWM_Start(pwm->htim, pwm->channel); +} + +/* 只是对HAL的函数进行了形式上的封装 */ +void PWMStop(PWMInstance *pwm) +{ + HAL_TIM_PWM_Stop(pwm->htim, pwm->channel); +} + +/* + * @brief 设置pwm周期 + * + * @param pwm pwm实例 + * @param period 周期 单位 s + */ +void PWMSetPeriod(PWMInstance *pwm, float period) +{ + __HAL_TIM_SetAutoreload(pwm->htim, period*((pwm->tclk)/(pwm->htim->Init.Prescaler+1))); +} +/* + * @brief 设置pwm占空比 + * + * @param pwm pwm实例 + * @param dutyratio 占空比 0~1 +*/ +void PWMSetDutyRatio(PWMInstance *pwm, float dutyratio) +{ + __HAL_TIM_SetCompare(pwm->htim, pwm->channel, dutyratio * (pwm->htim->Instance->ARR)); +} + +/* 只是对HAL的函数进行了形式上的封装 */ +void PWMStartDMA(PWMInstance *pwm, uint32_t *pData, uint32_t Size) +{ + HAL_TIM_PWM_Start_DMA(pwm->htim, pwm->channel, pData, Size); +} + +// 设置pwm对应定时器时钟源频率 +//tim2~7,12~14:APB1 tim1,8~11:APB2 +static uint32_t PWMSelectTclk(TIM_HandleTypeDef *htim ) +{ + uintptr_t tclk_temp = ((uintptr_t)((htim)->Instance)); + if ( + (tclk_temp <= (APB1PERIPH_BASE + 0x2000UL)) && + (tclk_temp >= (APB1PERIPH_BASE + 0x0000UL))) + { + return (HAL_RCC_GetPCLK1Freq() * (APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1)>> RCC_CFGR_PPRE1_Pos] == 0 ? 1 : 2)); + } + else if ( + ((tclk_temp <= (APB2PERIPH_BASE + 0x0400UL)) && + (tclk_temp >= (APB2PERIPH_BASE + 0x0000UL))) || + ((tclk_temp <= (APB2PERIPH_BASE + 0x4800UL)) && + (tclk_temp >= (APB2PERIPH_BASE + 0x4000UL)))) + { + return (HAL_RCC_GetPCLK2Freq() * (APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1)>> RCC_CFGR_PPRE1_Pos] == 0 ? 1 : 2)); + } + return 0; +} \ No newline at end of file diff --git a/bsp/pwm/bsp_pwm.h b/bsp/pwm/bsp_pwm.h new file mode 100644 index 0000000..1c2a6fe --- /dev/null +++ b/bsp/pwm/bsp_pwm.h @@ -0,0 +1,91 @@ +/** + * @file bsp_pwm.h + * @author your name (you@domain.com) + * @brief + * @version 0.1 + * @date 2023-02-14 + * + * @copyright Copyright (c) 2023 + * + */ + +#ifndef BSP_PWM_H +#define BSP_PWM_H + +#include "tim.h" +#include "stdint.h" +#include "stm32f4xx_hal_rcc.h" +#include "stm32f407xx.h" +#define PWM_DEVICE_CNT 16 // 最大支持的PWM实例数量 + +/* pwm实例结构体 */ +typedef struct pwm_ins_temp +{ + TIM_HandleTypeDef *htim; // TIM句柄 + uint32_t channel; // 通道 + uint32_t tclk; // 时钟频率 + float period; // 周期 + float dutyratio; // 占空比 + void (*callback)(struct pwm_ins_temp *); // DMA传输完成回调函数 + void *id; // 实例ID +} PWMInstance; + +typedef struct +{ + TIM_HandleTypeDef *htim; // TIM句柄 + uint32_t channel; // 通道 + float period; // 周期 + float dutyratio; // 占空比 + void (*callback)(PWMInstance*); // DMA传输完成回调函数 + void *id; // 实例ID +} PWM_Init_Config_s; + +/** + * @brief 注册一个pwm实例 + * + * @param config 初始化配置 + * @return PWMInstance* + */ +PWMInstance *PWMRegister(PWM_Init_Config_s *config); + +/** + * @brief 启动pwm + * + * @param pwm pwm实例 + */ +void PWMStart(PWMInstance *pwm); +/** + * @brief 设置pwm占空比 + * + * @param pwm pwm实例 + * @param dutyratio 占空比 0~1 + */ + +void PWMSetDutyRatio(PWMInstance *pwm, float dutyratio); +/** + * @brief 停止pwm + * + * @param pwm pwm实例 + */ +void PWMStop(PWMInstance *pwm); + +/** + * @brief 设置pwm周期 + * + * @param pwm pwm实例 + * @param period 周期 单位 s + */ +void PWMSetPeriod(PWMInstance *pwm, float period); + +/** + * @brief 启动pwm dma传输 + * + * @param pwm pwm实例 + * @param pData 数据首地址指针,注意数据的位数必须和CubeMX配置的DMA传输位数(字长)一致 + * @param Size 数据长度 + * @note 如果使用此函数,则需要在CubeMX中配置DMA传输位数为对应位数 + * 例如:使用16位数据,则需要配置DMA传输位数为16位(half word),配置错误会导致指针越界或数据错误 + */ +void PWMStartDMA(PWMInstance *pwm, uint32_t *pData, uint32_t Size); + +#endif // BSP_PWM_H \ No newline at end of file diff --git a/bsp/pwm/bsp_pwm.md b/bsp/pwm/bsp_pwm.md new file mode 100644 index 0000000..b3ba531 --- /dev/null +++ b/bsp/pwm/bsp_pwm.md @@ -0,0 +1,5 @@ +# bsp pwm + +同一定时器下的pwm通道更改周期时请注意该定时器下是否有其他pwm示例,如果有请注意不要影响其他pwm通道的周期。 +使用pwm dma传输中断时注意占空比的设置,设为0将不会进入中断函数 +默认tim psc已在cubemx设置好,详情可参考cubemx配置文件 diff --git a/bsp/spi/bsp_spi.c b/bsp/spi/bsp_spi.c new file mode 100644 index 0000000..c607f26 --- /dev/null +++ b/bsp/spi/bsp_spi.c @@ -0,0 +1,149 @@ +#include "bsp_spi.h" +#include "memory.h" +#include "stdlib.h" + +/* 所有的spi instance保存于此,用于callback时判断中断来源*/ +static SPIInstance *spi_instance[SPI_DEVICE_CNT] = {NULL}; +static uint8_t idx = 0; // 配合中断以及初始化 + +SPIInstance *SPIRegister(SPI_Init_Config_s *conf) +{ + if (idx >= MX_SPI_BUS_SLAVE_CNT) // 超过最大实例数 + while (1) + ; + SPIInstance *instance = (SPIInstance *)malloc(sizeof(SPIInstance)); + memset(instance, 0, sizeof(SPIInstance)); + + instance->spi_handle = conf->spi_handle; + instance->GPIOx = conf->GPIOx; + instance->cs_pin = conf->cs_pin; + instance->spi_work_mode = conf->spi_work_mode; + instance->callback = conf->callback; + instance->id = conf->id; + + spi_instance[idx++] = instance; + return instance; +} + +void SPITransmit(SPIInstance *spi_ins, uint8_t *ptr_data, uint8_t len) +{ + // 拉低片选,开始传输(选中从机) + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_RESET); + switch (spi_ins->spi_work_mode) + { + case SPI_DMA_MODE: + HAL_SPI_Transmit_DMA(spi_ins->spi_handle, ptr_data, len); + break; + case SPI_IT_MODE: + HAL_SPI_Transmit_IT(spi_ins->spi_handle, ptr_data, len); + break; + case SPI_BLOCK_MODE: + HAL_SPI_Transmit(spi_ins->spi_handle, ptr_data, len, 1000); // 默认50ms超时 + // 阻塞模式不会调用回调函数,传输完成后直接拉高片选结束 + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_SET); + break; + default: + while (1) + ; // error mode! 请查看是否正确设置模式,或出现指针越界导致模式被异常修改的情况 + break; + } +} + +void SPIRecv(SPIInstance *spi_ins, uint8_t *ptr_data, uint8_t len) +{ + // 用于稍后回调使用 + spi_ins->rx_size = len; + spi_ins->rx_buffer = ptr_data; + // 拉低片选,开始传输 + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_RESET); + switch (spi_ins->spi_work_mode) + { + case SPI_DMA_MODE: + HAL_SPI_Receive_DMA(spi_ins->spi_handle, ptr_data, len); + break; + case SPI_IT_MODE: + HAL_SPI_Receive_IT(spi_ins->spi_handle, ptr_data, len); + break; + case SPI_BLOCK_MODE: + HAL_SPI_Receive(spi_ins->spi_handle, ptr_data, len, 1000); + // 阻塞模式不会调用回调函数,传输完成后直接拉高片选结束 + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_SET); + break; + default: + while (1) + ; // error mode! 请查看是否正确设置模式,或出现指针越界导致模式被异常修改的情况 + break; + } +} + +void SPITransRecv(SPIInstance *spi_ins, uint8_t *ptr_data_rx, uint8_t *ptr_data_tx, uint8_t len) +{ + // 用于稍后回调使用,请保证ptr_data_rx在回调函数被调用之前仍然在作用域内,否则析构之后的行为是未定义的!!! + spi_ins->rx_size = len; + spi_ins->rx_buffer = ptr_data_rx; + // 拉低片选,开始传输 + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_RESET); + switch (spi_ins->spi_work_mode) + { + case SPI_DMA_MODE: + HAL_SPI_TransmitReceive_DMA(spi_ins->spi_handle, ptr_data_tx, ptr_data_rx, len); + break; + case SPI_IT_MODE: + HAL_SPI_TransmitReceive_IT(spi_ins->spi_handle, ptr_data_tx, ptr_data_rx, len); + break; + case SPI_BLOCK_MODE: + HAL_SPI_TransmitReceive(spi_ins->spi_handle, ptr_data_tx, ptr_data_rx, len, 1000); // 默认50ms超时 + // 阻塞模式不会调用回调函数,传输完成后直接拉高片选结束 + HAL_GPIO_WritePin(spi_ins->GPIOx, spi_ins->cs_pin, GPIO_PIN_SET); + break; + default: + while (1) + ; // error mode! 请查看是否正确设置模式,或出现指针越界导致模式被异常修改的情况 + break; + } +} + +void SPISetMode(SPIInstance *spi_ins, SPI_TXRX_MODE_e spi_mode) +{ + if (spi_mode != SPI_DMA_MODE && spi_mode != SPI_IT_MODE && spi_mode != SPI_BLOCK_MODE) + while (1) + ; // error mode! 请查看是否正确设置模式,或出现指针越界导致模式被异常修改的情况 + + if (spi_ins->spi_work_mode != spi_mode) + { + spi_ins->spi_work_mode = spi_mode; + } +} + +/** + * @brief 当SPI接收完成,将会调用此回调函数,可以进行协议解析或其他必须的数据处理等 + * + * @param hspi spi handle + */ +void HAL_SPI_RxCpltCallback(SPI_HandleTypeDef *hspi) +{ + for (size_t i = 0; i < idx; i++) + { + // 如果是当前spi硬件发出的complete,且cs_pin为低电平(说明正在传输),则尝试调用回调函数 + if (spi_instance[i]->spi_handle == hspi && // 显然同一时间一条总线只能有一个从机在接收数据 + HAL_GPIO_ReadPin(spi_instance[i]->GPIOx, spi_instance[i]->cs_pin) == GPIO_PIN_RESET) + { + // 先拉高片选,结束传输,在判断是否有回调函数,如果有则调用回调函数 + HAL_GPIO_WritePin(spi_instance[i]->GPIOx, spi_instance[i]->cs_pin, GPIO_PIN_SET); + // @todo 后续添加holdon模式,由用户自行决定何时释放片选,允许进行连续传输 + if (spi_instance[i]->callback != NULL) // 回调函数不为空, 则调用回调函数 + spi_instance[i]->callback(spi_instance[i]); + return; + } + } +} + +/** + * @brief 和RxCpltCallback共用解析即可,这里只是形式上封装一下,不用重复写 + * 这是对HAL库的__weak函数的重写,传输使用IT或DMA模式,在传输完成时会调用此函数 + * @param hspi spi handle + */ +void HAL_SPI_TxRxCpltCallback(SPI_HandleTypeDef *hspi) +{ + HAL_SPI_RxCpltCallback(hspi); // 直接调用接收完成的回调函数 +} diff --git a/bsp/spi/bsp_spi.h b/bsp/spi/bsp_spi.h new file mode 100644 index 0000000..75e6b61 --- /dev/null +++ b/bsp/spi/bsp_spi.h @@ -0,0 +1,97 @@ +#include "spi.h" +#include "stdint.h" +#include "gpio.h" + +/* 根据开发板引出的spi引脚以及CubeMX中的初始化配置设定 */ +#define SPI_DEVICE_CNT 2 // C型开发板引出两路spi,分别连接BMI088/作为扩展IO在8pin牛角座引出 +#define MX_SPI_BUS_SLAVE_CNT 4 // 单个spi总线上挂载的从机数目 + +/* spi transmit recv mode enumerate*/ +typedef enum +{ + SPI_BLOCK_MODE = 0, // 默认使用阻塞模式 + SPI_IT_MODE, + SPI_DMA_MODE, +} SPI_TXRX_MODE_e; + +/* SPI实例结构体定义 */ +typedef struct spi_ins_temp +{ + SPI_HandleTypeDef *spi_handle; // SPI外设handle + GPIO_TypeDef *GPIOx; // 片选信号对应的GPIO,如GPIOA,GPIOB等等 + uint16_t cs_pin; // 片选信号对应的引脚号,GPIO_PIN_1,GPIO_PIN_2等等 + + SPI_TXRX_MODE_e spi_work_mode; // 传输工作模式 + uint8_t rx_size; // 本次接收的数据长度 + uint8_t *rx_buffer; // 本次接收的数据缓冲区 + + void (*callback)(struct spi_ins_temp *); // 接收回调函数 + void *id; // 模块指针 +} SPIInstance; + +/* 接收回调函数定义,包含SPI的module按照此格式构建回调函数 */ +typedef void (*spi_rx_callback)(SPIInstance *); + +// @todo: 这里可以将GPIO_TypeDef *GPIOx; uint16_t cs_pin合并为bsp_gpio以简化代码实现 +/* SPI初始化配置,其实基本和SPIIstance一模一样,为了代码风格统一因此再次定义 */ +typedef struct +{ + SPI_HandleTypeDef *spi_handle; // SPI外设handle + GPIO_TypeDef *GPIOx; // 片选信号对应的GPIO,如GPIOA,GPIOB等等 + uint16_t cs_pin; // 片选信号对应的引脚号,GPIO_PIN_1,GPIO_PIN_2等等 + + SPI_TXRX_MODE_e spi_work_mode; // 传输工作模式 + + spi_rx_callback callback; // 接收回调函数 + void *id; // 模块指针 +} SPI_Init_Config_s; + +/** + * @brief 注册一个spi instance + * + * @param conf 传入spi配置 + * @return SPIInstance* 返回一个spi实例指针,之后通过该指针操作spi外设 + */ +SPIInstance *SPIRegister(SPI_Init_Config_s *conf); + +/** + * @brief 通过spi向对应从机发送数据 + * @todo 后续加入阻塞模式下的timeout参数 + * + * @param spi_ins spi实例指针 + * @param ptr_data 要发送的数据 + * @param len 待发送的数据长度 + */ +void SPITransmit(SPIInstance *spi_ins, uint8_t *ptr_data, uint8_t len); + +/** + * @brief 通过spi从从机获取数据 + * @attention 特别注意:请保证ptr_data在回调函数被调用之前仍然在作用域内,否则析构之后的行为是未定义的!!! + * + * @param spi_ins spi实例指针 + * @param ptr_data 接受数据buffer的首地址 + * @param len 待接收的长度 + */ +void SPIRecv(SPIInstance *spi_ins, uint8_t *ptr_data, uint8_t len); + +/** + * @brief 通过spi利用移位寄存器同时收发数据 + * @todo 后续加入阻塞模式下的timeout参数 + * @attention 特别注意:请保证ptr_data_rx在回调函数被调用之前仍然在作用域内,否则析构之后的行为是未定义的!!! + * + * @param spi_ins spi实例指针 + * @param ptr_data_rx 接收数据地址 + * @param ptr_data_tx 发送数据地址 + * @param len 接收&发送的长度 + */ +void SPITransRecv(SPIInstance *spi_ins, uint8_t *ptr_data_rx, uint8_t *ptr_data_tx, uint8_t len); + +/** + * @brief 设定spi收发的工作模式 + * + * @param spi_ins spi实例指针 + * @param spi_mode 工作模式,包括阻塞模式(block),中断模式(IT),DMA模式.详见SPI_TXRX_MODE_e的定义 + * + * @todo 是否直接将mode作为transmit/recv的参数,而不是作为spi实例的属性?两者各有优劣 + */ +void SPISetMode(SPIInstance *spi_ins, SPI_TXRX_MODE_e spi_mode); diff --git a/bsp/spi/bsp_spi.md b/bsp/spi/bsp_spi.md new file mode 100644 index 0000000..8bf1e59 --- /dev/null +++ b/bsp/spi/bsp_spi.md @@ -0,0 +1,9 @@ +# bsp spi + +> 预计增加模拟spi + +初始化传入参数中的GPIOx(GPIOA,GPIOB,...)和cs_pin(GPIO_PIN_1,GPIO_PIN_2, ...)都是HAL库内建的宏,在CubeMX初始化的时候若有给gpio分配标签则填入对应名字即可,否则填入原本的宏。 + +注意,如果你没有在CubeMX中为spi分配dma通道,请不要使用dma模式 + +(后续添加安全检查,通过判断hspi的dma handler是否为空来选择模式,如果为空,则自动将DMA转为IT模式以继续传输,并通过log warning 提醒用户) \ No newline at end of file diff --git a/bsp/usart/bsp_usart.c b/bsp/usart/bsp_usart.c new file mode 100644 index 0000000..ccefeb3 --- /dev/null +++ b/bsp/usart/bsp_usart.c @@ -0,0 +1,139 @@ +/** + * @file bsp_usart.c + * @author neozng + * @brief 串口bsp层的实现 + * @version beta + * @date 2022-11-01 + * + * @copyright Copyright (c) 2022 + * + */ +#include "bsp_usart.h" +#include "bsp_log.h" +#include "stdlib.h" +#include "memory.h" + +/* usart service instance, modules' info would be recoreded here using USARTRegister() */ +/* usart服务实例,所有注册了usart的模块信息会被保存在这里 */ +static uint8_t idx; +static USARTInstance *usart_instance[DEVICE_USART_CNT] = {NULL}; + +/** + * @brief 启动串口服务,会在每个实例注册之后自动启用接收,当前实现为DMA接收,后续可能添加IT和BLOCKING接收 + * + * @todo 串口服务会在每个实例注册之后自动启用接收,当前实现为DMA接收,后续可能添加IT和BLOCKING接收 + * 可能还要将此函数修改为extern,使得module可以控制串口的启停 + * + * @param _instance instance owned by module,模块拥有的串口实例 + */ +void USARTServiceInit(USARTInstance *_instance) +{ + HAL_UARTEx_ReceiveToIdle_DMA(_instance->usart_handle, _instance->recv_buff, _instance->recv_buff_size); + // 关闭dma half transfer中断防止两次进入HAL_UARTEx_RxEventCallback() + // 这是HAL库的一个设计失误,发生DMA传输完成/半完成以及串口IDLE中断都会触发HAL_UARTEx_RxEventCallback() + // 我们只希望处理第一种和第三种情况,因此直接关闭DMA半传输中断 + __HAL_DMA_DISABLE_IT(_instance->usart_handle->hdmarx, DMA_IT_HT); +} + +USARTInstance *USARTRegister(USART_Init_Config_s *init_config) +{ + if (idx >= DEVICE_USART_CNT) // 超过最大实例数 + while (1) + LOGERROR("[bsp_usart] USART exceed max instance count!"); + + for (uint8_t i = 0; i < idx; i++) // 检查是否已经注册过 + if (usart_instance[i]->usart_handle == init_config->usart_handle) + while (1) + LOGERROR("[bsp_usart] USART instance already registered!"); + + USARTInstance *instance = (USARTInstance *)malloc(sizeof(USARTInstance)); + memset(instance, 0, sizeof(USARTInstance)); + + instance->usart_handle = init_config->usart_handle; + instance->recv_buff_size = init_config->recv_buff_size; + instance->module_callback = init_config->module_callback; + + usart_instance[idx++] = instance; + USARTServiceInit(instance); + return instance; +} + +/* @todo 当前仅进行了形式上的封装,后续要进一步考虑是否将module的行为与bsp完全分离 */ +void USARTSend(USARTInstance *_instance, uint8_t *send_buf, uint16_t send_size, USART_TRANSFER_MODE mode) +{ + switch (mode) + { + case USART_TRANSFER_BLOCKING: + HAL_UART_Transmit(_instance->usart_handle, send_buf, send_size, 100); + break; + case USART_TRANSFER_IT: + HAL_UART_Transmit_IT(_instance->usart_handle, send_buf, send_size); + break; + case USART_TRANSFER_DMA: + HAL_UART_Transmit_DMA(_instance->usart_handle, send_buf, send_size); + break; + default: + while (1) + ; // illegal mode! check your code context! 检查定义instance的代码上下文,可能出现指针越界 + break; + } +} + +/* 串口发送时,gstate会被设为BUSY_TX */ +uint8_t USARTIsReady(USARTInstance *_instance) +{ + if (_instance->usart_handle->gState | HAL_UART_STATE_BUSY_TX) + return 0; + else + return 1; +} + +/** + * @brief 每次dma/idle中断发生时,都会调用此函数.对于每个uart实例会调用对应的回调进行进一步的处理 + * 例如:视觉协议解析/遥控器解析/裁判系统解析 + * + * @note 通过__HAL_DMA_DISABLE_IT(huart->hdmarx,DMA_IT_HT)关闭dma half transfer中断防止两次进入HAL_UARTEx_RxEventCallback() + * 这是HAL库的一个设计失误,发生DMA传输完成/半完成以及串口IDLE中断都会触发HAL_UARTEx_RxEventCallback() + * 我们只希望处理,因此直接关闭DMA半传输中断第一种和第三种情况 + * + * @param huart 发生中断的串口 + * @param Size 此次接收到的总数居量,暂时没用 + */ +void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) +{ + for (uint8_t i = 0; i < idx; ++i) + { // find the instance which is being handled + if (huart == usart_instance[i]->usart_handle) + { // call the callback function if it is not NULL + if (usart_instance[i]->module_callback != NULL) + { + usart_instance[i]->module_callback(); + memset(usart_instance[i]->recv_buff, 0, Size); // 接收结束后清空buffer,对于变长数据是必要的 + } + HAL_UARTEx_ReceiveToIdle_DMA(usart_instance[i]->usart_handle, usart_instance[i]->recv_buff, usart_instance[i]->recv_buff_size); + __HAL_DMA_DISABLE_IT(usart_instance[i]->usart_handle->hdmarx, DMA_IT_HT); + return; // break the loop + } + } +} + +/** + * @brief 当串口发送/接收出现错误时,会调用此函数,此时这个函数要做的就是重新启动接收 + * + * @note 最常见的错误:奇偶校验/溢出/帧错误 + * + * @param huart 发生错误的串口 + */ +void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) +{ + for (uint8_t i = 0; i < idx; ++i) + { + if (huart == usart_instance[i]->usart_handle) + { + HAL_UARTEx_ReceiveToIdle_DMA(usart_instance[i]->usart_handle, usart_instance[i]->recv_buff, usart_instance[i]->recv_buff_size); + __HAL_DMA_DISABLE_IT(usart_instance[i]->usart_handle->hdmarx, DMA_IT_HT); + LOGWARNING("[bsp_usart] USART error callback triggered, instance idx [%d]", i); + return; + } + } +} \ No newline at end of file diff --git a/bsp/usart/bsp_usart.h b/bsp/usart/bsp_usart.h new file mode 100644 index 0000000..6cf0c00 --- /dev/null +++ b/bsp/usart/bsp_usart.h @@ -0,0 +1,75 @@ +#ifndef BSP_RC_H +#define BSP_RC_H + +#include+#include "main.h" + +#define DEVICE_USART_CNT 3 // C板至多分配3个串口 +#define USART_RXBUFF_LIMIT 256 // 如果协议需要更大的buff,请修改这里 + +// 模块回调函数,用于解析协议 +typedef void (*usart_module_callback)(); + +/* 发送模式枚举 */ +typedef enum +{ + USART_TRANSFER_NONE=0, + USART_TRANSFER_BLOCKING, + USART_TRANSFER_IT, + USART_TRANSFER_DMA, +} USART_TRANSFER_MODE; + +// 串口实例结构体,每个module都要包含一个实例. +// 由于串口是独占的点对点通信,所以不需要考虑多个module同时使用一个串口的情况,因此不用加入id;当然也可以选择加入,这样在bsp层可以访问到module的其他信息 +typedef struct +{ + uint8_t recv_buff[USART_RXBUFF_LIMIT]; // 预先定义的最大buff大小,如果太小请修改USART_RXBUFF_LIMIT + uint8_t recv_buff_size; // 模块接收一包数据的大小 + UART_HandleTypeDef *usart_handle; // 实例对应的usart_handle + usart_module_callback module_callback; // 解析收到的数据的回调函数 +} USARTInstance; + +/* usart 初始化配置结构体 */ +typedef struct +{ + uint8_t recv_buff_size; // 模块接收一包数据的大小 + UART_HandleTypeDef *usart_handle; // 实例对应的usart_handle + usart_module_callback module_callback; // 解析收到的数据的回调函数 +} USART_Init_Config_s; + +/** + * @brief 注册一个串口实例,返回一个串口实例指针 + * + * @param init_config 传入串口初始化结构体 + */ +USARTInstance *USARTRegister(USART_Init_Config_s *init_config); + +/** + * @brief 启动串口服务,需要传入一个usart实例.一般用于lost callback的情况(使用串口的模块daemon) + * + * @param _instance + */ +void USARTServiceInit(USARTInstance *_instance); + + +/** + * @brief 通过调用该函数可以发送一帧数据,需要传入一个usart实例,发送buff以及这一帧的长度 + * @note 在短时间内连续调用此接口,若采用IT/DMA会导致上一次的发送未完成而新的发送取消. + * @note 若希望连续使用DMA/IT进行发送,请配合USARTIsReady()使用,或自行为你的module实现一个发送队列和任务. + * @todo 是否考虑为USARTInstance增加发送队列以进行连续发送? + * + * @param _instance 串口实例 + * @param send_buf 待发送数据的buffer + * @param send_size how many bytes to send + */ +void USARTSend(USARTInstance *_instance, uint8_t *send_buf, uint16_t send_size,USART_TRANSFER_MODE mode); + +/** + * @brief 判断串口是否准备好,用于连续或异步的IT/DMA发送 + * + * @param _instance 要判断的串口实例 + * @return uint8_t ready 1, busy 0 + */ +uint8_t USARTIsReady(USARTInstance *_instance); + +#endif diff --git a/bsp/usart/bsp_usart.md b/bsp/usart/bsp_usart.md new file mode 100644 index 0000000..532df57 --- /dev/null +++ b/bsp/usart/bsp_usart.md @@ -0,0 +1,80 @@ +# bsp_usart + + neozng1@hnu.edu.cn
+ +> TODO: 增加发送队列以解决短时间内调用`USARTSend()`发生丢包的问题,目前仅支持DMA。还需要提供阻塞和IT模式以供选择,参考bspiic和spi进行实现。 +> 可以直接在发送函数的参数列表添加发送模式选择,或增加instance成员变量,并提供设置模式接口,两者各有优劣 + +## 使用说明 + +若你需要构建新的基于串口的module,首先需要拥有一个`usart_instance`的指针用于操作串口对象。 + +需要在串口实例下设定接收的数据包的长度,实例对应的串口硬件(通过`UART_HandleTypeDef`指定,如`&huart1`),解析接收数据对应的回调函数这三个参数。然后,调用`USARTRegister()`并传入配置好的`usart_instance`指针即可。 + +若要发送数据,调用`USARTSend()`。注意buffsize务必小于你创建的buff的大小,否则造成指针越界后果未知。 + +串口硬件收到数据时,会将其存入`usart_instance.recv_buff[]`中,当收到完整一包数据,会调用设定的回调函数`module_callback`(即你注册时提供的解析函数)。在此函数中,你可以通过`usart_instance.recv_buff[]`访问串口收到的数据。 + +## 代码结构 + +.h文件内包括了外部接口和类型定义,以及模块对应的宏。c文件内为私有函数和外部接口的定义。 + +## 类型定义 + +```c +#define DEVICE_USART_CNT 3 // C板至多分配3个串口 +#define USART_RXBUFF_LIMIT 128 // if your protocol needs bigger buff, modify here + +typedef void (*usart_module_callback)(); + +/* usart_instance struct,each app would have one instance */ +typedef struct +{ + uint8_t recv_buff[USART_RXBUFF_LIMIT]; // 预先定义的最大buff大小,如果太小请修改USART_RXBUFF_LIMIT + uint8_t recv_buff_size; // 模块接收一包数据的大小 + UART_HandleTypeDef *usart_handle; // 实例对应的usart_handle + usart_module_callback module_callback; // 解析收到的数据的回调函数 +} usart_instance; +``` + +- `DEVICE_USART_CNT`是开发板上可用的串口数量。 + +- `USART_RXBUFF_LIMIT`是串口单次接收的数据长度上限,暂时设为128,如果需要更大的buffer容量,修改该值。 + +- `usart_module_callback()`是模块提供给串口接收中断回调函数使用的协议解析函数指针。对于每个需要串口的模块,需要定义一个这样的函数用于解包数据。 + +- 每定义一个`usart_instance`,就代表一个串口的**实例**(对象)。一个串口实例内有接收buffer,单个数据包的大小,该串口对应的`HAL handle`(代表其使用的串口硬件具体是哪一个)以及用于解包数据的回调函数。 + + +## 外部接口 + +```c +void USARTRegister(usart_instance *_instance); +void USARTSend(usart_instance *_instance, uint8_t *send_buf, uint16_t send_size); +``` + +- `USARTRegister`是用于初始化串口对象的接口,module层的模块对象(也应当为一个结构体)内要包含一个`usart_instance`。 + + **在调用该函数之前,需要先对其成员变量`*usart_handle`,`module_callback()`以及`recv_buff_size`进行赋值。** + +- `USARTSend()`是通过模块通过其拥有的串口对象发送数据的接口,调用时传入的参数为串口实例指针,发送缓存以及此次要发送的数据长度(8-bit\*n)。 + +## 私有函数和变量 + +在.c文件内设为static的函数和变量 + +```c +static usart_instance *instance[DEVICE_USART_CNT]; +``` + +这是bsp层管理所有串口实例的入口。 + +```c +static void USARTServiceInit(usart_instance *_instance) +void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size) +void HAL_UART_ErrorCallback(UART_HandleTypeDef *huart) +``` + +- `USARTServiceInit()`会被`USARTRegister()`调用,开启接收中断 + +- `HAL_UARTEx_RxEventCallback()`和`HAL_UART_ErrorCallback()`都是对HAL的回调函数的重定义(原本的callback是`__week`修饰的弱定义),前者在发生**IDLE中断**或**单次DMA传输中断**后会被调用(说明收到了完整的一包数据),随后在里面根据中断来源,调用拥有产生了该中断的模块的协议解析函数进行数据解包;后者在串口传输出错的时候会被调用,重新开启接收。 \ No newline at end of file diff --git a/bsp/usb/bsp_usb.c b/bsp/usb/bsp_usb.c new file mode 100644 index 0000000..9c4ad2f --- /dev/null +++ b/bsp/usb/bsp_usb.c @@ -0,0 +1,31 @@ +/** + * @file bsp_usb.c + * @author your name (you@domain.com) + * @brief usb是单例bsp,因此不保存实例 + * @version 0.1 + * @date 2023-02-09 + * + * @copyright Copyright (c) 2023 + * + */ + +#include "bsp_usb.h" +#include "bsp_log.h" +#include "bsp_dwt.h" + +static uint8_t *bsp_usb_rx_buffer; // 接收到的数据会被放在这里,buffer size为2048 +// 注意usb单个数据包(Full speed模式下)最大为64byte,超出可能会出现丢包情况 + +uint8_t *USBInit(USB_Init_Config_s usb_conf) +{ + // usb的软件复位(模拟拔插)在usbd_conf.c中的HAL_PCD_MspInit()中 + bsp_usb_rx_buffer = CDCInitRxbufferNcallback(usb_conf.tx_cbk, usb_conf.rx_cbk); // 获取接收数据指针 + // usb的接收回调函数会在这里被设置,并将数据保存在bsp_usb_rx_buffer中 + LOGINFO("USB init success"); + return bsp_usb_rx_buffer; +} + +void USBTransmit(uint8_t *buffer, uint16_t len) +{ + CDC_Transmit_FS(buffer, len); // 发送 +} diff --git a/bsp/usb/bsp_usb.h b/bsp/usb/bsp_usb.h new file mode 100644 index 0000000..5ab1588 --- /dev/null +++ b/bsp/usb/bsp_usb.h @@ -0,0 +1,30 @@ +/** + * @file bsp_usb.h + * @author your name (you@domain.com) + * @brief 提供对usb vpc(virtal com port)的操作接口,hid和msf考虑后续添加 + * @attention 这一版usb修改了usbd_cdc_if.c中的CDC_Receive_FS函数,若使用cube生成后会被覆盖.后续需要由usbcdciftemplate创建一套自己的模板 + * @version 0.1 + * @date 2023-02-09 + * + * @copyright Copyright (c) 2023 + * + */ +#pragma once +#include "usb_device.h" +#include "usbd_cdc.h" +#include "usbd_conf.h" +#include "usbd_desc.h" +#include "usbd_cdc_if.h" + +typedef struct +{ + USBCallback tx_cbk; + USBCallback rx_cbk; +} USB_Init_Config_s; + +/* @note 虚拟串口的波特率/校验位/数据位等动态可变,取决于上位机的设定 */ +/* 使用时不需要关心这些设置(作为从机) */ + +uint8_t *USBInit(USB_Init_Config_s usb_conf); // bsp初始化时调用会重新枚举设备 + +void USBTransmit(uint8_t *buffer, uint16_t len); // 通过usb发送数据 \ No newline at end of file diff --git a/bsp/usb/bsp_usb.md b/bsp/usb/bsp_usb.md new file mode 100644 index 0000000..739fcc3 --- /dev/null +++ b/bsp/usb/bsp_usb.md @@ -0,0 +1,5 @@ +# bsp usb + +简单写点,有待优化. 目前仅支持虚拟串口通信,暂未开发其他内容. + +注意,为了增加发送完成和接收完成回调,对Inc/usbd_xxxx.h四个文件做了修改,对Src/usbxxx.c也进行了修改。 diff --git a/cmake-build-debug/.cmake/api/v1/query/cache-v2 b/cmake-build-debug/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 b/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 b/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 b/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-df451962d76038815dd3.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-df451962d76038815dd3.json new file mode 100644 index 0000000..9088252 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-df451962d76038815dd3.json @@ -0,0 +1,1447 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-addr2line.exe" + }, + { + "name" : "CMAKE_ASM_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe" + }, + { + "name" : "CMAKE_ASM_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe" + }, + { + "name" : "CMAKE_ASM_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_ASM_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the ASM compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ASM_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the ASM compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_ASM_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the ASM compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the ASM compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_ASM_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the ASM compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "d:/zhandui/cqdm/basic_framework/cmake-build-debug" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "26" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_CODEBLOCKS_COMPILER_ID", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Id string of the compiler for the CodeBlocks IDE. Automatically detected when left empty" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CODEBLOCKS_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The CodeBlocks executable" + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_CODEBLOCKS_EXECUTABLE-NOTFOUND" + }, + { + "name" : "CMAKE_CODEBLOCKS_MAKE_ARGUMENTS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional command line arguments when CodeBlocks invokes make. Enter e.g. -jto get parallel builds" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe" + }, + { + "name" : "CMAKE_C_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe" + }, + { + "name" : "CMAKE_C_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/MinGW/mingw64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "ELF" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "CodeBlocks" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CXX compiler system defined macros" + } + ], + "type" : "INTERNAL", + "value" : "__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;\"10.3.1 20210824 (release)\";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.7976931348623157e+308L);__DBL_NORM_MAX__;((double)1.7976931348623157e+308L);__DBL_MIN__;((double)2.2250738585072014e-308L);__DBL_EPSILON__;((double)2.2204460492503131e-16L);__DBL_DENORM_MIN__;((double)4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1;__STDC__;1;__cplusplus;201402L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;\"10.3.1 20210824 (release)\";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__GNUG__;10;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_WEAK__;1;__DEPRECATED;1;__GXX_RTTI;1;__cpp_rtti;199711L;__GXX_EXPERIMENTAL_CXX0X__;1;__cpp_binary_literals;201304L;__cpp_hex_float;201603L;__cpp_runtime_arrays;198712L;__cpp_unicode_characters;200704L;__cpp_raw_strings;200710L;__cpp_unicode_literals;200710L;__cpp_user_defined_literals;200809L;__cpp_lambdas;200907L;__cpp_range_based_for;200907L;__cpp_static_assert;200410L;__cpp_decltype;200707L;__cpp_attributes;200809L;__cpp_rvalue_reference;200610L;__cpp_rvalue_references;200610L;__cpp_variadic_templates;200704L;__cpp_initializer_lists;200806L;__cpp_delegating_constructors;200604L;__cpp_nsdmi;200809L;__cpp_inheriting_constructors;201511L;__cpp_ref_qualifiers;200710L;__cpp_alias_templates;200704L;__cpp_return_type_deduction;201304L;__cpp_init_captures;201304L;__cpp_generic_lambdas;201304L;__cpp_constexpr;201304L;__cpp_decltype_auto;201304L;__cpp_aggregate_nsdmi;201304L;__cpp_variable_templates;201304L;__cpp_digit_separators;201309L;__cpp_sized_deallocation;201309L;__cpp_threadsafe_static_init;200806L;__EXCEPTIONS;1;__cpp_exceptions;199711L;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;double(1.7976931348623157e+308L);__DBL_NORM_MAX__;double(1.7976931348623157e+308L);__DBL_MIN__;double(2.2250738585072014e-308L);__DBL_EPSILON__;double(2.2204460492503131e-16L);__DBL_DENORM_MIN__;double(4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__WCHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CXX compiler system include directories" + } + ], + "type" : "INTERNAL", + "value" : "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "C compiler system defined macros" + } + ], + "type" : "INTERNAL", + "value" : "__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;\"10.3.1 20210824 (release)\";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.7976931348623157e+308L);__DBL_NORM_MAX__;((double)1.7976931348623157e+308L);__DBL_MIN__;((double)2.2250738585072014e-308L);__DBL_EPSILON__;((double)2.2204460492503131e-16L);__DBL_DENORM_MIN__;((double)4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "C compiler system include directories" + } + ], + "type" : "INTERNAL", + "value" : "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed;d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "MinGW Makefiles" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "D:/zhandui/cqdm/basic_framework" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/basic_framework" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "UNINITIALIZED", + "value" : "D:/MinGW/mingw64/bin/mingw32-make.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "basic_framework" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-strip.exe" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "ProcessorCount_cmd_getconf", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_getconf-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_lsconf", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_lsconf-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_machinfo", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_machinfo-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_mpsched", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_mpsched-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_nproc", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_nproc-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_pidin", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_pidin-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_psrinfo", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_psrinfo-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_sysctl", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_sysctl-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_sysinfo", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_sysinfo-NOTFOUND" + }, + { + "name" : "ProcessorCount_cmd_uname", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "ProcessorCount_cmd_uname-NOTFOUND" + }, + { + "name" : "basic_framework_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/zhandui/cqdm/basic_framework/cmake-build-debug" + }, + { + "name" : "basic_framework_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "basic_framework_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/zhandui/cqdm/basic_framework" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-89ec0166a13b12a65f35.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-89ec0166a13b12a65f35.json new file mode 100644 index 0000000..13fd32d --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-89ec0166a13b12a65f35.json @@ -0,0 +1,155 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.26.4/CMakeASMCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Platform/Generic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeFindCodeBlocks.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/ProcessorCount.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Platform/Generic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Platform/Generic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeASMInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-ASM.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "D:/zhandui/cqdm/basic_framework/cmake-build-debug", + "source" : "D:/zhandui/cqdm/basic_framework" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ee2b3cacbc6665630337.json b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ee2b3cacbc6665630337.json new file mode 100644 index 0000000..ea0ee23 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ee2b3cacbc6665630337.json @@ -0,0 +1,60 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.25" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "basic_framework", + "targetIndexes" : + [ + 0 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "basic_framework.elf::@6890427a1f51a3e7e1df", + "jsonFile" : "target-basic_framework.elf-Debug-6c596a1941b3222119ca.json", + "name" : "basic_framework.elf", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "D:/zhandui/cqdm/basic_framework/cmake-build-debug", + "source" : "D:/zhandui/cqdm/basic_framework" + }, + "version" : + { + "major" : 2, + "minor" : 5 + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/index-2024-03-18T08-44-25-0193.json b/cmake-build-debug/.cmake/api/v1/reply/index-2024-03-18T08-44-25-0193.json new file mode 100644 index 0000000..5d0c56b --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/index-2024-03-18T08-44-25-0193.json @@ -0,0 +1,108 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "MinGW Makefiles" + }, + "paths" : + { + "cmake" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe", + "cpack" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cpack.exe", + "ctest" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/ctest.exe", + "root" : "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 26, + "patch" : 4, + "string" : "3.26.4", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-ee2b3cacbc6665630337.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 5 + } + }, + { + "jsonFile" : "cache-v2-df451962d76038815dd3.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-89ec0166a13b12a65f35.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-bc09fa793ec2d73b1696.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-df451962d76038815dd3.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-89ec0166a13b12a65f35.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-ee2b3cacbc6665630337.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 5 + } + }, + "toolchains-v1" : + { + "jsonFile" : "toolchains-v1-bc09fa793ec2d73b1696.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + } +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/target-basic_framework.elf-Debug-6c596a1941b3222119ca.json b/cmake-build-debug/.cmake/api/v1/reply/target-basic_framework.elf-Debug-6c596a1941b3222119ca.json new file mode 100644 index 0000000..ebbee74 --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/target-basic_framework.elf-Debug-6c596a1941b3222119ca.json @@ -0,0 +1,3198 @@ +{ + "artifacts" : + [ + { + "path" : "basic_framework.elf" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "add_link_options", + "target_link_libraries", + "add_compile_options", + "add_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 77, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 24, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 73, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 74, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 75, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 79, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 23, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 30, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 36, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "command" : 4, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 66, + "parent" : 0 + }, + { + "command" : 6, + "file" : 0, + "line" : 52, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu11 -fdiagnostics-color=always" + }, + { + "backtrace" : 7, + "fragment" : "-mfloat-abi=hard" + }, + { + "backtrace" : 7, + "fragment" : "-mfpu=fpv4-sp-d16" + }, + { + "backtrace" : 8, + "fragment" : "-mcpu=cortex-m4" + }, + { + "backtrace" : 8, + "fragment" : "-mthumb" + }, + { + "backtrace" : 8, + "fragment" : "-mthumb-interwork" + }, + { + "backtrace" : 9, + "fragment" : "-ffunction-sections" + }, + { + "backtrace" : 9, + "fragment" : "-fdata-sections" + }, + { + "backtrace" : 9, + "fragment" : "-fno-common" + }, + { + "backtrace" : 9, + "fragment" : "-fmessage-length=0" + }, + { + "backtrace" : 11, + "fragment" : "-Og" + }, + { + "backtrace" : 11, + "fragment" : "-g" + } + ], + "defines" : + [ + { + "backtrace" : 12, + "define" : "ARM_MATH_CM4" + }, + { + "backtrace" : 12, + "define" : "ARM_MATH_MATRIX_CHECK" + }, + { + "backtrace" : 12, + "define" : "ARM_MATH_ROUNDING" + }, + { + "backtrace" : 13, + "define" : "DEBUG" + }, + { + "backtrace" : 13, + "define" : "STM32F407xx" + }, + { + "backtrace" : 13, + "define" : "USE_HAL_DRIVER" + } + ], + "includes" : + [ + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/adc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/can" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/dwt" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/flash" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/gpio" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/iic" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/log" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/pwm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/spi" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/usart" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/usb" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/alarm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/algorithm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/BMI088" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/can_comm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/daemon" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/encoder" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/imu" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/ist8310" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/led" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/master_machine" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/message_center" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/oled" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/referee" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/remote" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/standard_cmd" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/super_cap" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/TFminiPlus" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/unicomm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/vofa" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/auto_aim" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/step_motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/chassis" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/cmd" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/gimbal" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/shoot" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config" + } + ], + "language" : "C", + "languageStandard" : + { + "backtraces" : + [ + 1 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 113, + 118, + 119, + 120, + 122, + 124, + 125, + 144, + 145, + 147, + 148, + 149, + 150, + 151, + 153, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 184, + 187, + 190, + 193, + 197, + 200, + 205, + 207, + 210, + 213, + 216, + 219, + 222, + 225, + 228, + 231, + 234, + 238, + 242, + 245, + 248, + 251, + 253, + 255, + 257, + 259, + 261, + 263, + 266, + 271, + 273, + 276, + 279, + 282, + 285, + 288, + 291, + 295, + 298, + 304, + 310, + 312, + 315, + 317, + 321, + 324, + 327, + 329, + 332, + 335, + 337, + 340, + 343 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-g" + }, + { + "backtrace" : 7, + "fragment" : "-mfloat-abi=hard" + }, + { + "backtrace" : 7, + "fragment" : "-mfpu=fpv4-sp-d16" + }, + { + "backtrace" : 8, + "fragment" : "-mcpu=cortex-m4" + }, + { + "backtrace" : 8, + "fragment" : "-mthumb" + }, + { + "backtrace" : 8, + "fragment" : "-mthumb-interwork" + }, + { + "backtrace" : 9, + "fragment" : "-ffunction-sections" + }, + { + "backtrace" : 9, + "fragment" : "-fdata-sections" + }, + { + "backtrace" : 9, + "fragment" : "-fno-common" + }, + { + "backtrace" : 9, + "fragment" : "-fmessage-length=0" + }, + { + "backtrace" : 10, + "fragment" : "-x" + }, + { + "backtrace" : 10, + "fragment" : "assembler-with-cpp" + }, + { + "backtrace" : 11, + "fragment" : "-Og" + }, + { + "backtrace" : 11, + "fragment" : "-g" + } + ], + "defines" : + [ + { + "backtrace" : 12, + "define" : "ARM_MATH_CM4" + }, + { + "backtrace" : 12, + "define" : "ARM_MATH_MATRIX_CHECK" + }, + { + "backtrace" : 12, + "define" : "ARM_MATH_ROUNDING" + }, + { + "backtrace" : 13, + "define" : "DEBUG" + }, + { + "backtrace" : 13, + "define" : "STM32F407xx" + }, + { + "backtrace" : 13, + "define" : "USE_HAL_DRIVER" + } + ], + "includes" : + [ + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/adc" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/can" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/dwt" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/flash" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/gpio" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/iic" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/log" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/pwm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/spi" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/usart" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/bsp/usb" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/alarm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/algorithm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/BMI088" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/can_comm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/daemon" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/encoder" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/imu" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/ist8310" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/led" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/master_machine" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/message_center" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/oled" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/referee" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/remote" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/standard_cmd" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/super_cap" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/TFminiPlus" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/unicomm" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/vofa" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/auto_aim" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/modules/motor/step_motor" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/chassis" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/cmd" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/gimbal" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/application/shoot" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT" + }, + { + "backtrace" : 14, + "path" : "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config" + } + ], + "language" : "ASM", + "sourceIndexes" : + [ + 155, + 181 + ] + } + ], + "id" : "basic_framework.elf::@6890427a1f51a3e7e1df", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-g", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 2, + "fragment" : "-mfloat-abi=hard", + "role" : "flags" + }, + { + "backtrace" : 2, + "fragment" : "-mfpu=fpv4-sp-d16", + "role" : "flags" + }, + { + "backtrace" : 3, + "fragment" : "-Wl,-gc-sections,--print-memory-usage,-Map=D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.map", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "-mcpu=cortex-m4", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "-mthumb", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "-mthumb-interwork", + "role" : "flags" + }, + { + "backtrace" : 5, + "fragment" : "-T", + "role" : "flags" + }, + { + "backtrace" : 5, + "fragment" : "D:/zhandui/cqdm/basic_framework/STM32F407IGHX_FLASH.ld", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "D:\\zhandui\\cqdm\\basic_framework\\Middlewares\\ST\\ARM\\DSP\\Lib\\libarm_cortexM4lf_math.a", + "role" : "libraries" + } + ], + "language" : "C" + }, + "name" : "basic_framework.elf", + "nameOnDisk" : "basic_framework.elf", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 110, + 112, + 114, + 115, + 116, + 117, + 123, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 146, + 152, + 154, + 185, + 188, + 191, + 194, + 195, + 196, + 198, + 201, + 204, + 206, + 208, + 211, + 214, + 217, + 220, + 223, + 226, + 229, + 232, + 235, + 239, + 241, + 243, + 246, + 249, + 252, + 254, + 256, + 258, + 260, + 262, + 264, + 267, + 270, + 272, + 274, + 275, + 277, + 280, + 283, + 286, + 289, + 292, + 296, + 299, + 305, + 309, + 311, + 313, + 316, + 318, + 320, + 322, + 325, + 326, + 328, + 330, + 333, + 336, + 338, + 341, + 344 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3, + 25, + 77, + 111, + 121, + 155, + 181, + 182, + 183, + 186, + 189, + 192, + 199, + 202, + 203, + 209, + 212, + 215, + 218, + 221, + 224, + 227, + 230, + 233, + 236, + 240, + 244, + 247, + 250, + 265, + 268, + 269, + 278, + 281, + 284, + 287, + 290, + 293, + 294, + 297, + 300, + 306, + 314, + 319, + 323, + 331, + 334, + 339, + 342, + 345, + 346 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 113, + 118, + 119, + 120, + 122, + 124, + 125, + 144, + 145, + 147, + 148, + 149, + 150, + 151, + 153, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 184, + 187, + 190, + 193, + 197, + 200, + 205, + 207, + 210, + 213, + 216, + 219, + 222, + 225, + 228, + 231, + 234, + 238, + 242, + 245, + 248, + 251, + 253, + 255, + 257, + 259, + 261, + 263, + 266, + 271, + 273, + 276, + 279, + 282, + 285, + 288, + 291, + 295, + 298, + 304, + 310, + 312, + 315, + 317, + 321, + 324, + 327, + 329, + 332, + 335, + 337, + 340, + 343 + ] + }, + { + "name" : "Resources", + "sourceIndexes" : + [ + 237, + 301, + 302, + 303, + 307, + 308 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Device/ST/STM32F4xx/LICENSE.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_armcc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_armclang.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_compiler.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_gcc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_iccarm.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/cmsis_version.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_armv8mbl.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_armv8mml.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm0.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm0plus.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm1.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm23.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm3.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm33.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm4.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_cm7.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_sc000.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/core_sc300.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/mpu_armv7.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/mpu_armv8.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/Include/tz_context.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/CMSIS/LICENSE.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_crc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dac.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_i2c.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rng.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rtc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usart.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Drivers/STM32F4xx_HAL_Driver/LICENSE.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/ARM/DSP/Inc/arm_math.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/ARM/DSP/Lib/libarm_cortexM4lf_math.a", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/ST/STM32_USB_Device_Library/LICENSE.txt", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/croutine.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/event_groups.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/StackMacros.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/atomic.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/list.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/message_buffer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/mpu_prototypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/portable.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/queue.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/task.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/include/timers.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/list.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/queue.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/tasks.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/FreeRTOS/Source/timers.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/adc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/can.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/crc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/dac.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/dma.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/freertos.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/gpio.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/i2c.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/main.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/rng.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/rtc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/spi.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/stm32f4xx_hal_msp.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/stm32f4xx_hal_timebase_tim.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/stm32f4xx_it.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/syscalls.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/sysmem.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/system_stm32f4xx.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/tim.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/usart.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/usb_device.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/usbd_cdc_if.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/usbd_conf.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "Src/usbd_desc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "Startup/startup_stm32f407ighx.s", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "application/APP\u5c42\u5e94\u7528\u7f16\u5199\u6307\u5f15.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "application/application.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "application/chassis/chassis.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "application/chassis/chassis.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/chassis/chassis.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "application/cmd/robot_cmd.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "application/cmd/robot_cmd.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/cmd/robot_cmd.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "application/gimbal/gimbal.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "application/gimbal/gimbal.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/gimbal/gimbal.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "application/robot.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "application/robot.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/robot_def.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/robot_task.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "application/shoot/shoot.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "application/shoot/shoot.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "application/shoot/shoot.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/adc/bsp_adc.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/adc/bsp_adc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/adc/bsp_adc.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "bsp/bsp.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "bsp/bsp_init.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/bsp_tools.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/bsp_tools.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/can/bsp_can.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/can/bsp_can.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/can/bsp_can.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/dwt/bsp_dwt.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/dwt/bsp_dwt.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/dwt/bsp_dwt.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/flash/bsp_flash.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/flash/bsp_flash.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/flash/bsp_flash.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/gpio/bsp_gpio.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/gpio/bsp_gpio.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/gpio/bsp_gpio.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/iic/bsp_iic.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/iic/bsp_iic.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/iic/bsp_iic.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/log/bsp_log.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/log/bsp_log.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/log/bsp_log.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/pwm/bsp_pwm.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/pwm/bsp_pwm.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/pwm/bsp_pwm.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/spi/bsp_spi.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/spi/bsp_spi.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/spi/bsp_spi.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/usart/bsp_usart.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/usart/bsp_usart.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/usart/bsp_usart.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "bsp/usb/bsp_usb.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "bsp/usb/bsp_usb.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "bsp/usb/bsp_usb.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/BMI088/bmi088-datasheet.pdf", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/BMI088/bmi088.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/BMI088/bmi088.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/BMI088/bmi088.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/BMI088/bmi088_regNdef.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/TFminiPlus/tfminiplus.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/TFminiPlus/tfminiplus.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/TFminiPlus/tfminiplus.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/alarm/buzzer.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/alarm/buzzer.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/alarm/buzzer.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/QuaternionEKF.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/QuaternionEKF.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/algorithm.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/controller.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/controller.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/crc16.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/crc16.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/crc8.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/crc8.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/kalman_filter.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/kalman_filter.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/algorithm/user_lib.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/algorithm/user_lib.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/auto_aim/auto_aim.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/auto_aim/auto_aim.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/can_comm/can_comm.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/can_comm/can_comm.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/can_comm/can_comm.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/daemon/daemon.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/daemon/daemon.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/daemon/daemon.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/encoder/encoder.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/general_def.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/imu/BMI088Middleware.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/imu/BMI088Middleware.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/imu/BMI088driver.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/imu/BMI088driver.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/imu/BMI088reg.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/imu/ins_task.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/imu/ins_task.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/imu/ins_task.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/ist8310/ist8310.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/ist8310/ist8310.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/ist8310/ist8310.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/led/led.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/led/led.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/led/led.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/master_machine/master_process.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/master_machine/master_process.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/master_machine/master_process.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/master_machine/seasky_protocol.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/master_machine/seasky_protocol.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/master_machine/\u6e56\u5357\u5927\u5b66RoboMaster\u7535\u63a7\u7ec4\u901a\u4fe1\u534f\u8bae.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/message_center/message_center.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/message_center/message_center.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/message_center/message_center.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/module.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/DJImotor/dji_motor.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/DJImotor/dji_motor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/motor/DJImotor/dji_motor.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/HTmotor/HT04.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/HTmotor/HT04.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/motor/HTmotor/HT04.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/motor/HTmotor/\u63a7\u5236\u62a5\u6587.png", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "path" : "modules/motor/HTmotor/\u9a71\u52a8\u5668\u786c\u4ef6\u8bf4\u660e.pdf", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "path" : "modules/motor/LKmotor/LK-TECH\u7535\u673aCAN\u534f\u8bae\u8bf4\u660eV2_3.pdf", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/LKmotor/LK9025.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/LKmotor/LK9025.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/motor/LKmotor/LK_motor.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/motor/LKmotor/\u53cd\u9988\u62a5\u6587.png", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "path" : "modules/motor/LKmotor/\u62a5\u6587\u683c\u5f0f.png", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 1, + "path" : "modules/motor/motor_def.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/motor_task.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/motor_task.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/servo_motor/servo_motor.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/servo_motor/servo_motor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/motor/servo_motor/servo_motor.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/motor/step_motor/step_motor.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/motor/step_motor/step_motor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/oled/oled.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/oled/oled.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/oled/oled.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "modules/oled/oledfont.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/referee/crc_ref.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/referee/crc_ref.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/referee/referee.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/referee/referee_UI.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/referee/referee_UI.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/referee/referee_protocol.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/referee/referee_task.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/referee/referee_task.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/referee/rm_referee.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/referee/rm_referee.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/remote/remote.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/remote/remote_control.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/remote/remote_control.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/standard_cmd/standard_cmd.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/standard_cmd/std_cmd.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/standard_cmd/std_cmd.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/super_cap/super_cap.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/super_cap/super_cap.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/super_cap/super_cap.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/unicomm/unicomm.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/unicomm/unicomm.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/unicomm/unicomm.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "modules/vofa/vofa.c", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 1, + "path" : "modules/vofa/vofa.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "modules/vofa/vofa.md", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "STM32F407IGHX_FLASH.ld", + "sourceGroupIndex" : 1 + } + ], + "type" : "EXECUTABLE" +} diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bc09fa793ec2d73b1696.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bc09fa793ec2d73b1696.json new file mode 100644 index 0000000..7c698ad --- /dev/null +++ b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bc09fa793ec2d73b1696.json @@ -0,0 +1,91 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : {}, + "path" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe", + "version" : "" + }, + "language" : "ASM", + "sourceFileExtensions" : + [ + "s", + "S", + "asm" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include" + ], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe", + "version" : "10.3.1" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed", + "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include" + ], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe", + "version" : "10.3.1" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "mm", + "mpp", + "CPP", + "ixx", + "cppm" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-debug/CMakeCache.txt b/cmake-build-debug/CMakeCache.txt new file mode 100644 index 0000000..ad2cd0f --- /dev/null +++ b/cmake-build-debug/CMakeCache.txt @@ -0,0 +1,449 @@ +# This is the CMakeCache file. +# For build in directory: d:/zhandui/cqdm/basic_framework/cmake-build-debug +# It was generated by CMake: D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-addr2line.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//Id string of the compiler for the CodeBlocks IDE. Automatically +// detected when left empty +CMAKE_CODEBLOCKS_COMPILER_ID:STRING= + +//The CodeBlocks executable +CMAKE_CODEBLOCKS_EXECUTABLE:FILEPATH=CMAKE_CODEBLOCKS_EXECUTABLE-NOTFOUND + +//Additional command line arguments when CodeBlocks invokes make. +// Enter e.g. -j to get parallel builds +CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING= + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//No help, variable specified on the command line. +CMAKE_CXX_COMPILER:UNINITIALIZED=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:UNINITIALIZED=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=D:/MinGW/mingw64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/basic_framework + +//Path to a program. +CMAKE_LINKER:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:UNINITIALIZED=D:/MinGW/mingw64/bin/mingw32-make.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-nm.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=basic_framework + +//Path to a program. +CMAKE_RANLIB:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-strip.exe + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Path to a program. +ProcessorCount_cmd_getconf:FILEPATH=ProcessorCount_cmd_getconf-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_lsconf:FILEPATH=ProcessorCount_cmd_lsconf-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_machinfo:FILEPATH=ProcessorCount_cmd_machinfo-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_mpsched:FILEPATH=ProcessorCount_cmd_mpsched-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_nproc:FILEPATH=ProcessorCount_cmd_nproc-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_pidin:FILEPATH=ProcessorCount_cmd_pidin-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_psrinfo:FILEPATH=ProcessorCount_cmd_psrinfo-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_sysctl:FILEPATH=ProcessorCount_cmd_sysctl-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_sysinfo:FILEPATH=ProcessorCount_cmd_sysinfo-NOTFOUND + +//Path to a program. +ProcessorCount_cmd_uname:FILEPATH=ProcessorCount_cmd_uname-NOTFOUND + +//Value Computed by CMake +basic_framework_BINARY_DIR:STATIC=D:/zhandui/cqdm/basic_framework/cmake-build-debug + +//Value Computed by CMake +basic_framework_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +basic_framework_SOURCE_DIR:STATIC=D:/zhandui/cqdm/basic_framework + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=d:/zhandui/cqdm/basic_framework/cmake-build-debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=26 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL=CodeBlocks +//CXX compiler system defined macros +CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS:INTERNAL=__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;"10.3.1 20210824 (release)";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.7976931348623157e+308L);__DBL_NORM_MAX__;((double)1.7976931348623157e+308L);__DBL_MIN__;((double)2.2250738585072014e-308L);__DBL_EPSILON__;((double)2.2204460492503131e-16L);__DBL_DENORM_MIN__;((double)4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1;__STDC__;1;__cplusplus;201402L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;"10.3.1 20210824 (release)";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__GNUG__;10;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_WEAK__;1;__DEPRECATED;1;__GXX_RTTI;1;__cpp_rtti;199711L;__GXX_EXPERIMENTAL_CXX0X__;1;__cpp_binary_literals;201304L;__cpp_hex_float;201603L;__cpp_runtime_arrays;198712L;__cpp_unicode_characters;200704L;__cpp_raw_strings;200710L;__cpp_unicode_literals;200710L;__cpp_user_defined_literals;200809L;__cpp_lambdas;200907L;__cpp_range_based_for;200907L;__cpp_static_assert;200410L;__cpp_decltype;200707L;__cpp_attributes;200809L;__cpp_rvalue_reference;200610L;__cpp_rvalue_references;200610L;__cpp_variadic_templates;200704L;__cpp_initializer_lists;200806L;__cpp_delegating_constructors;200604L;__cpp_nsdmi;200809L;__cpp_inheriting_constructors;201511L;__cpp_ref_qualifiers;200710L;__cpp_alias_templates;200704L;__cpp_return_type_deduction;201304L;__cpp_init_captures;201304L;__cpp_generic_lambdas;201304L;__cpp_constexpr;201304L;__cpp_decltype_auto;201304L;__cpp_aggregate_nsdmi;201304L;__cpp_variable_templates;201304L;__cpp_digit_separators;201309L;__cpp_sized_deallocation;201309L;__cpp_threadsafe_static_init;200806L;__EXCEPTIONS;1;__cpp_exceptions;199711L;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;double(1.7976931348623157e+308L);__DBL_NORM_MAX__;double(1.7976931348623157e+308L);__DBL_MIN__;double(2.2250738585072014e-308L);__DBL_EPSILON__;double(2.2204460492503131e-16L);__DBL_DENORM_MIN__;double(4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__WCHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1 +//CXX compiler system include directories +CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS:INTERNAL=d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include-fixed;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include +//C compiler system defined macros +CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS:INTERNAL=__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;10;__GNUC_MINOR__;3;__GNUC_PATCHLEVEL__;1;__VERSION__;"10.3.1 20210824 (release)";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;8;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;8;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;unsigned int;__WINT_TYPE__;unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;long unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;long int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;long unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;long int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;long unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;int;__INT_FAST16_TYPE__;int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned int;__UINT_FAST16_TYPE__;unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__GXX_ABI_VERSION;1014;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffffffffU;__WCHAR_MIN__;0U;__WINT_MAX__;0xffffffffU;__WINT_MIN__;0U;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;32;__WINT_WIDTH__;32;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffffL;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffUL;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffffL;__INT32_C(c);c ## L;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffUL;__UINT32_C(c);c ## UL;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7fffffff;__INT_FAST8_WIDTH__;32;__INT_FAST16_MAX__;0x7fffffff;__INT_FAST16_WIDTH__;32;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xffffffffU;__UINT_FAST16_MAX__;0xffffffffU;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;0;__GCC_IEC_559_COMPLEX;0;__FLT_EVAL_METHOD__;0;__FLT_EVAL_METHOD_TS_18661_3__;0;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.4028234663852886e+38F;__FLT_NORM_MAX__;3.4028234663852886e+38F;__FLT_MIN__;1.1754943508222875e-38F;__FLT_EPSILON__;1.1920928955078125e-7F;__FLT_DENORM_MIN__;1.4012984643248171e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.7976931348623157e+308L);__DBL_NORM_MAX__;((double)1.7976931348623157e+308L);__DBL_MIN__;((double)2.2250738585072014e-308L);__DBL_EPSILON__;((double)2.2204460492503131e-16L);__DBL_DENORM_MIN__;((double)4.9406564584124654e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;53;__LDBL_DIG__;15;__LDBL_MIN_EXP__;(-1021);__LDBL_MIN_10_EXP__;(-307);__LDBL_MAX_EXP__;1024;__LDBL_MAX_10_EXP__;308;__DECIMAL_DIG__;17;__LDBL_DECIMAL_DIG__;17;__LDBL_MAX__;1.7976931348623157e+308L;__LDBL_NORM_MAX__;1.7976931348623157e+308L;__LDBL_MIN__;2.2250738585072014e-308L;__LDBL_EPSILON__;2.2204460492503131e-16L;__LDBL_DENORM_MIN__;4.9406564584124654e-324L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.4028234663852886e+38F32;__FLT32_NORM_MAX__;3.4028234663852886e+38F32;__FLT32_MIN__;1.1754943508222875e-38F32;__FLT32_EPSILON__;1.1920928955078125e-7F32;__FLT32_DENORM_MIN__;1.4012984643248171e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.7976931348623157e+308F64;__FLT64_NORM_MAX__;1.7976931348623157e+308F64;__FLT64_MIN__;2.2250738585072014e-308F64;__FLT64_EPSILON__;2.2204460492503131e-16F64;__FLT64_DENORM_MIN__;4.9406564584124654e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.7976931348623157e+308F32x;__FLT32X_NORM_MAX__;1.7976931348623157e+308F32x;__FLT32X_MIN__;2.2250738585072014e-308F32x;__FLT32X_EPSILON__;2.2204460492503131e-16F32x;__FLT32X_DENORM_MIN__;4.9406564584124654e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__SFRACT_FBIT__;7;__SFRACT_IBIT__;0;__SFRACT_MIN__;(-0.5HR-0.5HR);__SFRACT_MAX__;0X7FP-7HR;__SFRACT_EPSILON__;0x1P-7HR;__USFRACT_FBIT__;8;__USFRACT_IBIT__;0;__USFRACT_MIN__;0.0UHR;__USFRACT_MAX__;0XFFP-8UHR;__USFRACT_EPSILON__;0x1P-8UHR;__FRACT_FBIT__;15;__FRACT_IBIT__;0;__FRACT_MIN__;(-0.5R-0.5R);__FRACT_MAX__;0X7FFFP-15R;__FRACT_EPSILON__;0x1P-15R;__UFRACT_FBIT__;16;__UFRACT_IBIT__;0;__UFRACT_MIN__;0.0UR;__UFRACT_MAX__;0XFFFFP-16UR;__UFRACT_EPSILON__;0x1P-16UR;__LFRACT_FBIT__;31;__LFRACT_IBIT__;0;__LFRACT_MIN__;(-0.5LR-0.5LR);__LFRACT_MAX__;0X7FFFFFFFP-31LR;__LFRACT_EPSILON__;0x1P-31LR;__ULFRACT_FBIT__;32;__ULFRACT_IBIT__;0;__ULFRACT_MIN__;0.0ULR;__ULFRACT_MAX__;0XFFFFFFFFP-32ULR;__ULFRACT_EPSILON__;0x1P-32ULR;__LLFRACT_FBIT__;63;__LLFRACT_IBIT__;0;__LLFRACT_MIN__;(-0.5LLR-0.5LLR);__LLFRACT_MAX__;0X7FFFFFFFFFFFFFFFP-63LLR;__LLFRACT_EPSILON__;0x1P-63LLR;__ULLFRACT_FBIT__;64;__ULLFRACT_IBIT__;0;__ULLFRACT_MIN__;0.0ULLR;__ULLFRACT_MAX__;0XFFFFFFFFFFFFFFFFP-64ULLR;__ULLFRACT_EPSILON__;0x1P-64ULLR;__SACCUM_FBIT__;7;__SACCUM_IBIT__;8;__SACCUM_MIN__;(-0X1P7HK-0X1P7HK);__SACCUM_MAX__;0X7FFFP-7HK;__SACCUM_EPSILON__;0x1P-7HK;__USACCUM_FBIT__;8;__USACCUM_IBIT__;8;__USACCUM_MIN__;0.0UHK;__USACCUM_MAX__;0XFFFFP-8UHK;__USACCUM_EPSILON__;0x1P-8UHK;__ACCUM_FBIT__;15;__ACCUM_IBIT__;16;__ACCUM_MIN__;(-0X1P15K-0X1P15K);__ACCUM_MAX__;0X7FFFFFFFP-15K;__ACCUM_EPSILON__;0x1P-15K;__UACCUM_FBIT__;16;__UACCUM_IBIT__;16;__UACCUM_MIN__;0.0UK;__UACCUM_MAX__;0XFFFFFFFFP-16UK;__UACCUM_EPSILON__;0x1P-16UK;__LACCUM_FBIT__;31;__LACCUM_IBIT__;32;__LACCUM_MIN__;(-0X1P31LK-0X1P31LK);__LACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LK;__LACCUM_EPSILON__;0x1P-31LK;__ULACCUM_FBIT__;32;__ULACCUM_IBIT__;32;__ULACCUM_MIN__;0.0ULK;__ULACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULK;__ULACCUM_EPSILON__;0x1P-32ULK;__LLACCUM_FBIT__;31;__LLACCUM_IBIT__;32;__LLACCUM_MIN__;(-0X1P31LLK-0X1P31LLK);__LLACCUM_MAX__;0X7FFFFFFFFFFFFFFFP-31LLK;__LLACCUM_EPSILON__;0x1P-31LLK;__ULLACCUM_FBIT__;32;__ULLACCUM_IBIT__;32;__ULLACCUM_MIN__;0.0ULLK;__ULLACCUM_MAX__;0XFFFFFFFFFFFFFFFFP-32ULLK;__ULLACCUM_EPSILON__;0x1P-32ULLK;__QQ_FBIT__;7;__QQ_IBIT__;0;__HQ_FBIT__;15;__HQ_IBIT__;0;__SQ_FBIT__;31;__SQ_IBIT__;0;__DQ_FBIT__;63;__DQ_IBIT__;0;__TQ_FBIT__;127;__TQ_IBIT__;0;__UQQ_FBIT__;8;__UQQ_IBIT__;0;__UHQ_FBIT__;16;__UHQ_IBIT__;0;__USQ_FBIT__;32;__USQ_IBIT__;0;__UDQ_FBIT__;64;__UDQ_IBIT__;0;__UTQ_FBIT__;128;__UTQ_IBIT__;0;__HA_FBIT__;7;__HA_IBIT__;8;__SA_FBIT__;15;__SA_IBIT__;16;__DA_FBIT__;31;__DA_IBIT__;32;__TA_FBIT__;63;__TA_IBIT__;64;__UHA_FBIT__;8;__UHA_IBIT__;8;__USA_FBIT__;16;__USA_IBIT__;16;__UDA_FBIT__;32;__UDA_IBIT__;32;__UTA_FBIT__;64;__UTA_IBIT__;64;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__; ;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__CHAR_UNSIGNED__;1;__GCC_ATOMIC_BOOL_LOCK_FREE;1;__GCC_ATOMIC_CHAR_LOCK_FREE;1;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;1;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;1;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;1;__GCC_ATOMIC_SHORT_LOCK_FREE;1;__GCC_ATOMIC_INT_LOCK_FREE;1;__GCC_ATOMIC_LONG_LOCK_FREE;1;__GCC_ATOMIC_LLONG_LOCK_FREE;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;1;__HAVE_SPECULATION_SAFE_VALUE;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_PTRDIFF_T__;4;__ARM_32BIT_STATE;1;__ARM_SIZEOF_MINIMAL_ENUM;1;__ARM_SIZEOF_WCHAR_T;4;__arm__;1;__ARM_ARCH;4;__ARM_ARCH_ISA_ARM;1;__APCS_32__;1;__GCC_ASM_FLAG_OUTPUTS__;1;__ARM_ARCH_ISA_THUMB;1;__ARMEL__;1;__SOFTFP__;1;__VFP_FP__;1;__THUMB_INTERWORK__;1;__ARM_ARCH_4T__;1;__ARM_PCS;1;__ARM_EABI__;1;__ARM_FEATURE_COPROC;1;__GXX_TYPEINFO_EQUALITY_INLINE;0;__ELF__;1;__USES_INITFINI__;1 +//C compiler system include directories +CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS:INTERNAL=d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/include-fixed;d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include +//Name of generator. +CMAKE_GENERATOR:INTERNAL=MinGW Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/zhandui/cqdm/basic_framework +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_getconf +ProcessorCount_cmd_getconf-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_lsconf +ProcessorCount_cmd_lsconf-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_machinfo +ProcessorCount_cmd_machinfo-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_mpsched +ProcessorCount_cmd_mpsched-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_nproc +ProcessorCount_cmd_nproc-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_pidin +ProcessorCount_cmd_pidin-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_psrinfo +ProcessorCount_cmd_psrinfo-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_sysctl +ProcessorCount_cmd_sysctl-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: ProcessorCount_cmd_uname +ProcessorCount_cmd_uname-ADVANCED:INTERNAL=1 + diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeASMCompiler.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeASMCompiler.cmake new file mode 100644 index 0000000..fd05d13 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "arm-none-eabi-ar") +set(CMAKE_ASM_COMPILER_AR "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe") +set(CMAKE_ASM_COMPILER_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake new file mode 100644 index 0000000..e92b064 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "10.3.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "arm-none-eabi-ar") +set(CMAKE_C_COMPILER_AR "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..9a98b53 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "10.3.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "arm-none-eabi-ar") +set(CMAKE_CXX_COMPILER_AR "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ar.exe") +set(CMAKE_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc-ranlib.exe") +set(CMAKE_LINKER "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-ld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..fcf3132 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_C.bin differ diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin b/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..879d328 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.26.4/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake b/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake new file mode 100644 index 0000000..862f525 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Generic-1") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..88155ff --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,866 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.o b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.o new file mode 100644 index 0000000..c7ee40c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.o differ diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..746b167 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,855 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.o b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000..8c210e3 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.o differ diff --git a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..db41d1c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,441 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineSystem.cmake:199 (message)" + - "CMakeLists.txt:17 (project)" + message: | + The target system is: Generic - 1 - + The host system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:17 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. + Compiler: D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe + Build flags: + Id flags: + + The output was: + 1 + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ld.exe: d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x2c): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:17 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" + + The C compiler identification is GNU, found in: + D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdC/CMakeCCompilerId.o + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:17 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe + Build flags: + Id flags: + + The output was: + 1 + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ld.exe: d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x2c): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:17 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is GNU, found in: + D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/3.26.4/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerId.cmake:1102 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineASMCompiler.cmake:127 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "CMakeLists.txt:17 (project)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + arm-none-eabi-gcc.exe (GNU Arm Embedded Toolchain 10.3-2021.10) 10.3.1 20210824 (release) + Copyright (C) 2020 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + - + kind: "try_compile-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf" + binary: "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf + + Run Build Command(s):D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 D:/MinGW/mingw64/bin/mingw32-make.exe -f Makefile cmTC_e8519/fast && D:/MinGW/mingw64/bin/mingw32-make.exe -f CMakeFiles\\cmTC_e8519.dir\\build.make CMakeFiles/cmTC_e8519.dir/build + mingw32-make.exe[1]: Entering directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf' + Building C object CMakeFiles/cmTC_e8519.dir/CMakeCCompilerABI.c.obj + D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj -c "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c" + Using built-in specs. + COLLECT_GCC=D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-gcc.exe + Target: arm-none-eabi + Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile + Thread model: single + Supported LTO compression algorithms: zlib + gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1.exe -quiet -v -iprefix d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi -D__USES_INITFINI__ D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -mlibarch=armv4t -march=armv4t -auxbase-strip CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\zyx12\\AppData\\Local\\Temp\\cc58WTer.s + GNU C17 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include" + ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/usr/include" + #include "..." search starts here: + #include <...> search starts here: + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include + End of search list. + GNU C17 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: f3937ce18b4177bfd408ca565336596a + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj C:\\Users\\zyx12\\AppData\\Local\\Temp\\cc58WTer.s + GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621 + COMPILER_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ + LIBRARY_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../arm-none-eabi/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + Linking C static library libcmTC_e8519.a + "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_e8519.dir\\cmake_clean_target.cmake + "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_e8519.dir\\link.txt --verbose=1 + arm-none-eabi-ar qc libcmTC_e8519.a CMakeFiles/cmTC_e8519.dir/CMakeCCompilerABI.c.obj + D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-ranlib.exe libcmTC_e8519.a + mingw32-make.exe[1]: Leaving directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + end of search list found + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include] + implicit include dirs: [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include] + + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(arm-none-eabi-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf] + ignore line: [] + ignore line: [Run Build Command(s):D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 D:/MinGW/mingw64/bin/mingw32-make.exe -f Makefile cmTC_e8519/fast && D:/MinGW/mingw64/bin/mingw32-make.exe -f CMakeFiles\\cmTC_e8519.dir\\build.make CMakeFiles/cmTC_e8519.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf'] + ignore line: [Building C object CMakeFiles/cmTC_e8519.dir/CMakeCCompilerABI.c.obj] + ignore line: [D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-gcc.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj -c "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-gcc.exe] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [ d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1.exe -quiet -v -iprefix d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi -D__USES_INITFINI__ D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mcpu=arm7tdmi -mfloat-abi=soft -marm -mlibarch=armv4t -march=armv4t -auxbase-strip CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\\Users\\zyx12\\AppData\\Local\\Temp\\cc58WTer.s] + ignore line: [GNU C17 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include"] + ignore line: [ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"] + ignore line: [ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/usr/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: f3937ce18b4177bfd408ca565336596a] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [ d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj C:\\Users\\zyx12\\AppData\\Local\\Temp\\cc58WTer.s] + ignore line: [GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621] + ignore line: [COMPILER_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_e8519.dir\\CMakeCCompilerABI.c.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [Linking C static library libcmTC_e8519.a] + ignore line: ["D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_e8519.dir\\cmake_clean_target.cmake] + ignore line: ["D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_e8519.dir\\link.txt --verbose=1] + ignore line: [arm-none-eabi-ar qc libcmTC_e8519.a CMakeFiles/cmTC_e8519.dir/CMakeCCompilerABI.c.obj] + ignore line: [D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-ranlib.exe libcmTC_e8519.a] + ignore line: [mingw32-make.exe[1]: Leaving directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1sgbqf'] + ignore line: [] + ignore line: [] + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa" + binary: "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa + + Run Build Command(s):D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 D:/MinGW/mingw64/bin/mingw32-make.exe -f Makefile cmTC_79e6e/fast && D:/MinGW/mingw64/bin/mingw32-make.exe -f CMakeFiles\\cmTC_79e6e.dir\\build.make CMakeFiles/cmTC_79e6e.dir/build + mingw32-make.exe[1]: Entering directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa' + Building CXX object CMakeFiles/cmTC_79e6e.dir/CMakeCXXCompilerABI.cpp.obj + D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj -c "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp" + Using built-in specs. + COLLECT_GCC=D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-g++.exe + Target: arm-none-eabi + Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile + Thread model: single + Supported LTO compression algorithms: zlib + gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1plus.exe -quiet -v -iprefix d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi -D__USES_INITFINI__ D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -mlibarch=armv4t -march=armv4t -auxbase-strip CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\zyx12\\AppData\\Local\\Temp\\ccLkIEBM.s + GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include" + ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed" + ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/usr/include" + #include "..." search starts here: + #include <...> search starts here: + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1 + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed + d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include + End of search list. + GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: f8787892a7c5aa84cea58dce52be7118 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\zyx12\\AppData\\Local\\Temp\\ccLkIEBM.s + GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621 + COMPILER_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ + LIBRARY_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/;d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../arm-none-eabi/lib/ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t' + Linking CXX static library libcmTC_79e6e.a + "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_79e6e.dir\\cmake_clean_target.cmake + "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_79e6e.dir\\link.txt --verbose=1 + arm-none-eabi-ar qc libcmTC_79e6e.a CMakeFiles/cmTC_79e6e.dir/CMakeCXXCompilerABI.cpp.obj + D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-ranlib.exe libcmTC_79e6e.a + mingw32-make.exe[1]: Leaving directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + add: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + end of search list found + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed] + collapse include dir [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] ==> [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include] + implicit include dirs: [D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/arm-none-eabi;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/c++/10.3.1/backward;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include] + + + - + kind: "message-v1" + backtrace: + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" + - "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:17 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(arm-none-eabi-ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa] + ignore line: [] + ignore line: [Run Build Command(s):D:/clion/CLion 2023.2.2/bin/cmake/win/x64/bin/cmake.exe -E env VERBOSE=1 D:/MinGW/mingw64/bin/mingw32-make.exe -f Makefile cmTC_79e6e/fast && D:/MinGW/mingw64/bin/mingw32-make.exe -f CMakeFiles\\cmTC_79e6e.dir\\build.make CMakeFiles/cmTC_79e6e.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa'] + ignore line: [Building CXX object CMakeFiles/cmTC_79e6e.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-g++.exe -fdiagnostics-color=always -v -o CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj -c "D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-g++.exe] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [ d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1plus.exe -quiet -v -iprefix d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi -D__USES_INITFINI__ D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\share\\cmake-3.26\\Modules\\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=arm7tdmi -mfloat-abi=soft -marm -mlibarch=armv4t -march=armv4t -auxbase-strip CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\\Users\\zyx12\\AppData\\Local\\Temp\\ccLkIEBM.s] + ignore line: [GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include"] + ignore line: [ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed"] + ignore line: [ignoring duplicate directory "d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"] + ignore line: [ignoring nonexistent directory "d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../arm-none-eabi/usr/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + ignore line: [ d:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: f8787892a7c5aa84cea58dce52be7118] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [ d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv4t -mfloat-abi=soft -meabi=5 -o CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj C:\\Users\\zyx12\\AppData\\Local\\Temp\\ccLkIEBM.s] + ignore line: [GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621] + ignore line: [COMPILER_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/] + ignore line: [d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles\\cmTC_79e6e.dir\\CMakeCXXCompilerABI.cpp.obj' '-c' '-mcpu=arm7tdmi' '-mfloat-abi=soft' '-marm' '-mlibarch=armv4t' '-march=armv4t'] + ignore line: [Linking CXX static library libcmTC_79e6e.a] + ignore line: ["D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -P CMakeFiles\\cmTC_79e6e.dir\\cmake_clean_target.cmake] + ignore line: ["D:\\clion\\CLion 2023.2.2\\bin\\cmake\\win\\x64\\bin\\cmake.exe" -E cmake_link_script CMakeFiles\\cmTC_79e6e.dir\\link.txt --verbose=1] + ignore line: [arm-none-eabi-ar qc libcmTC_79e6e.a CMakeFiles/cmTC_79e6e.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [D:\\gcc-arm-none-eabi-10.3-2021.10-win32\\gcc-arm-none-eabi-10.3-2021.10\\bin\\arm-none-eabi-ranlib.exe libcmTC_79e6e.a] + ignore line: [mingw32-make.exe[1]: Leaving directory 'D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kmodsa'] + ignore line: [] + ignore line: [] + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + +... diff --git a/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..753b971 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "D:/zhandui/cqdm/basic_framework") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "D:/zhandui/cqdm/basic_framework/cmake-build-debug") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/cmake-build-debug/CMakeFiles/Makefile.cmake b/cmake-build-debug/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..5e18bda --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Makefile.cmake @@ -0,0 +1,49 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "MinGW Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeASMInformation.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCInformation.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCXXInformation.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeCommonLanguageInclude.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeFindCodeBlocks.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeGenericSystem.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeInitializeConfigs.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeLanguageInformation.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeSystemSpecificInformation.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/CMakeSystemSpecificInitialize.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-ASM.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-C.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU-CXX.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Compiler/GNU.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/Platform/Generic.cmake" + "D:/clion/CLion 2023.2.2/bin/cmake/win/x64/share/cmake-3.26/Modules/ProcessorCount.cmake" + "D:/zhandui/cqdm/basic_framework/CMakeLists.txt" + "CMakeFiles/3.26.4/CMakeASMCompiler.cmake" + "CMakeFiles/3.26.4/CMakeCCompiler.cmake" + "CMakeFiles/3.26.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.26.4/CMakeSystem.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/basic_framework.elf.dir/DependInfo.cmake" + ) diff --git a/cmake-build-debug/CMakeFiles/Makefile2 b/cmake-build-debug/CMakeFiles/Makefile2 new file mode 100644 index 0000000..9da619c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/Makefile2 @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" + +# The command to remove a file. +RM = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = D:\zhandui\cqdm\basic_framework + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = D:\zhandui\cqdm\basic_framework\cmake-build-debug + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/basic_framework.elf.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/basic_framework.elf.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/basic_framework.elf.dir + +# All Build rule for target. +CMakeFiles/basic_framework.elf.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100 "Built target basic_framework.elf" +.PHONY : CMakeFiles/basic_framework.elf.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/basic_framework.elf.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles 100 + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 CMakeFiles/basic_framework.elf.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles 0 +.PHONY : CMakeFiles/basic_framework.elf.dir/rule + +# Convenience name for target. +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/rule +.PHONY : basic_framework.elf + +# clean rule for target. +CMakeFiles/basic_framework.elf.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/clean +.PHONY : CMakeFiles/basic_framework.elf.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/cmake-build-debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..1a73e0b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/basic_framework.elf.dir +D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/edit_cache.dir +D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/rebuild_cache.dir diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/ASM.includecache b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/ASM.includecache new file mode 100644 index 0000000..9c96216 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/ASM.includecache @@ -0,0 +1,28 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h +intrinsics.h +- +machine.h +- + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h +../Config/SEGGER_RTT_Conf.h +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h +stdlib.h +- +stdarg.h +- + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s +SEGGER_RTT.h +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + +D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s + diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/DependInfo.cmake b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/DependInfo.cmake new file mode 100644 index 0000000..19e460e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/DependInfo.cmake @@ -0,0 +1,221 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "ASM" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_ASM + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s" "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj" + "D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s" "D:/zhandui/cqdm/basic_framework/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj" + ) +set(CMAKE_ASM_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_ASM + "ARM_MATH_CM4" + "ARM_MATH_MATRIX_CHECK" + "ARM_MATH_ROUNDING" + "DEBUG" + "STM32F407xx" + "USE_HAL_DRIVER" + ) + +# The include file search paths: +set(CMAKE_ASM_TARGET_INCLUDE_PATH + "D:/zhandui/cqdm/basic_framework/Inc" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc" + "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include" + "D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc" + "D:/zhandui/cqdm/basic_framework/bsp" + "D:/zhandui/cqdm/basic_framework/bsp/adc" + "D:/zhandui/cqdm/basic_framework/bsp/can" + "D:/zhandui/cqdm/basic_framework/bsp/dwt" + "D:/zhandui/cqdm/basic_framework/bsp/flash" + "D:/zhandui/cqdm/basic_framework/bsp/gpio" + "D:/zhandui/cqdm/basic_framework/bsp/iic" + "D:/zhandui/cqdm/basic_framework/bsp/log" + "D:/zhandui/cqdm/basic_framework/bsp/pwm" + "D:/zhandui/cqdm/basic_framework/bsp/spi" + "D:/zhandui/cqdm/basic_framework/bsp/usart" + "D:/zhandui/cqdm/basic_framework/bsp/usb" + "D:/zhandui/cqdm/basic_framework/modules" + "D:/zhandui/cqdm/basic_framework/modules/alarm" + "D:/zhandui/cqdm/basic_framework/modules/algorithm" + "D:/zhandui/cqdm/basic_framework/modules/BMI088" + "D:/zhandui/cqdm/basic_framework/modules/can_comm" + "D:/zhandui/cqdm/basic_framework/modules/daemon" + "D:/zhandui/cqdm/basic_framework/modules/encoder" + "D:/zhandui/cqdm/basic_framework/modules/imu" + "D:/zhandui/cqdm/basic_framework/modules/ist8310" + "D:/zhandui/cqdm/basic_framework/modules/led" + "D:/zhandui/cqdm/basic_framework/modules/master_machine" + "D:/zhandui/cqdm/basic_framework/modules/message_center" + "D:/zhandui/cqdm/basic_framework/modules/motor" + "D:/zhandui/cqdm/basic_framework/modules/oled" + "D:/zhandui/cqdm/basic_framework/modules/referee" + "D:/zhandui/cqdm/basic_framework/modules/remote" + "D:/zhandui/cqdm/basic_framework/modules/standard_cmd" + "D:/zhandui/cqdm/basic_framework/modules/super_cap" + "D:/zhandui/cqdm/basic_framework/modules/TFminiPlus" + "D:/zhandui/cqdm/basic_framework/modules/unicomm" + "D:/zhandui/cqdm/basic_framework/modules/vofa" + "D:/zhandui/cqdm/basic_framework/modules/auto_aim" + "D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor" + "D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor" + "D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor" + "D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor" + "D:/zhandui/cqdm/basic_framework/modules/motor/step_motor" + "D:/zhandui/cqdm/basic_framework/application" + "D:/zhandui/cqdm/basic_framework/application/chassis" + "D:/zhandui/cqdm/basic_framework/application/cmd" + "D:/zhandui/cqdm/basic_framework/application/gimbal" + "D:/zhandui/cqdm/basic_framework/application/shoot" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config" + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/croutine.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/list.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/queue.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/timers.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/adc.c" "CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/can.c" "CMakeFiles/basic_framework.elf.dir/Src/can.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/can.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/crc.c" "CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/dac.c" "CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/dma.c" "CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/freertos.c" "CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/gpio.c" "CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/i2c.c" "CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/main.c" "CMakeFiles/basic_framework.elf.dir/Src/main.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/main.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/rng.c" "CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/rtc.c" "CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/spi.c" "CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_msp.c" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_timebase_tim.c" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/syscalls.c" "CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/sysmem.c" "CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/system_stm32f4xx.c" "CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/tim.c" "CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/usart.c" "CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/usb_device.c" "CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/usbd_cdc_if.c" "CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/usbd_conf.c" "CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj.d" + "D:/zhandui/cqdm/basic_framework/Src/usbd_desc.c" "CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c" "CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj.d" + "D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.c" "CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj.d" + "D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c" "CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj.d" + "D:/zhandui/cqdm/basic_framework/application/robot.c" "CMakeFiles/basic_framework.elf.dir/application/robot.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/application/robot.c.obj.d" + "D:/zhandui/cqdm/basic_framework/application/shoot/shoot.c" "CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/adc/bsp_adc.c" "CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.c" "CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.c" "CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c" "CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.c" "CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.c" "CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.c" "CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.c" "CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.c" "CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.c" "CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.c" "CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj.d" + "D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.c" "CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.c" "CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.c" "CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.c" "CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.c" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.c" "CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.c" "CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.c" "CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.c" "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.c" "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.c" "CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.c" "CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/led/led.c" "CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.c" "CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.c" "CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.c" "CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.c" "CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/oled/oled.c" "CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.c" "CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.c" "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.c" "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.c" "CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.c" "CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/standard_cmd/std_cmd.c" "CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.c" "CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/unicomm/unicomm.c" "CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj.d" + "D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.c" "CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj" "gcc" "CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj new file mode 100644 index 0000000..69f9155 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj.d new file mode 100644 index 0000000..cbaffe3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj new file mode 100644 index 0000000..ecdd8c2 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj.d new file mode 100644 index 0000000..c002814 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj new file mode 100644 index 0000000..bee40cc Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj.d new file mode 100644 index 0000000..4d3a5b8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj new file mode 100644 index 0000000..1e2191b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj.d new file mode 100644 index 0000000..4f658f5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj new file mode 100644 index 0000000..ce998de Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj.d new file mode 100644 index 0000000..81d8715 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj new file mode 100644 index 0000000..73d3ba8 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj.d new file mode 100644 index 0000000..c71c5f7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj new file mode 100644 index 0000000..93fd20b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj.d new file mode 100644 index 0000000..fef0074 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj new file mode 100644 index 0000000..78ba9f9 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj.d new file mode 100644 index 0000000..5958654 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj new file mode 100644 index 0000000..2c67e7e Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj.d new file mode 100644 index 0000000..103bf86 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj new file mode 100644 index 0000000..fc87b6e Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj.d new file mode 100644 index 0000000..bcb595c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj new file mode 100644 index 0000000..3c23019 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj.d new file mode 100644 index 0000000..d6b1ca4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj new file mode 100644 index 0000000..a0ef930 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj.d new file mode 100644 index 0000000..8182828 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj new file mode 100644 index 0000000..d32d5a4 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj.d new file mode 100644 index 0000000..215aea0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj new file mode 100644 index 0000000..92ddd7d Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj.d new file mode 100644 index 0000000..d91bc3f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj new file mode 100644 index 0000000..728fb74 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj.d new file mode 100644 index 0000000..a9bd0cc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj new file mode 100644 index 0000000..161fed0 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj.d new file mode 100644 index 0000000..c778ded --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj new file mode 100644 index 0000000..6f7116f Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj.d new file mode 100644 index 0000000..0bd692d --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj new file mode 100644 index 0000000..fe0411f Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj.d new file mode 100644 index 0000000..22eba89 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj new file mode 100644 index 0000000..b0e9fcb Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj.d new file mode 100644 index 0000000..db2703b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj new file mode 100644 index 0000000..5221f46 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj.d new file mode 100644 index 0000000..3bdb1f5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj new file mode 100644 index 0000000..ebf39bd Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj.d new file mode 100644 index 0000000..e0138ac --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj new file mode 100644 index 0000000..6ca8877 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj.d new file mode 100644 index 0000000..5e8d034 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj new file mode 100644 index 0000000..0b66056 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj.d new file mode 100644 index 0000000..f9adf76 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj new file mode 100644 index 0000000..7cbdfd9 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj.d new file mode 100644 index 0000000..5e33a07 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj new file mode 100644 index 0000000..4f134b0 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj.d new file mode 100644 index 0000000..c6c56cc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj new file mode 100644 index 0000000..e8ba6f6 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj.d new file mode 100644 index 0000000..bf017e7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj new file mode 100644 index 0000000..f21fe89 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj.d new file mode 100644 index 0000000..7771e29 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj new file mode 100644 index 0000000..dfc8c9b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj.d new file mode 100644 index 0000000..931d1c0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj new file mode 100644 index 0000000..35f7322 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj.d new file mode 100644 index 0000000..9c41d42 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj new file mode 100644 index 0000000..e25875b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj.d new file mode 100644 index 0000000..f8c9f8c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj new file mode 100644 index 0000000..ebea9ac Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj.d new file mode 100644 index 0000000..29998c8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj.d @@ -0,0 +1,2 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj new file mode 100644 index 0000000..30b1bf3 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj.d new file mode 100644 index 0000000..2034397 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj new file mode 100644 index 0000000..210aa18 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj.d new file mode 100644 index 0000000..619a05b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj.d @@ -0,0 +1,94 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj new file mode 100644 index 0000000..e232430 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj.d new file mode 100644 index 0000000..b23805f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj.d @@ -0,0 +1,92 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj new file mode 100644 index 0000000..476649e Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj.d new file mode 100644 index 0000000..3cddc40 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj.d @@ -0,0 +1,93 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj new file mode 100644 index 0000000..63a8ae2 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj.d new file mode 100644 index 0000000..b0b470a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj.d @@ -0,0 +1,92 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj new file mode 100644 index 0000000..4ab59df Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj.d new file mode 100644 index 0000000..9587ad1 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj.d @@ -0,0 +1,42 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj new file mode 100644 index 0000000..4d55a85 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj.d new file mode 100644 index 0000000..3eb14ac --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj.d @@ -0,0 +1,20 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\croutine.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/croutine.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj new file mode 100644 index 0000000..1b09f65 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj.d new file mode 100644 index 0000000..e1dfbd2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj.d @@ -0,0 +1,36 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj new file mode 100644 index 0000000..35791c6 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj.d new file mode 100644 index 0000000..2193345 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj.d @@ -0,0 +1,31 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\list.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj new file mode 100644 index 0000000..b1091f3 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj.d new file mode 100644 index 0000000..425e69a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj.d @@ -0,0 +1,19 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj new file mode 100644 index 0000000..e3f61f2 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj.d new file mode 100644 index 0000000..18b10f8 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj.d @@ -0,0 +1,32 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj new file mode 100644 index 0000000..7b44b71 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj.d new file mode 100644 index 0000000..e34a8a4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj.d @@ -0,0 +1,38 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\queue.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj new file mode 100644 index 0000000..e5b080b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj.d new file mode 100644 index 0000000..d97932f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj.d @@ -0,0 +1,34 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/stream_buffer.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj new file mode 100644 index 0000000..8c7a20c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj.d new file mode 100644 index 0000000..5d24567 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj.d @@ -0,0 +1,39 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\tasks.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/stack_macros.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj new file mode 100644 index 0000000..f74518d Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj.d new file mode 100644 index 0000000..6ca3ccc --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj.d @@ -0,0 +1,35 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\timers.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj new file mode 100644 index 0000000..404c31a Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj.d new file mode 100644 index 0000000..ff5148e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj.d @@ -0,0 +1,26 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj new file mode 100644 index 0000000..d1e19ef Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj new file mode 100644 index 0000000..2319aec Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj.d new file mode 100644 index 0000000..ad6008e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj.d @@ -0,0 +1,23 @@ +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj new file mode 100644 index 0000000..4995079 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj.d new file mode 100644 index 0000000..bef35b3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\adc.c \ + D:\zhandui\cqdm\basic_framework\Inc/adc.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj new file mode 100644 index 0000000..93366b7 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj.d new file mode 100644 index 0000000..d994dc5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/can.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\can.c \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj new file mode 100644 index 0000000..37dde33 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj.d new file mode 100644 index 0000000..2037def --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\crc.c \ + D:\zhandui\cqdm\basic_framework\Inc/crc.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj new file mode 100644 index 0000000..39ac2e3 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj.d new file mode 100644 index 0000000..3543813 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\dac.c \ + D:\zhandui\cqdm\basic_framework\Inc/dac.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj new file mode 100644 index 0000000..2097d87 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj.d new file mode 100644 index 0000000..5bf11fa --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\dma.c \ + D:\zhandui\cqdm\basic_framework\Inc/dma.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj new file mode 100644 index 0000000..f4e9a25 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj.d new file mode 100644 index 0000000..db55131 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj.d @@ -0,0 +1,72 @@ +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\freertos.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj new file mode 100644 index 0000000..3d535a9 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj.d new file mode 100644 index 0000000..399b461 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\gpio.c \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj new file mode 100644 index 0000000..d3c9bac Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj.d new file mode 100644 index 0000000..d6ba55d --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\i2c.c \ + D:\zhandui\cqdm\basic_framework\Inc/i2c.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj new file mode 100644 index 0000000..4e07807 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj.d new file mode 100644 index 0000000..fcac03d --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/main.c.obj.d @@ -0,0 +1,124 @@ +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\main.c \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Inc/adc.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/crc.h \ + D:\zhandui\cqdm\basic_framework\Inc/dac.h \ + D:\zhandui\cqdm\basic_framework\Inc/dma.h \ + D:\zhandui\cqdm\basic_framework\Inc/i2c.h \ + D:\zhandui\cqdm\basic_framework\Inc/rng.h \ + D:\zhandui\cqdm\basic_framework\Inc/rtc.h \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/usb_device.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + D:\zhandui\cqdm\basic_framework\application/robot.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj new file mode 100644 index 0000000..9e444e1 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj.d new file mode 100644 index 0000000..f33622c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\rng.c \ + D:\zhandui\cqdm\basic_framework\Inc/rng.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj new file mode 100644 index 0000000..f6661a4 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj.d new file mode 100644 index 0000000..1cf42c9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\rtc.c \ + D:\zhandui\cqdm\basic_framework\Inc/rtc.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj new file mode 100644 index 0000000..53c457c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj.d new file mode 100644 index 0000000..e6fe331 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\spi.c \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj new file mode 100644 index 0000000..9cb4f4d Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj.d new file mode 100644 index 0000000..cb90146 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj.d @@ -0,0 +1,55 @@ +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_msp.c \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj new file mode 100644 index 0000000..c9312bd Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj.d new file mode 100644 index 0000000..76f6cea --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_timebase_tim.c \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj new file mode 100644 index 0000000..de58c4b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj.d new file mode 100644 index 0000000..d16a1f3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_it.c \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_it.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj new file mode 100644 index 0000000..aeeb9a9 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj.d new file mode 100644 index 0000000..37025e2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj.d @@ -0,0 +1,45 @@ +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\syscalls.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stat.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\time.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\time.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\errno.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\errno.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\signal.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\signal.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\time.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_time.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\times.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj new file mode 100644 index 0000000..d3dcf75 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj.d new file mode 100644 index 0000000..04dad38 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj.d @@ -0,0 +1,20 @@ +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\sysmem.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\errno.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\errno.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj new file mode 100644 index 0000000..3aa2c0a Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj.d new file mode 100644 index 0000000..7c4c797 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj.d @@ -0,0 +1,54 @@ +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\system_stm32f4xx.c \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj new file mode 100644 index 0000000..5d456fc Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj.d new file mode 100644 index 0000000..b33bb57 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\tim.c \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj new file mode 100644 index 0000000..61f6426 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj.d new file mode 100644 index 0000000..8c52da3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\usart.c \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj new file mode 100644 index 0000000..cfd58bd Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj.d new file mode 100644 index 0000000..1b4deb7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\usb_device.c \ + D:\zhandui\cqdm\basic_framework\Inc/usb_device.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_desc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj new file mode 100644 index 0000000..6e10229 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj.d new file mode 100644 index 0000000..79a29c4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj.d @@ -0,0 +1,94 @@ +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\usbd_cdc_if.c \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj new file mode 100644 index 0000000..8224f8b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj.d new file mode 100644 index 0000000..fcd2e6a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj.d @@ -0,0 +1,95 @@ +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\usbd_conf.c \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj new file mode 100644 index 0000000..aaa5e65 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj.d new file mode 100644 index 0000000..94ce623 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj.d @@ -0,0 +1,94 @@ +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj: \ + D:\zhandui\cqdm\basic_framework\Src\usbd_desc.c \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_desc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj new file mode 100644 index 0000000..0be3b7d Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj new file mode 100644 index 0000000..f013f7c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj.d new file mode 100644 index 0000000..e5d8787 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj.d @@ -0,0 +1,127 @@ +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj: \ + D:\zhandui\cqdm\basic_framework\application\chassis\chassis.c \ + D:\zhandui\cqdm\basic_framework\application\chassis\chassis.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor/dji_motor.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\super_cap/super_cap.h \ + D:\zhandui\cqdm\basic_framework\modules\message_center/message_center.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_task.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/rm_referee.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_UI.h \ + D:\zhandui\cqdm\basic_framework\modules\vofa/vofa.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj new file mode 100644 index 0000000..8f6a91b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj.d new file mode 100644 index 0000000..9f24294 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj.d @@ -0,0 +1,126 @@ +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj: \ + D:\zhandui\cqdm\basic_framework\application\cmd\robot_cmd.c \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\application\cmd\robot_cmd.h \ + D:\zhandui\cqdm\basic_framework\modules\remote/remote_control.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\message_center/message_center.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor/dji_motor.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\auto_aim/auto_aim.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_task.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/rm_referee.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj new file mode 100644 index 0000000..4f9c083 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj.d new file mode 100644 index 0000000..a9e284b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj.d @@ -0,0 +1,122 @@ +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj: \ + D:\zhandui\cqdm\basic_framework\application\gimbal\gimbal.c \ + D:\zhandui\cqdm\basic_framework\application\gimbal\gimbal.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor/dji_motor.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\message_center/message_center.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\BMI088/bmi088.h \ + D:\zhandui\cqdm\basic_framework\bsp\spi/bsp_spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + D:\zhandui\cqdm\basic_framework\bsp\gpio/bsp_gpio.h \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\modules\vofa/vofa.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj new file mode 100644 index 0000000..1c74b21 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj.d new file mode 100644 index 0000000..f9296d9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/robot.c.obj.d @@ -0,0 +1,155 @@ +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj: \ + D:\zhandui\cqdm\basic_framework\application\robot.c \ + D:\zhandui\cqdm\basic_framework\bsp/bsp_init.h \ + D:\zhandui\cqdm\basic_framework\bsp/bsp_init.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\bsp\usb/bsp_usb.h \ + D:\zhandui\cqdm\basic_framework\Inc/usb_device.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_desc.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h \ + D:\zhandui\cqdm\basic_framework\application\robot.h \ + D:\zhandui\cqdm\basic_framework\application\robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + D:\zhandui\cqdm\basic_framework\application\robot_task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_task.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_task.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/rm_referee.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\modules\referee/referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor/HT04.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\alarm/buzzer.h \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\application\chassis/chassis.h \ + D:\zhandui\cqdm\basic_framework\application\gimbal/gimbal.h \ + D:\zhandui\cqdm\basic_framework\application\shoot/shoot.h \ + D:\zhandui\cqdm\basic_framework\application\cmd/robot_cmd.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj new file mode 100644 index 0000000..307d498 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj.d new file mode 100644 index 0000000..e9e87fb --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj.d @@ -0,0 +1,113 @@ +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj: \ + D:\zhandui\cqdm\basic_framework\application\shoot\shoot.c \ + D:\zhandui\cqdm\basic_framework\application\shoot\shoot.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor/dji_motor.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\message_center/message_center.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj new file mode 100644 index 0000000..9c83bc0 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj.d new file mode 100644 index 0000000..f4e4b36 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj.d @@ -0,0 +1,2 @@ +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\adc\bsp_adc.c diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj new file mode 100644 index 0000000..53cd64c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj.d new file mode 100644 index 0000000..83ea65a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj.d @@ -0,0 +1,59 @@ +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\bsp_tools.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\bsp\bsp_tools.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj new file mode 100644 index 0000000..2f684cb Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj.d new file mode 100644 index 0000000..546192a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj.d @@ -0,0 +1,95 @@ +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\can\bsp_can.c \ + D:\zhandui\cqdm\basic_framework\bsp\can\bsp_can.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj new file mode 100644 index 0000000..66d2fa6 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj.d new file mode 100644 index 0000000..085c1c2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj.d @@ -0,0 +1,104 @@ +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\dwt\bsp_dwt.c \ + D:\zhandui\cqdm\basic_framework\bsp\dwt\bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj new file mode 100644 index 0000000..3555c39 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj.d new file mode 100644 index 0000000..b47c02f --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj.d @@ -0,0 +1,70 @@ +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\flash\bsp_flash.c \ + D:\zhandui\cqdm\basic_framework\bsp\flash\bsp_flash.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj new file mode 100644 index 0000000..553e18e Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj.d new file mode 100644 index 0000000..979fb6e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj.d @@ -0,0 +1,75 @@ +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\gpio\bsp_gpio.c \ + D:\zhandui\cqdm\basic_framework\bsp\gpio\bsp_gpio.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj new file mode 100644 index 0000000..4276a8d Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj.d new file mode 100644 index 0000000..fd44b97 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj.d @@ -0,0 +1,75 @@ +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\iic\bsp_iic.c \ + D:\zhandui\cqdm\basic_framework\bsp\iic\bsp_iic.h \ + D:\zhandui\cqdm\basic_framework\Inc/i2c.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj new file mode 100644 index 0000000..a82cdbf Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj.d new file mode 100644 index 0000000..87e608b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj.d @@ -0,0 +1,38 @@ +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\log\bsp_log.c \ + D:\zhandui\cqdm\basic_framework\bsp\log\bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj new file mode 100644 index 0000000..9286c82 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj.d new file mode 100644 index 0000000..e983bb2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj.d @@ -0,0 +1,76 @@ +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\pwm\bsp_pwm.c \ + D:\zhandui\cqdm\basic_framework\bsp\pwm\bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj new file mode 100644 index 0000000..f0b47b5 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj.d new file mode 100644 index 0000000..82757da --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj.d @@ -0,0 +1,76 @@ +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\spi\bsp_spi.c \ + D:\zhandui\cqdm\basic_framework\bsp\spi\bsp_spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj new file mode 100644 index 0000000..d720eee Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj.d new file mode 100644 index 0000000..45430f4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj.d @@ -0,0 +1,92 @@ +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\usart\bsp_usart.c \ + D:\zhandui\cqdm\basic_framework\bsp\usart\bsp_usart.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj new file mode 100644 index 0000000..52b8531 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj.d new file mode 100644 index 0000000..e6adae3 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj.d @@ -0,0 +1,104 @@ +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj: \ + D:\zhandui\cqdm\basic_framework\bsp\usb\bsp_usb.c \ + D:\zhandui\cqdm\basic_framework\bsp\usb\bsp_usb.h \ + D:\zhandui\cqdm\basic_framework\Inc/usb_device.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_desc.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/build.make b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/build.make new file mode 100644 index 0000000..656da1a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/build.make @@ -0,0 +1,2129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" + +# The command to remove a file. +RM = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = D:\zhandui\cqdm\basic_framework + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = D:\zhandui\cqdm\basic_framework\cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/basic_framework.elf.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/basic_framework.elf.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/basic_framework.elf.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/basic_framework.elf.dir/flags.make + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_adc_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_can.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dac_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pcd_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rng.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rtc_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_adc.c.s + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building C object CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj -MF CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c.obj -c D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c > CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c.i + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c -o CMakeFiles\basic_framework.elf.dir\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usb.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c > CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Src\usbd_cdc.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c > CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_core.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c > CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ctlreq.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c > CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\ST\STM32_USB_Device_Library\Core\Src\usbd_ioreq.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/croutine.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\croutine.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\croutine.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\croutine.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\croutine.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\croutine.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\croutine.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/list.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\list.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\list.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\list.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\list.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\list.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\list.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\list.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F\port.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/queue.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\queue.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\queue.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\queue.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\queue.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\queue.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\queue.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\queue.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_44) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_45) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\tasks.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\tasks.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\tasks.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\tasks.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\tasks.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\tasks.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/timers.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_46) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\timers.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\timers.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\timers.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\timers.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\timers.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\timers.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\FreeRTOS\Source\timers.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_47) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT.c.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_48) "Building ASM object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing ASM source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling ASM source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_ASM_ARMv7M.s.s + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_49) "Building C object CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj -MF CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c.obj -c D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c > CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c.i + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c -o CMakeFiles\basic_framework.elf.dir\Middlewares\Third_Party\SEGGER\RTT\SEGGER_RTT_printf.c.s + +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj: D:/zhandui/cqdm/basic_framework/Src/adc.c +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_50) "Building C object CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\adc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\adc.c.obj -c D:\zhandui\cqdm\basic_framework\Src\adc.c + +CMakeFiles/basic_framework.elf.dir/Src/adc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/adc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\adc.c > CMakeFiles\basic_framework.elf.dir\Src\adc.c.i + +CMakeFiles/basic_framework.elf.dir/Src/adc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/adc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\adc.c -o CMakeFiles\basic_framework.elf.dir\Src\adc.c.s + +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj: D:/zhandui/cqdm/basic_framework/Src/can.c +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_51) "Building C object CMakeFiles/basic_framework.elf.dir/Src/can.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/can.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\can.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\can.c.obj -c D:\zhandui\cqdm\basic_framework\Src\can.c + +CMakeFiles/basic_framework.elf.dir/Src/can.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/can.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\can.c > CMakeFiles\basic_framework.elf.dir\Src\can.c.i + +CMakeFiles/basic_framework.elf.dir/Src/can.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/can.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\can.c -o CMakeFiles\basic_framework.elf.dir\Src\can.c.s + +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj: D:/zhandui/cqdm/basic_framework/Src/crc.c +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_52) "Building C object CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\crc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\crc.c.obj -c D:\zhandui\cqdm\basic_framework\Src\crc.c + +CMakeFiles/basic_framework.elf.dir/Src/crc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/crc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\crc.c > CMakeFiles\basic_framework.elf.dir\Src\crc.c.i + +CMakeFiles/basic_framework.elf.dir/Src/crc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/crc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\crc.c -o CMakeFiles\basic_framework.elf.dir\Src\crc.c.s + +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj: D:/zhandui/cqdm/basic_framework/Src/dac.c +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_53) "Building C object CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\dac.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\dac.c.obj -c D:\zhandui\cqdm\basic_framework\Src\dac.c + +CMakeFiles/basic_framework.elf.dir/Src/dac.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/dac.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\dac.c > CMakeFiles\basic_framework.elf.dir\Src\dac.c.i + +CMakeFiles/basic_framework.elf.dir/Src/dac.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/dac.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\dac.c -o CMakeFiles\basic_framework.elf.dir\Src\dac.c.s + +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj: D:/zhandui/cqdm/basic_framework/Src/dma.c +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_54) "Building C object CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\dma.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\dma.c.obj -c D:\zhandui\cqdm\basic_framework\Src\dma.c + +CMakeFiles/basic_framework.elf.dir/Src/dma.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/dma.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\dma.c > CMakeFiles\basic_framework.elf.dir\Src\dma.c.i + +CMakeFiles/basic_framework.elf.dir/Src/dma.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/dma.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\dma.c -o CMakeFiles\basic_framework.elf.dir\Src\dma.c.s + +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj: D:/zhandui/cqdm/basic_framework/Src/freertos.c +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_55) "Building C object CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\freertos.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\freertos.c.obj -c D:\zhandui\cqdm\basic_framework\Src\freertos.c + +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/freertos.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\freertos.c > CMakeFiles\basic_framework.elf.dir\Src\freertos.c.i + +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/freertos.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\freertos.c -o CMakeFiles\basic_framework.elf.dir\Src\freertos.c.s + +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj: D:/zhandui/cqdm/basic_framework/Src/gpio.c +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_56) "Building C object CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\gpio.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\gpio.c.obj -c D:\zhandui\cqdm\basic_framework\Src\gpio.c + +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/gpio.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\gpio.c > CMakeFiles\basic_framework.elf.dir\Src\gpio.c.i + +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/gpio.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\gpio.c -o CMakeFiles\basic_framework.elf.dir\Src\gpio.c.s + +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj: D:/zhandui/cqdm/basic_framework/Src/i2c.c +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_57) "Building C object CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\i2c.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\i2c.c.obj -c D:\zhandui\cqdm\basic_framework\Src\i2c.c + +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/i2c.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\i2c.c > CMakeFiles\basic_framework.elf.dir\Src\i2c.c.i + +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/i2c.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\i2c.c -o CMakeFiles\basic_framework.elf.dir\Src\i2c.c.s + +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj: D:/zhandui/cqdm/basic_framework/Src/main.c +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_58) "Building C object CMakeFiles/basic_framework.elf.dir/Src/main.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/main.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\main.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\main.c.obj -c D:\zhandui\cqdm\basic_framework\Src\main.c + +CMakeFiles/basic_framework.elf.dir/Src/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/main.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\main.c > CMakeFiles\basic_framework.elf.dir\Src\main.c.i + +CMakeFiles/basic_framework.elf.dir/Src/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/main.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\main.c -o CMakeFiles\basic_framework.elf.dir\Src\main.c.s + +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj: D:/zhandui/cqdm/basic_framework/Src/rng.c +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_59) "Building C object CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\rng.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\rng.c.obj -c D:\zhandui\cqdm\basic_framework\Src\rng.c + +CMakeFiles/basic_framework.elf.dir/Src/rng.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/rng.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\rng.c > CMakeFiles\basic_framework.elf.dir\Src\rng.c.i + +CMakeFiles/basic_framework.elf.dir/Src/rng.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/rng.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\rng.c -o CMakeFiles\basic_framework.elf.dir\Src\rng.c.s + +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj: D:/zhandui/cqdm/basic_framework/Src/rtc.c +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_60) "Building C object CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\rtc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\rtc.c.obj -c D:\zhandui\cqdm\basic_framework\Src\rtc.c + +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/rtc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\rtc.c > CMakeFiles\basic_framework.elf.dir\Src\rtc.c.i + +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/rtc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\rtc.c -o CMakeFiles\basic_framework.elf.dir\Src\rtc.c.s + +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj: D:/zhandui/cqdm/basic_framework/Src/spi.c +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_61) "Building C object CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\spi.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\spi.c.obj -c D:\zhandui\cqdm\basic_framework\Src\spi.c + +CMakeFiles/basic_framework.elf.dir/Src/spi.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/spi.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\spi.c > CMakeFiles\basic_framework.elf.dir\Src\spi.c.i + +CMakeFiles/basic_framework.elf.dir/Src/spi.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/spi.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\spi.c -o CMakeFiles\basic_framework.elf.dir\Src\spi.c.s + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_msp.c +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_62) "Building C object CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_msp.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_msp.c.obj -c D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_msp.c + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_msp.c > CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_msp.c.i + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_msp.c -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_msp.c.s + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_timebase_tim.c +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_63) "Building C object CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_timebase_tim.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_timebase_tim.c.obj -c D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_timebase_tim.c + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_timebase_tim.c > CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_timebase_tim.c.i + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_hal_timebase_tim.c -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_hal_timebase_tim.c.s + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_64) "Building C object CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_it.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_it.c.obj -c D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_it.c + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_it.c > CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_it.c.i + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\stm32f4xx_it.c -o CMakeFiles\basic_framework.elf.dir\Src\stm32f4xx_it.c.s + +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj: D:/zhandui/cqdm/basic_framework/Src/syscalls.c +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_65) "Building C object CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\syscalls.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\syscalls.c.obj -c D:\zhandui\cqdm\basic_framework\Src\syscalls.c + +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\syscalls.c > CMakeFiles\basic_framework.elf.dir\Src\syscalls.c.i + +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\syscalls.c -o CMakeFiles\basic_framework.elf.dir\Src\syscalls.c.s + +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj: D:/zhandui/cqdm/basic_framework/Src/sysmem.c +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_66) "Building C object CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\sysmem.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\sysmem.c.obj -c D:\zhandui\cqdm\basic_framework\Src\sysmem.c + +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\sysmem.c > CMakeFiles\basic_framework.elf.dir\Src\sysmem.c.i + +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\sysmem.c -o CMakeFiles\basic_framework.elf.dir\Src\sysmem.c.s + +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj: D:/zhandui/cqdm/basic_framework/Src/system_stm32f4xx.c +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_67) "Building C object CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\system_stm32f4xx.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\system_stm32f4xx.c.obj -c D:\zhandui\cqdm\basic_framework\Src\system_stm32f4xx.c + +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\system_stm32f4xx.c > CMakeFiles\basic_framework.elf.dir\Src\system_stm32f4xx.c.i + +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\system_stm32f4xx.c -o CMakeFiles\basic_framework.elf.dir\Src\system_stm32f4xx.c.s + +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj: D:/zhandui/cqdm/basic_framework/Src/tim.c +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_68) "Building C object CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\tim.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\tim.c.obj -c D:\zhandui\cqdm\basic_framework\Src\tim.c + +CMakeFiles/basic_framework.elf.dir/Src/tim.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/tim.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\tim.c > CMakeFiles\basic_framework.elf.dir\Src\tim.c.i + +CMakeFiles/basic_framework.elf.dir/Src/tim.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/tim.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\tim.c -o CMakeFiles\basic_framework.elf.dir\Src\tim.c.s + +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj: D:/zhandui/cqdm/basic_framework/Src/usart.c +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_69) "Building C object CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\usart.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\usart.c.obj -c D:\zhandui\cqdm\basic_framework\Src\usart.c + +CMakeFiles/basic_framework.elf.dir/Src/usart.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/usart.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\usart.c > CMakeFiles\basic_framework.elf.dir\Src\usart.c.i + +CMakeFiles/basic_framework.elf.dir/Src/usart.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/usart.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\usart.c -o CMakeFiles\basic_framework.elf.dir\Src\usart.c.s + +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj: D:/zhandui/cqdm/basic_framework/Src/usb_device.c +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_70) "Building C object CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\usb_device.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\usb_device.c.obj -c D:\zhandui\cqdm\basic_framework\Src\usb_device.c + +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\usb_device.c > CMakeFiles\basic_framework.elf.dir\Src\usb_device.c.i + +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\usb_device.c -o CMakeFiles\basic_framework.elf.dir\Src\usb_device.c.s + +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_cdc_if.c +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_71) "Building C object CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\usbd_cdc_if.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\usbd_cdc_if.c.obj -c D:\zhandui\cqdm\basic_framework\Src\usbd_cdc_if.c + +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\usbd_cdc_if.c > CMakeFiles\basic_framework.elf.dir\Src\usbd_cdc_if.c.i + +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\usbd_cdc_if.c -o CMakeFiles\basic_framework.elf.dir\Src\usbd_cdc_if.c.s + +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_conf.c +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_72) "Building C object CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\usbd_conf.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\usbd_conf.c.obj -c D:\zhandui\cqdm\basic_framework\Src\usbd_conf.c + +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\usbd_conf.c > CMakeFiles\basic_framework.elf.dir\Src\usbd_conf.c.i + +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\usbd_conf.c -o CMakeFiles\basic_framework.elf.dir\Src\usbd_conf.c.s + +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_desc.c +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_73) "Building C object CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj -MF CMakeFiles\basic_framework.elf.dir\Src\usbd_desc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\Src\usbd_desc.c.obj -c D:\zhandui\cqdm\basic_framework\Src\usbd_desc.c + +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\Src\usbd_desc.c > CMakeFiles\basic_framework.elf.dir\Src\usbd_desc.c.i + +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\Src\usbd_desc.c -o CMakeFiles\basic_framework.elf.dir\Src\usbd_desc.c.s + +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj: D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_74) "Building ASM object CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles\basic_framework.elf.dir\Startup\startup_stm32f407ighx.s.obj -c D:\zhandui\cqdm\basic_framework\Startup\startup_stm32f407ighx.s + +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing ASM source to CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -E D:\zhandui\cqdm\basic_framework\Startup\startup_stm32f407ighx.s > CMakeFiles\basic_framework.elf.dir\Startup\startup_stm32f407ighx.s.i + +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling ASM source to assembly CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -S D:\zhandui\cqdm\basic_framework\Startup\startup_stm32f407ighx.s -o CMakeFiles\basic_framework.elf.dir\Startup\startup_stm32f407ighx.s.s + +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj: D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_75) "Building C object CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj -MF CMakeFiles\basic_framework.elf.dir\application\chassis\chassis.c.obj.d -o CMakeFiles\basic_framework.elf.dir\application\chassis\chassis.c.obj -c D:\zhandui\cqdm\basic_framework\application\chassis\chassis.c + +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\application\chassis\chassis.c > CMakeFiles\basic_framework.elf.dir\application\chassis\chassis.c.i + +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\application\chassis\chassis.c -o CMakeFiles\basic_framework.elf.dir\application\chassis\chassis.c.s + +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj: D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.c +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_76) "Building C object CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj -MF CMakeFiles\basic_framework.elf.dir\application\cmd\robot_cmd.c.obj.d -o CMakeFiles\basic_framework.elf.dir\application\cmd\robot_cmd.c.obj -c D:\zhandui\cqdm\basic_framework\application\cmd\robot_cmd.c + +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\application\cmd\robot_cmd.c > CMakeFiles\basic_framework.elf.dir\application\cmd\robot_cmd.c.i + +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\application\cmd\robot_cmd.c -o CMakeFiles\basic_framework.elf.dir\application\cmd\robot_cmd.c.s + +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj: D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_77) "Building C object CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj -MF CMakeFiles\basic_framework.elf.dir\application\gimbal\gimbal.c.obj.d -o CMakeFiles\basic_framework.elf.dir\application\gimbal\gimbal.c.obj -c D:\zhandui\cqdm\basic_framework\application\gimbal\gimbal.c + +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\application\gimbal\gimbal.c > CMakeFiles\basic_framework.elf.dir\application\gimbal\gimbal.c.i + +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\application\gimbal\gimbal.c -o CMakeFiles\basic_framework.elf.dir\application\gimbal\gimbal.c.s + +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj: D:/zhandui/cqdm/basic_framework/application/robot.c +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_78) "Building C object CMakeFiles/basic_framework.elf.dir/application/robot.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/application/robot.c.obj -MF CMakeFiles\basic_framework.elf.dir\application\robot.c.obj.d -o CMakeFiles\basic_framework.elf.dir\application\robot.c.obj -c D:\zhandui\cqdm\basic_framework\application\robot.c + +CMakeFiles/basic_framework.elf.dir/application/robot.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/application/robot.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\application\robot.c > CMakeFiles\basic_framework.elf.dir\application\robot.c.i + +CMakeFiles/basic_framework.elf.dir/application/robot.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/application/robot.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\application\robot.c -o CMakeFiles\basic_framework.elf.dir\application\robot.c.s + +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj: D:/zhandui/cqdm/basic_framework/application/shoot/shoot.c +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_79) "Building C object CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj -MF CMakeFiles\basic_framework.elf.dir\application\shoot\shoot.c.obj.d -o CMakeFiles\basic_framework.elf.dir\application\shoot\shoot.c.obj -c D:\zhandui\cqdm\basic_framework\application\shoot\shoot.c + +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\application\shoot\shoot.c > CMakeFiles\basic_framework.elf.dir\application\shoot\shoot.c.i + +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\application\shoot\shoot.c -o CMakeFiles\basic_framework.elf.dir\application\shoot\shoot.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj: D:/zhandui/cqdm/basic_framework/bsp/adc/bsp_adc.c +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_80) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\adc\bsp_adc.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\adc\bsp_adc.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\adc\bsp_adc.c + +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\adc\bsp_adc.c > CMakeFiles\basic_framework.elf.dir\bsp\adc\bsp_adc.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\adc\bsp_adc.c -o CMakeFiles\basic_framework.elf.dir\bsp\adc\bsp_adc.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj: D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.c +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_81) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\bsp_tools.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\bsp_tools.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\bsp_tools.c + +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\bsp_tools.c > CMakeFiles\basic_framework.elf.dir\bsp\bsp_tools.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\bsp_tools.c -o CMakeFiles\basic_framework.elf.dir\bsp\bsp_tools.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj: D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.c +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_82) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\can\bsp_can.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\can\bsp_can.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\can\bsp_can.c + +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\can\bsp_can.c > CMakeFiles\basic_framework.elf.dir\bsp\can\bsp_can.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\can\bsp_can.c -o CMakeFiles\basic_framework.elf.dir\bsp\can\bsp_can.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj: D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_83) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\dwt\bsp_dwt.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\dwt\bsp_dwt.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\dwt\bsp_dwt.c + +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\dwt\bsp_dwt.c > CMakeFiles\basic_framework.elf.dir\bsp\dwt\bsp_dwt.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\dwt\bsp_dwt.c -o CMakeFiles\basic_framework.elf.dir\bsp\dwt\bsp_dwt.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj: D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.c +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_84) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\flash\bsp_flash.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\flash\bsp_flash.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\flash\bsp_flash.c + +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\flash\bsp_flash.c > CMakeFiles\basic_framework.elf.dir\bsp\flash\bsp_flash.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\flash\bsp_flash.c -o CMakeFiles\basic_framework.elf.dir\bsp\flash\bsp_flash.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj: D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.c +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_85) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\gpio\bsp_gpio.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\gpio\bsp_gpio.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\gpio\bsp_gpio.c + +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\gpio\bsp_gpio.c > CMakeFiles\basic_framework.elf.dir\bsp\gpio\bsp_gpio.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\gpio\bsp_gpio.c -o CMakeFiles\basic_framework.elf.dir\bsp\gpio\bsp_gpio.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj: D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.c +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_86) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\iic\bsp_iic.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\iic\bsp_iic.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\iic\bsp_iic.c + +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\iic\bsp_iic.c > CMakeFiles\basic_framework.elf.dir\bsp\iic\bsp_iic.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\iic\bsp_iic.c -o CMakeFiles\basic_framework.elf.dir\bsp\iic\bsp_iic.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj: D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.c +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_87) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\log\bsp_log.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\log\bsp_log.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\log\bsp_log.c + +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\log\bsp_log.c > CMakeFiles\basic_framework.elf.dir\bsp\log\bsp_log.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\log\bsp_log.c -o CMakeFiles\basic_framework.elf.dir\bsp\log\bsp_log.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj: D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.c +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_88) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\pwm\bsp_pwm.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\pwm\bsp_pwm.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\pwm\bsp_pwm.c + +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\pwm\bsp_pwm.c > CMakeFiles\basic_framework.elf.dir\bsp\pwm\bsp_pwm.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\pwm\bsp_pwm.c -o CMakeFiles\basic_framework.elf.dir\bsp\pwm\bsp_pwm.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj: D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.c +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_89) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\spi\bsp_spi.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\spi\bsp_spi.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\spi\bsp_spi.c + +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\spi\bsp_spi.c > CMakeFiles\basic_framework.elf.dir\bsp\spi\bsp_spi.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\spi\bsp_spi.c -o CMakeFiles\basic_framework.elf.dir\bsp\spi\bsp_spi.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj: D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.c +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_90) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\usart\bsp_usart.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\usart\bsp_usart.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\usart\bsp_usart.c + +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\usart\bsp_usart.c > CMakeFiles\basic_framework.elf.dir\bsp\usart\bsp_usart.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\usart\bsp_usart.c -o CMakeFiles\basic_framework.elf.dir\bsp\usart\bsp_usart.c.s + +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj: D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.c +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_91) "Building C object CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj -MF CMakeFiles\basic_framework.elf.dir\bsp\usb\bsp_usb.c.obj.d -o CMakeFiles\basic_framework.elf.dir\bsp\usb\bsp_usb.c.obj -c D:\zhandui\cqdm\basic_framework\bsp\usb\bsp_usb.c + +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\bsp\usb\bsp_usb.c > CMakeFiles\basic_framework.elf.dir\bsp\usb\bsp_usb.c.i + +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\bsp\usb\bsp_usb.c -o CMakeFiles\basic_framework.elf.dir\bsp\usb\bsp_usb.c.s + +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj: D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.c +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_92) "Building C object CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\BMI088\bmi088.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\BMI088\bmi088.c.obj -c D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088.c + +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088.c > CMakeFiles\basic_framework.elf.dir\modules\BMI088\bmi088.c.i + +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088.c -o CMakeFiles\basic_framework.elf.dir\modules\BMI088\bmi088.c.s + +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj: D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.c +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_93) "Building C object CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\TFminiPlus\tfminiplus.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\TFminiPlus\tfminiplus.c.obj -c D:\zhandui\cqdm\basic_framework\modules\TFminiPlus\tfminiplus.c + +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\TFminiPlus\tfminiplus.c > CMakeFiles\basic_framework.elf.dir\modules\TFminiPlus\tfminiplus.c.i + +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\TFminiPlus\tfminiplus.c -o CMakeFiles\basic_framework.elf.dir\modules\TFminiPlus\tfminiplus.c.s + +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj: D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.c +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_94) "Building C object CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\alarm\buzzer.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\alarm\buzzer.c.obj -c D:\zhandui\cqdm\basic_framework\modules\alarm\buzzer.c + +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\alarm\buzzer.c > CMakeFiles\basic_framework.elf.dir\modules\alarm\buzzer.c.i + +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\alarm\buzzer.c -o CMakeFiles\basic_framework.elf.dir\modules\alarm\buzzer.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_95) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\QuaternionEKF.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\QuaternionEKF.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\QuaternionEKF.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\QuaternionEKF.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\QuaternionEKF.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\QuaternionEKF.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\QuaternionEKF.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_96) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\controller.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\controller.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\controller.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\controller.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\controller.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\controller.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\controller.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_97) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc16.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc16.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\crc16.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\crc16.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc16.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\crc16.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc16.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_98) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc8.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc8.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\crc8.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\crc8.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc8.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\crc8.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\crc8.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_99) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\kalman_filter.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\kalman_filter.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\kalman_filter.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\kalman_filter.c.s + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.c +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_100) "Building C object CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\algorithm\user_lib.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\user_lib.c.obj -c D:\zhandui\cqdm\basic_framework\modules\algorithm\user_lib.c + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\algorithm\user_lib.c > CMakeFiles\basic_framework.elf.dir\modules\algorithm\user_lib.c.i + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\algorithm\user_lib.c -o CMakeFiles\basic_framework.elf.dir\modules\algorithm\user_lib.c.s + +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj: D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.c +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_101) "Building C object CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\auto_aim\auto_aim.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\auto_aim\auto_aim.c.obj -c D:\zhandui\cqdm\basic_framework\modules\auto_aim\auto_aim.c + +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\auto_aim\auto_aim.c > CMakeFiles\basic_framework.elf.dir\modules\auto_aim\auto_aim.c.i + +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\auto_aim\auto_aim.c -o CMakeFiles\basic_framework.elf.dir\modules\auto_aim\auto_aim.c.s + +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj: D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.c +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_102) "Building C object CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\can_comm\can_comm.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\can_comm\can_comm.c.obj -c D:\zhandui\cqdm\basic_framework\modules\can_comm\can_comm.c + +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\can_comm\can_comm.c > CMakeFiles\basic_framework.elf.dir\modules\can_comm\can_comm.c.i + +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\can_comm\can_comm.c -o CMakeFiles\basic_framework.elf.dir\modules\can_comm\can_comm.c.s + +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj: D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.c +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_103) "Building C object CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\daemon\daemon.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\daemon\daemon.c.obj -c D:\zhandui\cqdm\basic_framework\modules\daemon\daemon.c + +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\daemon\daemon.c > CMakeFiles\basic_framework.elf.dir\modules\daemon\daemon.c.i + +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\daemon\daemon.c -o CMakeFiles\basic_framework.elf.dir\modules\daemon\daemon.c.s + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.c +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_104) "Building C object CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088Middleware.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088Middleware.c.obj -c D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.c + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.c > CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088Middleware.c.i + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.c -o CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088Middleware.c.s + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.c +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_105) "Building C object CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088driver.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088driver.c.obj -c D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.c + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.c > CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088driver.c.i + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.c -o CMakeFiles\basic_framework.elf.dir\modules\imu\BMI088driver.c.s + +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.c +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_106) "Building C object CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\imu\ins_task.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\imu\ins_task.c.obj -c D:\zhandui\cqdm\basic_framework\modules\imu\ins_task.c + +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\imu\ins_task.c > CMakeFiles\basic_framework.elf.dir\modules\imu\ins_task.c.i + +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\imu\ins_task.c -o CMakeFiles\basic_framework.elf.dir\modules\imu\ins_task.c.s + +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj: D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.c +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_107) "Building C object CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\ist8310\ist8310.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\ist8310\ist8310.c.obj -c D:\zhandui\cqdm\basic_framework\modules\ist8310\ist8310.c + +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\ist8310\ist8310.c > CMakeFiles\basic_framework.elf.dir\modules\ist8310\ist8310.c.i + +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\ist8310\ist8310.c -o CMakeFiles\basic_framework.elf.dir\modules\ist8310\ist8310.c.s + +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj: D:/zhandui/cqdm/basic_framework/modules/led/led.c +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_108) "Building C object CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\led\led.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\led\led.c.obj -c D:\zhandui\cqdm\basic_framework\modules\led\led.c + +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/led/led.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\led\led.c > CMakeFiles\basic_framework.elf.dir\modules\led\led.c.i + +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/led/led.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\led\led.c -o CMakeFiles\basic_framework.elf.dir\modules\led\led.c.s + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj: D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.c +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_109) "Building C object CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\master_machine\master_process.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\master_machine\master_process.c.obj -c D:\zhandui\cqdm\basic_framework\modules\master_machine\master_process.c + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\master_machine\master_process.c > CMakeFiles\basic_framework.elf.dir\modules\master_machine\master_process.c.i + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\master_machine\master_process.c -o CMakeFiles\basic_framework.elf.dir\modules\master_machine\master_process.c.s + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj: D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.c +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_110) "Building C object CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\master_machine\seasky_protocol.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\master_machine\seasky_protocol.c.obj -c D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.c + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.c > CMakeFiles\basic_framework.elf.dir\modules\master_machine\seasky_protocol.c.i + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.c -o CMakeFiles\basic_framework.elf.dir\modules\master_machine\seasky_protocol.c.s + +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj: D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.c +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_111) "Building C object CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\message_center\message_center.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\message_center\message_center.c.obj -c D:\zhandui\cqdm\basic_framework\modules\message_center\message_center.c + +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\message_center\message_center.c > CMakeFiles\basic_framework.elf.dir\modules\message_center\message_center.c.i + +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\message_center\message_center.c -o CMakeFiles\basic_framework.elf.dir\modules\message_center\message_center.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.c +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_112) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\DJImotor\dji_motor.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\DJImotor\dji_motor.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor\dji_motor.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor\dji_motor.c > CMakeFiles\basic_framework.elf.dir\modules\motor\DJImotor\dji_motor.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor\dji_motor.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\DJImotor\dji_motor.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.c +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_113) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\HTmotor\HT04.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\HTmotor\HT04.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor\HT04.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor\HT04.c > CMakeFiles\basic_framework.elf.dir\modules\motor\HTmotor\HT04.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor\HT04.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\HTmotor\HT04.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.c +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_114) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\LKmotor\LK9025.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\LKmotor\LK9025.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor\LK9025.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor\LK9025.c > CMakeFiles\basic_framework.elf.dir\modules\motor\LKmotor\LK9025.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor\LK9025.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\LKmotor\LK9025.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.c +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_115) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\motor_task.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\motor_task.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\motor_task.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\motor_task.c > CMakeFiles\basic_framework.elf.dir\modules\motor\motor_task.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\motor_task.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\motor_task.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.c +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_116) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\servo_motor\servo_motor.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\servo_motor\servo_motor.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor\servo_motor.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor\servo_motor.c > CMakeFiles\basic_framework.elf.dir\modules\motor\servo_motor\servo_motor.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor\servo_motor.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\servo_motor\servo_motor.c.s + +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.c +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_117) "Building C object CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\motor\step_motor\step_motor.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\motor\step_motor\step_motor.c.obj -c D:\zhandui\cqdm\basic_framework\modules\motor\step_motor\step_motor.c + +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\motor\step_motor\step_motor.c > CMakeFiles\basic_framework.elf.dir\modules\motor\step_motor\step_motor.c.i + +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\motor\step_motor\step_motor.c -o CMakeFiles\basic_framework.elf.dir\modules\motor\step_motor\step_motor.c.s + +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj: D:/zhandui/cqdm/basic_framework/modules/oled/oled.c +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_118) "Building C object CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\oled\oled.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\oled\oled.c.obj -c D:\zhandui\cqdm\basic_framework\modules\oled\oled.c + +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\oled\oled.c > CMakeFiles\basic_framework.elf.dir\modules\oled\oled.c.i + +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\oled\oled.c -o CMakeFiles\basic_framework.elf.dir\modules\oled\oled.c.s + +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.c +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_119) "Building C object CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\referee\crc_ref.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\referee\crc_ref.c.obj -c D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.c + +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.c > CMakeFiles\basic_framework.elf.dir\modules\referee\crc_ref.c.i + +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.c -o CMakeFiles\basic_framework.elf.dir\modules\referee\crc_ref.c.s + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.c +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_120) "Building C object CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\referee\referee_UI.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\referee\referee_UI.c.obj -c D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.c + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.c > CMakeFiles\basic_framework.elf.dir\modules\referee\referee_UI.c.i + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.c -o CMakeFiles\basic_framework.elf.dir\modules\referee\referee_UI.c.s + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.c +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_121) "Building C object CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\referee\referee_task.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\referee\referee_task.c.obj -c D:\zhandui\cqdm\basic_framework\modules\referee\referee_task.c + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\referee\referee_task.c > CMakeFiles\basic_framework.elf.dir\modules\referee\referee_task.c.i + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\referee\referee_task.c -o CMakeFiles\basic_framework.elf.dir\modules\referee\referee_task.c.s + +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.c +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_122) "Building C object CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\referee\rm_referee.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\referee\rm_referee.c.obj -c D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.c + +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.c > CMakeFiles\basic_framework.elf.dir\modules\referee\rm_referee.c.i + +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.c -o CMakeFiles\basic_framework.elf.dir\modules\referee\rm_referee.c.s + +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj: D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.c +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_123) "Building C object CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\remote\remote_control.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\remote\remote_control.c.obj -c D:\zhandui\cqdm\basic_framework\modules\remote\remote_control.c + +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\remote\remote_control.c > CMakeFiles\basic_framework.elf.dir\modules\remote\remote_control.c.i + +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\remote\remote_control.c -o CMakeFiles\basic_framework.elf.dir\modules\remote\remote_control.c.s + +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj: D:/zhandui/cqdm/basic_framework/modules/standard_cmd/std_cmd.c +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_124) "Building C object CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\standard_cmd\std_cmd.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\standard_cmd\std_cmd.c.obj -c D:\zhandui\cqdm\basic_framework\modules\standard_cmd\std_cmd.c + +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\standard_cmd\std_cmd.c > CMakeFiles\basic_framework.elf.dir\modules\standard_cmd\std_cmd.c.i + +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\standard_cmd\std_cmd.c -o CMakeFiles\basic_framework.elf.dir\modules\standard_cmd\std_cmd.c.s + +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj: D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.c +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_125) "Building C object CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\super_cap\super_cap.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\super_cap\super_cap.c.obj -c D:\zhandui\cqdm\basic_framework\modules\super_cap\super_cap.c + +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\super_cap\super_cap.c > CMakeFiles\basic_framework.elf.dir\modules\super_cap\super_cap.c.i + +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\super_cap\super_cap.c -o CMakeFiles\basic_framework.elf.dir\modules\super_cap\super_cap.c.s + +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj: D:/zhandui/cqdm/basic_framework/modules/unicomm/unicomm.c +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_126) "Building C object CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\unicomm\unicomm.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\unicomm\unicomm.c.obj -c D:\zhandui\cqdm\basic_framework\modules\unicomm\unicomm.c + +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\unicomm\unicomm.c > CMakeFiles\basic_framework.elf.dir\modules\unicomm\unicomm.c.i + +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\unicomm\unicomm.c -o CMakeFiles\basic_framework.elf.dir\modules\unicomm\unicomm.c.s + +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj: CMakeFiles/basic_framework.elf.dir/flags.make +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj: D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.c +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj: CMakeFiles/basic_framework.elf.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_127) "Building C object CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj -MF CMakeFiles\basic_framework.elf.dir\modules\vofa\vofa.c.obj.d -o CMakeFiles\basic_framework.elf.dir\modules\vofa\vofa.c.obj -c D:\zhandui\cqdm\basic_framework\modules\vofa\vofa.c + +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.i" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E D:\zhandui\cqdm\basic_framework\modules\vofa\vofa.c > CMakeFiles\basic_framework.elf.dir\modules\vofa\vofa.c.i + +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.s" + D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S D:\zhandui\cqdm\basic_framework\modules\vofa\vofa.c -o CMakeFiles\basic_framework.elf.dir\modules\vofa\vofa.c.s + +# Object files for target basic_framework.elf +basic_framework_elf_OBJECTS = \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj" \ +"CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/can.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/main.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj" \ +"CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/application/robot.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj" \ +"CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj" + +# External object files for target basic_framework.elf +basic_framework_elf_EXTERNAL_OBJECTS = + +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/can.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/main.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/application/robot.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/build.make +basic_framework.elf: D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Lib/libarm_cortexM4lf_math.a +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/objects1.rsp +basic_framework.elf: CMakeFiles/basic_framework.elf.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_128) "Linking C executable basic_framework.elf" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\basic_framework.elf.dir\link.txt --verbose=$(VERBOSE) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Building D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.hex" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold "Building D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.bin" + arm-none-eabi-objcopy -Oihex D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.elf D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.hex + arm-none-eabi-objcopy -Obinary D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.elf D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.bin + +# Rule to build all files generated by this target. +CMakeFiles/basic_framework.elf.dir/build: basic_framework.elf +.PHONY : CMakeFiles/basic_framework.elf.dir/build + +CMakeFiles/basic_framework.elf.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles\basic_framework.elf.dir\cmake_clean.cmake +.PHONY : CMakeFiles/basic_framework.elf.dir/clean + +CMakeFiles/basic_framework.elf.dir/depend: + $(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" D:\zhandui\cqdm\basic_framework D:\zhandui\cqdm\basic_framework D:\zhandui\cqdm\basic_framework\cmake-build-debug D:\zhandui\cqdm\basic_framework\cmake-build-debug D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles\basic_framework.elf.dir\DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/basic_framework.elf.dir/depend + diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/cmake_clean.cmake b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/cmake_clean.cmake new file mode 100644 index 0000000..328ffe2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/cmake_clean.cmake @@ -0,0 +1,262 @@ +file(REMOVE_RECURSE + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj" + "CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj" + "CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/can.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/can.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/main.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/main.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj" + "CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj" + "CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj" + "CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj" + "CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj" + "CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/application/robot.c.obj" + "CMakeFiles/basic_framework.elf.dir/application/robot.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj" + "CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj" + "CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj.d" + "CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj" + "CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj.d" + "basic_framework.elf" + "basic_framework.elf.manifest" + "basic_framework.elf.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ASM C) + include(CMakeFiles/basic_framework.elf.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.internal b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.internal new file mode 100644 index 0000000..2ebde19 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.internal @@ -0,0 +1,8555 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/croutine.c + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/list.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/queue.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/timers.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + D:/zhandui/cqdm/basic_framework/Src/adc.c + D:/zhandui/cqdm/basic_framework/Inc/adc.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + D:/zhandui/cqdm/basic_framework/Src/can.c + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + D:/zhandui/cqdm/basic_framework/Src/crc.c + D:/zhandui/cqdm/basic_framework/Inc/crc.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + D:/zhandui/cqdm/basic_framework/Src/dac.c + D:/zhandui/cqdm/basic_framework/Inc/dac.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + D:/zhandui/cqdm/basic_framework/Src/dma.c + D:/zhandui/cqdm/basic_framework/Inc/dma.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + D:/zhandui/cqdm/basic_framework/Src/freertos.c + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + D:/zhandui/cqdm/basic_framework/Src/gpio.c + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + D:/zhandui/cqdm/basic_framework/Src/i2c.c + D:/zhandui/cqdm/basic_framework/Inc/i2c.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + D:/zhandui/cqdm/basic_framework/Src/main.c + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Inc/adc.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/crc.h + D:/zhandui/cqdm/basic_framework/Inc/dac.h + D:/zhandui/cqdm/basic_framework/Inc/dma.h + D:/zhandui/cqdm/basic_framework/Inc/i2c.h + D:/zhandui/cqdm/basic_framework/Inc/rng.h + D:/zhandui/cqdm/basic_framework/Inc/rtc.h + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/zhandui/cqdm/basic_framework/application/robot.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + D:/zhandui/cqdm/basic_framework/Src/rng.c + D:/zhandui/cqdm/basic_framework/Inc/rng.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + D:/zhandui/cqdm/basic_framework/Src/rtc.c + D:/zhandui/cqdm/basic_framework/Inc/rtc.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + D:/zhandui/cqdm/basic_framework/Src/spi.c + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_msp.c + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_timebase_tim.c + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_it.h + +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + D:/zhandui/cqdm/basic_framework/Src/syscalls.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stat.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/time.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/time.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/errno.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/errno.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/signal.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/signal.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/time.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_time.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/times.h + +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + D:/zhandui/cqdm/basic_framework/Src/sysmem.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/errno.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/errno.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + D:/zhandui/cqdm/basic_framework/Src/system_stm32f4xx.c + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + D:/zhandui/cqdm/basic_framework/Src/tim.c + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + D:/zhandui/cqdm/basic_framework/Src/usart.c + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + D:/zhandui/cqdm/basic_framework/Src/usb_device.c + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + D:/zhandui/cqdm/basic_framework/Src/usbd_cdc_if.c + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + D:/zhandui/cqdm/basic_framework/Src/usbd_conf.c + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + D:/zhandui/cqdm/basic_framework/Src/usbd_desc.c + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c + D:/zhandui/cqdm/basic_framework/application/chassis/chassis.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.h + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h + +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.c + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.h + D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c + D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.h + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + D:/zhandui/cqdm/basic_framework/application/robot.c + D:/zhandui/cqdm/basic_framework/bsp/bsp_init.h + D:/zhandui/cqdm/basic_framework/bsp/bsp_init.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + D:/zhandui/cqdm/basic_framework/application/robot.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/zhandui/cqdm/basic_framework/application/robot_task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/application/chassis/chassis.h + D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.h + D:/zhandui/cqdm/basic_framework/application/shoot/shoot.h + D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.h + +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + D:/zhandui/cqdm/basic_framework/application/shoot/shoot.c + D:/zhandui/cqdm/basic_framework/application/shoot/shoot.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + D:/zhandui/cqdm/basic_framework/bsp/adc/bsp_adc.c + +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.h + +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.c + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.c + D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.c + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.c + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h + D:/zhandui/cqdm/basic_framework/Inc/i2c.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.c + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.c + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.c + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.c + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.c + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.c + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088_regNdef.h + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.h + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.c + D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h + D:/zhandui/cqdm/basic_framework/Inc/i2c.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.c + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.c + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.c + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.c + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.c + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.c + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.c + D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.c + D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.c + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.c + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.c + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088reg.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.c + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Inc/spi.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h + +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.c + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.h + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h + D:/zhandui/cqdm/basic_framework/Inc/i2c.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h + D:/zhandui/cqdm/basic_framework/Inc/gpio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + D:/zhandui/cqdm/basic_framework/modules/led/led.c + D:/zhandui/cqdm/basic_framework/modules/led/led.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.c + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.c + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.c + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.c + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.c + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.c + D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/general_def.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.c + D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.h + D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h + D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.h + D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.c + D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/tim.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.c + +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + D:/zhandui/cqdm/basic_framework/modules/oled/oled.c + D:/zhandui/cqdm/basic_framework/modules/oled/oled.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/oled/oledfont.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.c + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.c + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.c + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.c + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h + D:/zhandui/cqdm/basic_framework/application/robot_def.h + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.c + D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + D:/zhandui/cqdm/basic_framework/modules/standard_cmd/std_cmd.c + +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.c + D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.h + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/Inc/can.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + D:/zhandui/cqdm/basic_framework/modules/unicomm/unicomm.c + +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.c + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + D:/zhandui/cqdm/basic_framework/Inc/usart.h + D:/zhandui/cqdm/basic_framework/Inc/main.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.make b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.make new file mode 100644 index 0000000..be93db4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.make @@ -0,0 +1,9072 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c + +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/croutine.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/list.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/queue.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/timers.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + +CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj: D:/zhandui/cqdm/basic_framework/Src/adc.c \ + D:/zhandui/cqdm/basic_framework/Inc/adc.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/can.c.obj: D:/zhandui/cqdm/basic_framework/Src/can.c \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj: D:/zhandui/cqdm/basic_framework/Src/crc.c \ + D:/zhandui/cqdm/basic_framework/Inc/crc.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj: D:/zhandui/cqdm/basic_framework/Src/dac.c \ + D:/zhandui/cqdm/basic_framework/Inc/dac.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj: D:/zhandui/cqdm/basic_framework/Src/dma.c \ + D:/zhandui/cqdm/basic_framework/Inc/dma.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj: D:/zhandui/cqdm/basic_framework/Src/freertos.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj: D:/zhandui/cqdm/basic_framework/Src/gpio.c \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj: D:/zhandui/cqdm/basic_framework/Src/i2c.c \ + D:/zhandui/cqdm/basic_framework/Inc/i2c.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/main.c.obj: D:/zhandui/cqdm/basic_framework/Src/main.c \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Inc/adc.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/crc.h \ + D:/zhandui/cqdm/basic_framework/Inc/dac.h \ + D:/zhandui/cqdm/basic_framework/Inc/dma.h \ + D:/zhandui/cqdm/basic_framework/Inc/i2c.h \ + D:/zhandui/cqdm/basic_framework/Inc/rng.h \ + D:/zhandui/cqdm/basic_framework/Inc/rtc.h \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/zhandui/cqdm/basic_framework/application/robot.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + +CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj: D:/zhandui/cqdm/basic_framework/Src/rng.c \ + D:/zhandui/cqdm/basic_framework/Inc/rng.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj: D:/zhandui/cqdm/basic_framework/Src/rtc.c \ + D:/zhandui/cqdm/basic_framework/Inc/rtc.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj: D:/zhandui/cqdm/basic_framework/Src/spi.c \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_msp.c \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_timebase_tim.c \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj: D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_it.h + +CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj: D:/zhandui/cqdm/basic_framework/Src/syscalls.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stat.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/time.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/time.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/errno.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/errno.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/signal.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/signal.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/time.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_time.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/times.h + +CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj: D:/zhandui/cqdm/basic_framework/Src/sysmem.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/errno.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/errno.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h + +CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj: D:/zhandui/cqdm/basic_framework/Src/system_stm32f4xx.c \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj: D:/zhandui/cqdm/basic_framework/Src/tim.c \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj: D:/zhandui/cqdm/basic_framework/Src/usart.c \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj: D:/zhandui/cqdm/basic_framework/Src/usb_device.c \ + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_cdc_if.c \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_conf.c \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h + +CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj: D:/zhandui/cqdm/basic_framework/Src/usbd_desc.c \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h + +CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj: D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c \ + D:/zhandui/cqdm/basic_framework/application/chassis/chassis.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.h \ + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h \ + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h + +CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj: D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.c \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.h \ + D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h + +CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj: D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c \ + D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.h \ + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h + +CMakeFiles/basic_framework.elf.dir/application/robot.c.obj: D:/zhandui/cqdm/basic_framework/application/robot.c \ + D:/zhandui/cqdm/basic_framework/bsp/bsp_init.h \ + D:/zhandui/cqdm/basic_framework/bsp/bsp_init.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h \ + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h \ + D:/zhandui/cqdm/basic_framework/application/robot.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/zhandui/cqdm/basic_framework/application/robot_task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/application/chassis/chassis.h \ + D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.h \ + D:/zhandui/cqdm/basic_framework/application/shoot/shoot.h \ + D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.h + +CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj: D:/zhandui/cqdm/basic_framework/application/shoot/shoot.c \ + D:/zhandui/cqdm/basic_framework/application/shoot/shoot.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h + +CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj: D:/zhandui/cqdm/basic_framework/bsp/adc/bsp_adc.c + +CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj: D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.h + +CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj: D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.c \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj: D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj: D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.c \ + D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj: D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.c \ + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj: D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.c \ + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h \ + D:/zhandui/cqdm/basic_framework/Inc/i2c.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj: D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.c \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj: D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.c \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj: D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.c \ + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj: D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.c \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj: D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.c \ + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h \ + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h + +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj: D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.c \ + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088_regNdef.h \ + D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.h \ + D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj: D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.c \ + D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h \ + D:/zhandui/cqdm/basic_framework/Inc/i2c.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj: D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.c \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.c \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.c \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.c \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.c \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj: D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.c \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj: D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.c \ + D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj: D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.c \ + D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj: D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.c \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.c \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.c \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088reg.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.c \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Inc/spi.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h + +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj: D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.c \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.h \ + D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h \ + D:/zhandui/cqdm/basic_framework/Inc/i2c.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h \ + D:/zhandui/cqdm/basic_framework/Inc/gpio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj: D:/zhandui/cqdm/basic_framework/modules/led/led.c \ + D:/zhandui/cqdm/basic_framework/modules/led/led.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj: D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.c \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h \ + D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h \ + D:/zhandui/cqdm/basic_framework/Inc/usb_device.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h + +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj: D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.c \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj: D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.c \ + D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.c \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.c \ + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.c \ + D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/general_def.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.c \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.h \ + D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.c \ + D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/tim.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h + +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj: D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.c + +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj: D:/zhandui/cqdm/basic_framework/modules/oled/oled.c \ + D:/zhandui/cqdm/basic_framework/modules/oled/oled.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/oled/oledfont.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.c \ + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.c \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.c \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj: D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.c \ + D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h \ + D:/zhandui/cqdm/basic_framework/application/robot_def.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h \ + D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h \ + D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \ + D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \ + D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h + +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj: D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.c \ + D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h \ + D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h + +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj: D:/zhandui/cqdm/basic_framework/modules/standard_cmd/std_cmd.c + +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj: D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.c \ + D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.h \ + D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/Inc/can.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h + +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj: D:/zhandui/cqdm/basic_framework/modules/unicomm/unicomm.c + +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj: D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.c \ + D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h \ + D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \ + D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h \ + D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h \ + D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h \ + D:/zhandui/cqdm/basic_framework/Inc/usart.h \ + D:/zhandui/cqdm/basic_framework/Inc/main.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h \ + D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h \ + D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h + + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/memory.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac_ex.h: + +D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.c: + +D:/zhandui/cqdm/basic_framework/Src/adc.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_stdint.h: + +D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h: + +D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_version.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_default_types.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/core_cm4.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h: + +D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.h: + +D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_hal_conf.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/motor_def.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h: + +D:/zhandui/cqdm/basic_framework/application/robot_task.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdint.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdint.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_newlib_version.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/features.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/math.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_intsup.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/croutine.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_can.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_compiler.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/cmsis_gcc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h: + +D:/zhandui/cqdm/basic_framework/Drivers/CMSIS/Include/mpu_armv7.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: + +D:/zhandui/cqdm/basic_framework/Src/usbd_cdc_if.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stddef.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dac.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_i2c_ex.h: + +D:/zhandui/cqdm/basic_framework/bsp/adc/bsp_adc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/semphr.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_adc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_adc_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_spi.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_crc.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stat.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rng.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rtc_ex.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/step_motor/step_motor.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd.h: + +D:/zhandui/cqdm/basic_framework/Src/system_stm32f4xx.c: + +D:/zhandui/cqdm/basic_framework/Inc/adc.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usb.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pcd_ex.h: + +D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c: + +D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c: + +D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c: + +D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c: + +D:/zhandui/cqdm/basic_framework/Src/crc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c: + +D:/zhandui/cqdm/basic_framework/bsp/spi/bsp_spi.h: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c: + +D:/zhandui/cqdm/basic_framework/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c: + +D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Inc/usbd_cdc.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ioreq.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/stdlib.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_def.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h: + +D:/zhandui/cqdm/basic_framework/Inc/usbd_conf.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdio.h: + +D:/zhandui/cqdm/basic_framework/Inc/crc.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/_ansi.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/newlib.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/config.h: + +D:/zhandui/cqdm/basic_framework/Inc/usbd_desc.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/ieeefp.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/time.h: + +D:/zhandui/cqdm/basic_framework/Inc/rtc.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/cdefs.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/lib/gcc/arm-none-eabi/10.3.1/include/stdarg.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/reent.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_types.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_types.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/lock.h: + +D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/types.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/endian.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_endian.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/select.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_sigset.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timeval.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/timespec.h: + +D:/zhandui/cqdm/basic_framework/Src/usbd_desc.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_timespec.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_pthreadtypes.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/sched.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/types.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/queue.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/stdio.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/stdlib.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/alloca.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/string.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/_locale.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/strings.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/string.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/rm_referee.c: + +D:/zhandui/cqdm/basic_framework/Inc/main.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_core.h: + +D:/zhandui/cqdm/basic_framework/bsp/iic/bsp_iic.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Inc/usbd_ctlreq.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c: + +D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c: + +D:/zhandui/cqdm/basic_framework/modules/led/led.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c: + +D:/zhandui/cqdm/basic_framework/modules/led/led.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h: + +D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h: + +D:/zhandui/cqdm/basic_framework/Inc/FreeRTOSConfig.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/portable.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/task.h: + +D:/zhandui/cqdm/basic_framework/Inc/dac.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/list.h: + +D:/zhandui/cqdm/basic_framework/Inc/spi.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/timers.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/queue.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/event_groups.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/croutine.c: + +D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c: + +D:/zhandui/cqdm/basic_framework/Src/rtc.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/list.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stream_buffer.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/include/stack_macros.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/timers.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/user_lib.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/referee_task.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c: + +D:/zhandui/cqdm/basic_framework/Inc/rng.h: + +D:/zhandui/cqdm/basic_framework/Src/can.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.h: + +D:/zhandui/cqdm/basic_framework/Inc/can.h: + +D:/zhandui/cqdm/basic_framework/Src/dac.c: + +D:/zhandui/cqdm/basic_framework/Src/dma.c: + +D:/zhandui/cqdm/basic_framework/Inc/dma.h: + +D:/zhandui/cqdm/basic_framework/Src/freertos.c: + +D:/zhandui/cqdm/basic_framework/Src/gpio.c: + +D:/zhandui/cqdm/basic_framework/Inc/gpio.h: + +D:/zhandui/cqdm/basic_framework/Src/i2c.c: + +D:/zhandui/cqdm/basic_framework/Inc/i2c.h: + +D:/zhandui/cqdm/basic_framework/Src/main.c: + +D:/zhandui/cqdm/basic_framework/Inc/tim.h: + +D:/zhandui/cqdm/basic_framework/Inc/usart.h: + +D:/zhandui/cqdm/basic_framework/Inc/usb_device.h: + +D:/zhandui/cqdm/basic_framework/application/robot.h: + +D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.h: + +D:/zhandui/cqdm/basic_framework/Src/rng.c: + +D:/zhandui/cqdm/basic_framework/Src/spi.c: + +D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_msp.c: + +D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_hal_timebase_tim.c: + +D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c: + +D:/zhandui/cqdm/basic_framework/Inc/stm32f4xx_it.h: + +D:/zhandui/cqdm/basic_framework/Src/syscalls.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/time.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/errno.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/errno.h: + +D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.h: + +D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/signal.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/signal.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/motor_task.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/time.h: + +D:/zhandui/cqdm/basic_framework/modules/master_machine/seasky_protocol.c: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/machine/_time.h: + +D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/arm-none-eabi/include/sys/times.h: + +D:/zhandui/cqdm/basic_framework/Src/sysmem.c: + +D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.c: + +D:/zhandui/cqdm/basic_framework/Src/tim.c: + +D:/zhandui/cqdm/basic_framework/Src/usart.c: + +D:/zhandui/cqdm/basic_framework/Src/usb_device.c: + +D:/zhandui/cqdm/basic_framework/Inc/usbd_cdc_if.h: + +D:/zhandui/cqdm/basic_framework/Src/usbd_conf.c: + +D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c: + +D:/zhandui/cqdm/basic_framework/application/chassis/chassis.h: + +D:/zhandui/cqdm/basic_framework/application/robot_def.h: + +D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.h: + +D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.h: + +D:/zhandui/cqdm/basic_framework/application/shoot/shoot.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.h: + +D:/zhandui/cqdm/basic_framework/Middlewares/ST/ARM/DSP/Inc/arm_math.h: + +D:/zhandui/cqdm/basic_framework/modules/master_machine/master_process.h: + +D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.h: + +D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h: + +D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.h: + +D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/referee_protocol.h: + +D:/zhandui/cqdm/basic_framework/modules/oled/oledfont.h: + +D:/zhandui/cqdm/basic_framework/modules/general_def.h: + +D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.h: + +D:/zhandui/cqdm/basic_framework/application/cmd/robot_cmd.c: + +D:/zhandui/cqdm/basic_framework/modules/auto_aim/auto_aim.h: + +D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c: + +D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.h: + +D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.h: + +D:/zhandui/cqdm/basic_framework/bsp/gpio/bsp_gpio.h: + +D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.h: + +D:/zhandui/cqdm/basic_framework/application/robot.c: + +D:/zhandui/cqdm/basic_framework/bsp/bsp_init.h: + +D:/zhandui/cqdm/basic_framework/modules/oled/oled.h: + +D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/HTmotor/HT04.h: + +D:/zhandui/cqdm/basic_framework/modules/alarm/buzzer.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/QuaternionEKF.c: + +D:/zhandui/cqdm/basic_framework/application/shoot/shoot.c: + +D:/zhandui/cqdm/basic_framework/bsp/bsp_tools.h: + +D:/zhandui/cqdm/basic_framework/bsp/can/bsp_can.c: + +D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c: + +D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.c: + +D:/zhandui/cqdm/basic_framework/bsp/flash/bsp_flash.h: + +D:/zhandui/cqdm/basic_framework/bsp/log/bsp_log.c: + +D:/zhandui/cqdm/basic_framework/bsp/pwm/bsp_pwm.c: + +D:/zhandui/cqdm/basic_framework/bsp/usart/bsp_usart.c: + +D:/zhandui/cqdm/basic_framework/modules/oled/oled.c: + +D:/zhandui/cqdm/basic_framework/bsp/usb/bsp_usb.c: + +D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088.c: + +D:/zhandui/cqdm/basic_framework/modules/BMI088/bmi088_regNdef.h: + +D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.c: + +D:/zhandui/cqdm/basic_framework/modules/TFminiPlus/tfminiplus.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/crc16.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.c: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/crc8.h: + +D:/zhandui/cqdm/basic_framework/modules/algorithm/kalman_filter.c: + +D:/zhandui/cqdm/basic_framework/modules/remote/remote_control.c: + +D:/zhandui/cqdm/basic_framework/modules/can_comm/can_comm.c: + +D:/zhandui/cqdm/basic_framework/modules/daemon/daemon.c: + +D:/zhandui/cqdm/basic_framework/modules/imu/BMI088Middleware.h: + +D:/zhandui/cqdm/basic_framework/modules/imu/BMI088driver.c: + +D:/zhandui/cqdm/basic_framework/modules/imu/BMI088reg.h: + +D:/zhandui/cqdm/basic_framework/modules/imu/ins_task.c: + +D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.c: + +D:/zhandui/cqdm/basic_framework/modules/ist8310/ist8310.h: + +D:/zhandui/cqdm/basic_framework/modules/message_center/message_center.c: + +D:/zhandui/cqdm/basic_framework/modules/motor/DJImotor/dji_motor.c: + +D:/zhandui/cqdm/basic_framework/modules/motor/LKmotor/LK9025.c: + +D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.h: + +D:/zhandui/cqdm/basic_framework/modules/motor/servo_motor/servo_motor.c: + +D:/zhandui/cqdm/basic_framework/modules/referee/crc_ref.c: + +D:/zhandui/cqdm/basic_framework/modules/referee/referee_UI.c: + +D:/zhandui/cqdm/basic_framework/modules/standard_cmd/std_cmd.c: + +D:/zhandui/cqdm/basic_framework/modules/super_cap/super_cap.c: + +D:/zhandui/cqdm/basic_framework/modules/unicomm/unicomm.c: + +D:/zhandui/cqdm/basic_framework/modules/vofa/vofa.c: diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.ts b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.ts new file mode 100644 index 0000000..56c13e5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for basic_framework.elf. diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.internal b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.internal new file mode 100644 index 0000000..f4beee5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.internal @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.make b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.make new file mode 100644 index 0000000..888715e --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/depend.make @@ -0,0 +1,9 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj: \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/Config/SEGGER_RTT_Conf.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.h \ + D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s +CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj: \ + D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/flags.make b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/flags.make new file mode 100644 index 0000000..daec238 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/flags.make @@ -0,0 +1,17 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# compile ASM with D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe +# compile C with D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe +ASM_DEFINES = -DARM_MATH_CM4 -DARM_MATH_MATRIX_CHECK -DARM_MATH_ROUNDING -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + +ASM_INCLUDES = -ID:\zhandui\cqdm\basic_framework\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc -ID:\zhandui\cqdm\basic_framework\bsp -ID:\zhandui\cqdm\basic_framework\bsp\adc -ID:\zhandui\cqdm\basic_framework\bsp\can -ID:\zhandui\cqdm\basic_framework\bsp\dwt -ID:\zhandui\cqdm\basic_framework\bsp\flash -ID:\zhandui\cqdm\basic_framework\bsp\gpio -ID:\zhandui\cqdm\basic_framework\bsp\iic -ID:\zhandui\cqdm\basic_framework\bsp\log -ID:\zhandui\cqdm\basic_framework\bsp\pwm -ID:\zhandui\cqdm\basic_framework\bsp\spi -ID:\zhandui\cqdm\basic_framework\bsp\usart -ID:\zhandui\cqdm\basic_framework\bsp\usb -ID:\zhandui\cqdm\basic_framework\modules -ID:\zhandui\cqdm\basic_framework\modules\alarm -ID:\zhandui\cqdm\basic_framework\modules\algorithm -ID:\zhandui\cqdm\basic_framework\modules\BMI088 -ID:\zhandui\cqdm\basic_framework\modules\can_comm -ID:\zhandui\cqdm\basic_framework\modules\daemon -ID:\zhandui\cqdm\basic_framework\modules\encoder -ID:\zhandui\cqdm\basic_framework\modules\imu -ID:\zhandui\cqdm\basic_framework\modules\ist8310 -ID:\zhandui\cqdm\basic_framework\modules\led -ID:\zhandui\cqdm\basic_framework\modules\master_machine -ID:\zhandui\cqdm\basic_framework\modules\message_center -ID:\zhandui\cqdm\basic_framework\modules\motor -ID:\zhandui\cqdm\basic_framework\modules\oled -ID:\zhandui\cqdm\basic_framework\modules\referee -ID:\zhandui\cqdm\basic_framework\modules\remote -ID:\zhandui\cqdm\basic_framework\modules\standard_cmd -ID:\zhandui\cqdm\basic_framework\modules\super_cap -ID:\zhandui\cqdm\basic_framework\modules\TFminiPlus -ID:\zhandui\cqdm\basic_framework\modules\unicomm -ID:\zhandui\cqdm\basic_framework\modules\vofa -ID:\zhandui\cqdm\basic_framework\modules\auto_aim -ID:\zhandui\cqdm\basic_framework\modules\motor\DJImotor -ID:\zhandui\cqdm\basic_framework\modules\motor\HTmotor -ID:\zhandui\cqdm\basic_framework\modules\motor\LKmotor -ID:\zhandui\cqdm\basic_framework\modules\motor\servo_motor -ID:\zhandui\cqdm\basic_framework\modules\motor\step_motor -ID:\zhandui\cqdm\basic_framework\application -ID:\zhandui\cqdm\basic_framework\application\chassis -ID:\zhandui\cqdm\basic_framework\application\cmd -ID:\zhandui\cqdm\basic_framework\application\gimbal -ID:\zhandui\cqdm\basic_framework\application\shoot -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config + +ASM_FLAGS = -g -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mcpu=cortex-m4 -mthumb -mthumb-interwork -ffunction-sections -fdata-sections -fno-common -fmessage-length=0 -x assembler-with-cpp -Og -g + +C_DEFINES = -DARM_MATH_CM4 -DARM_MATH_MATRIX_CHECK -DARM_MATH_ROUNDING -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + +C_INCLUDES = -ID:\zhandui\cqdm\basic_framework\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -ID:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include -ID:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include -ID:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc -ID:\zhandui\cqdm\basic_framework\bsp -ID:\zhandui\cqdm\basic_framework\bsp\adc -ID:\zhandui\cqdm\basic_framework\bsp\can -ID:\zhandui\cqdm\basic_framework\bsp\dwt -ID:\zhandui\cqdm\basic_framework\bsp\flash -ID:\zhandui\cqdm\basic_framework\bsp\gpio -ID:\zhandui\cqdm\basic_framework\bsp\iic -ID:\zhandui\cqdm\basic_framework\bsp\log -ID:\zhandui\cqdm\basic_framework\bsp\pwm -ID:\zhandui\cqdm\basic_framework\bsp\spi -ID:\zhandui\cqdm\basic_framework\bsp\usart -ID:\zhandui\cqdm\basic_framework\bsp\usb -ID:\zhandui\cqdm\basic_framework\modules -ID:\zhandui\cqdm\basic_framework\modules\alarm -ID:\zhandui\cqdm\basic_framework\modules\algorithm -ID:\zhandui\cqdm\basic_framework\modules\BMI088 -ID:\zhandui\cqdm\basic_framework\modules\can_comm -ID:\zhandui\cqdm\basic_framework\modules\daemon -ID:\zhandui\cqdm\basic_framework\modules\encoder -ID:\zhandui\cqdm\basic_framework\modules\imu -ID:\zhandui\cqdm\basic_framework\modules\ist8310 -ID:\zhandui\cqdm\basic_framework\modules\led -ID:\zhandui\cqdm\basic_framework\modules\master_machine -ID:\zhandui\cqdm\basic_framework\modules\message_center -ID:\zhandui\cqdm\basic_framework\modules\motor -ID:\zhandui\cqdm\basic_framework\modules\oled -ID:\zhandui\cqdm\basic_framework\modules\referee -ID:\zhandui\cqdm\basic_framework\modules\remote -ID:\zhandui\cqdm\basic_framework\modules\standard_cmd -ID:\zhandui\cqdm\basic_framework\modules\super_cap -ID:\zhandui\cqdm\basic_framework\modules\TFminiPlus -ID:\zhandui\cqdm\basic_framework\modules\unicomm -ID:\zhandui\cqdm\basic_framework\modules\vofa -ID:\zhandui\cqdm\basic_framework\modules\auto_aim -ID:\zhandui\cqdm\basic_framework\modules\motor\DJImotor -ID:\zhandui\cqdm\basic_framework\modules\motor\HTmotor -ID:\zhandui\cqdm\basic_framework\modules\motor\LKmotor -ID:\zhandui\cqdm\basic_framework\modules\motor\servo_motor -ID:\zhandui\cqdm\basic_framework\modules\motor\step_motor -ID:\zhandui\cqdm\basic_framework\application -ID:\zhandui\cqdm\basic_framework\application\chassis -ID:\zhandui\cqdm\basic_framework\application\cmd -ID:\zhandui\cqdm\basic_framework\application\gimbal -ID:\zhandui\cqdm\basic_framework\application\shoot -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT -ID:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config + +C_FLAGS = -g -std=gnu11 -fdiagnostics-color=always -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mcpu=cortex-m4 -mthumb -mthumb-interwork -ffunction-sections -fdata-sections -fno-common -fmessage-length=0 -Og -g + diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/link.txt b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/link.txt new file mode 100644 index 0000000..0f3b1f6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/link.txt @@ -0,0 +1 @@ +D:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\bin\arm-none-eabi-gcc.exe -g -mfloat-abi=hard -mfpu=fpv4-sp-d16 -Wl,-gc-sections,--print-memory-usage,-Map=D:/zhandui/cqdm/basic_framework/cmake-build-debug/basic_framework.map -mcpu=cortex-m4 -mthumb -mthumb-interwork -T D:/zhandui/cqdm/basic_framework/STM32F407IGHX_FLASH.ld @CMakeFiles\basic_framework.elf.dir\objects1.rsp -o basic_framework.elf D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj new file mode 100644 index 0000000..3a0f373 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj.d new file mode 100644 index 0000000..8de6061 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj.d @@ -0,0 +1,123 @@ +CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088.c \ + D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088_regNdef.h \ + D:\zhandui\cqdm\basic_framework\modules\BMI088\bmi088.h \ + D:\zhandui\cqdm\basic_framework\bsp\spi/bsp_spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + D:\zhandui\cqdm\basic_framework\bsp\gpio/bsp_gpio.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/user_lib.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj new file mode 100644 index 0000000..8d08ade Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj.d new file mode 100644 index 0000000..ac9bf08 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj.d @@ -0,0 +1,91 @@ +CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\TFminiPlus\tfminiplus.c \ + D:\zhandui\cqdm\basic_framework\modules\TFminiPlus\tfminiplus.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\iic/bsp_iic.h \ + D:\zhandui\cqdm\basic_framework\Inc/i2c.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj new file mode 100644 index 0000000..4d990a1 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj.d new file mode 100644 index 0000000..a6679ff --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj.d @@ -0,0 +1,96 @@ +CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\alarm\buzzer.c \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\modules\alarm\buzzer.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj new file mode 100644 index 0000000..09d3c07 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj.d new file mode 100644 index 0000000..411f391 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj.d @@ -0,0 +1,38 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\QuaternionEKF.c \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj new file mode 100644 index 0000000..f64cfde Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj.d new file mode 100644 index 0000000..79589bd --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj.d @@ -0,0 +1,95 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\controller.c \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj new file mode 100644 index 0000000..8bbfe99 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj.d new file mode 100644 index 0000000..83f40f9 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\crc16.c \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\crc16.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj new file mode 100644 index 0000000..2275637 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj.d new file mode 100644 index 0000000..7018ec6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\crc8.c \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\crc8.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj new file mode 100644 index 0000000..8da8f39 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj.d new file mode 100644 index 0000000..e949607 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj.d @@ -0,0 +1,37 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.c \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj new file mode 100644 index 0000000..c881766 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj.d new file mode 100644 index 0000000..d2531df --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj.d @@ -0,0 +1,94 @@ +CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\user_lib.c \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm\user_lib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj new file mode 100644 index 0000000..9a46da2 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj.d new file mode 100644 index 0000000..df605c4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj.d @@ -0,0 +1,89 @@ +CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\auto_aim\auto_aim.c \ + D:\zhandui\cqdm\basic_framework\modules\auto_aim\auto_aim.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj new file mode 100644 index 0000000..eb095f5 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj.d new file mode 100644 index 0000000..f741576 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\can_comm\can_comm.c \ + D:\zhandui\cqdm\basic_framework\modules\can_comm\can_comm.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/crc8.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj new file mode 100644 index 0000000..df8e664 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj.d new file mode 100644 index 0000000..e6750d4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\daemon\daemon.c \ + D:\zhandui\cqdm\basic_framework\modules\daemon\daemon.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\modules\alarm/buzzer.h \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj new file mode 100644 index 0000000..c7bfdca Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj.d new file mode 100644 index 0000000..f15dfd6 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj.d @@ -0,0 +1,56 @@ +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.c \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj new file mode 100644 index 0000000..6f67cdf Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj.d new file mode 100644 index 0000000..edecc70 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj.d @@ -0,0 +1,91 @@ +CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.c \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088reg.h \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088Middleware.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj new file mode 100644 index 0000000..4fffb9b Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj.d new file mode 100644 index 0000000..fe54413 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj.d @@ -0,0 +1,126 @@ +CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\imu\ins_task.c \ + D:\zhandui\cqdm\basic_framework\modules\imu\ins_task.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\imu\BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Inc/spi.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/user_lib.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/crc16.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj new file mode 100644 index 0000000..cb1e6ab Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj.d new file mode 100644 index 0000000..8388c83 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\ist8310\ist8310.c \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\modules\ist8310\ist8310.h \ + D:\zhandui\cqdm\basic_framework\bsp\iic/bsp_iic.h \ + D:\zhandui\cqdm\basic_framework\Inc/i2c.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\bsp\gpio/bsp_gpio.h \ + D:\zhandui\cqdm\basic_framework\Inc/gpio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj new file mode 100644 index 0000000..a658794 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj.d new file mode 100644 index 0000000..c9ccf75 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\led\led.c \ + D:\zhandui\cqdm\basic_framework\modules\led\led.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\pwm/bsp_pwm.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/user_lib.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj new file mode 100644 index 0000000..d554013 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj.d new file mode 100644 index 0000000..83f1ce4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj.d @@ -0,0 +1,117 @@ +CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\master_machine\master_process.c \ + D:\zhandui\cqdm\basic_framework\modules\master_machine\master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/crc16.h \ + D:\zhandui\cqdm\basic_framework\bsp\usb/bsp_usb.h \ + D:\zhandui\cqdm\basic_framework\Inc/usb_device.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_desc.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj new file mode 100644 index 0000000..0fb2237 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj.d new file mode 100644 index 0000000..d4285fd --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj.d @@ -0,0 +1,87 @@ +CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.c \ + D:\zhandui\cqdm\basic_framework\modules\master_machine\seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/crc8.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/crc16.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj new file mode 100644 index 0000000..0a62b97 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj.d new file mode 100644 index 0000000..7c3dd9b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj.d @@ -0,0 +1,46 @@ +CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\message_center\message_center.c \ + D:\zhandui\cqdm\basic_framework\modules\message_center\message_center.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj new file mode 100644 index 0000000..a57022f Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj.d new file mode 100644 index 0000000..2c3aff4 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj.d @@ -0,0 +1,121 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor\dji_motor.c \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor\dji_motor.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/user_lib.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj new file mode 100644 index 0000000..c2a70de Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj.d new file mode 100644 index 0000000..26f96b2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj.d @@ -0,0 +1,121 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor\HT04.c \ + D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor\HT04.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/user_lib.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj new file mode 100644 index 0000000..7d2e043 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj.d new file mode 100644 index 0000000..3b9f2b5 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj.d @@ -0,0 +1,102 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor\LK9025.c \ + D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor\LK9025.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules/general_def.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj new file mode 100644 index 0000000..a04c186 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj.d new file mode 100644 index 0000000..180d723 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj.d @@ -0,0 +1,107 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\motor_task.c \ + D:\zhandui\cqdm\basic_framework\modules\motor\motor_task.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\LKmotor/LK9025.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/controller.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\bsp\dwt/bsp_dwt.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + D:\zhandui\cqdm\basic_framework\modules\motor/motor_def.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\HTmotor/HT04.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\DJImotor/dji_motor.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\step_motor/step_motor.h \ + D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor/servo_motor.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj new file mode 100644 index 0000000..d53b3cb Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj.d new file mode 100644 index 0000000..2533d75 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj.d @@ -0,0 +1,76 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor\servo_motor.c \ + D:\zhandui\cqdm\basic_framework\modules\motor\servo_motor\servo_motor.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/tim.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj new file mode 100644 index 0000000..0cb1416 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj.d new file mode 100644 index 0000000..8e5a4e7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj.d @@ -0,0 +1,2 @@ +CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\motor\step_motor\step_motor.c diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj new file mode 100644 index 0000000..69433e1 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj.d new file mode 100644 index 0000000..26cab62 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj.d @@ -0,0 +1,81 @@ +CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\oled\oled.c \ + D:\zhandui\cqdm\basic_framework\modules\oled\oled.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\oled\oledfont.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj new file mode 100644 index 0000000..f121406 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj.d new file mode 100644 index 0000000..8fa6a09 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj.d @@ -0,0 +1,35 @@ +CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.c \ + D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj new file mode 100644 index 0000000..a1022cb Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj.d new file mode 100644 index 0000000..2e26cfe --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj.d @@ -0,0 +1,110 @@ +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.c \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj new file mode 100644 index 0000000..76280ee Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj.d new file mode 100644 index 0000000..b62146c --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj.d @@ -0,0 +1,120 @@ +CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_task.c \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_task.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_UI.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj new file mode 100644 index 0000000..cfeec3a Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj.d new file mode 100644 index 0000000..06836e0 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj.d @@ -0,0 +1,124 @@ +CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.c \ + D:\zhandui\cqdm\basic_framework\modules\referee\rm_referee.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\referee_protocol.h \ + D:\zhandui\cqdm\basic_framework\application/robot_def.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/ins_task.h \ + D:\zhandui\cqdm\basic_framework\modules\imu/BMI088driver.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/QuaternionEKF.h \ + D:\zhandui\cqdm\basic_framework\modules\algorithm/kalman_filter.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Inc/arm_math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\math.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/master_process.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\modules\master_machine/seasky_protocol.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/FreeRTOS.h \ + D:\zhandui\cqdm\basic_framework\Inc/FreeRTOSConfig.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/projdefs.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/portable.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/deprecated_definitions.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\portable\GCC\ARM_CM4F/portmacro.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/mpu_wrappers.h \ + D:\zhandui\cqdm\basic_framework\modules\referee\crc_ref.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/list.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS/cmsis_os.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/task.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/semphr.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/queue.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/event_groups.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\FreeRTOS\Source\include/timers.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj new file mode 100644 index 0000000..0b948f6 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj.d new file mode 100644 index 0000000..5369459 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj.d @@ -0,0 +1,96 @@ +CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\remote\remote_control.c \ + D:\zhandui\cqdm\basic_framework\modules\remote\remote_control.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + D:\zhandui\cqdm\basic_framework\modules\daemon/daemon.h \ + D:\zhandui\cqdm\basic_framework\bsp\log/bsp_log.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\RTT/SEGGER_RTT.h \ + d:\zhandui\cqdm\basic_framework\middlewares\third_party\segger\config\segger_rtt_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\Third_Party\SEGGER\Config/SEGGER_RTT_Conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj new file mode 100644 index 0000000..5106657 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj.d new file mode 100644 index 0000000..2511ef2 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj.d @@ -0,0 +1,2 @@ +CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\standard_cmd\std_cmd.c diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj new file mode 100644 index 0000000..24b2b7f Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj.d new file mode 100644 index 0000000..fdfc092 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj.d @@ -0,0 +1,76 @@ +CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\super_cap\super_cap.c \ + D:\zhandui\cqdm\basic_framework\modules\super_cap\super_cap.h \ + D:\zhandui\cqdm\basic_framework\bsp\can/bsp_can.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\Inc/can.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\memory.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj new file mode 100644 index 0000000..adbd30c Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj.d new file mode 100644 index 0000000..dce5fdb --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj.d @@ -0,0 +1,2 @@ +CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\unicomm\unicomm.c diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj new file mode 100644 index 0000000..eec0e0e Binary files /dev/null and b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj differ diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj.d b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj.d new file mode 100644 index 0000000..46efb7b --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj.d @@ -0,0 +1,98 @@ +CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj: \ + D:\zhandui\cqdm\basic_framework\modules\vofa\vofa.c \ + D:\zhandui\cqdm\basic_framework\modules\vofa\vofa.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdint.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_default_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\features.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_newlib_version.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_intsup.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_stdint.h \ + D:\zhandui\cqdm\basic_framework\bsp\usart/bsp_usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal.h \ + D:\zhandui\cqdm\basic_framework\Inc/stm32f4xx_hal_conf.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_def.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/stm32f407xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/core_cm4.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_version.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_compiler.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/cmsis_gcc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Include/mpu_armv7.h \ + D:\zhandui\cqdm\basic_framework\Drivers\CMSIS\Device\ST\STM32F4xx\Include/system_stm32f4xx.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/Legacy/stm32_hal_legacy.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stddef.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rcc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_gpio_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_exti.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dma_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_cortex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_adc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_adc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_can.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_crc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_dac_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_flash_ramfunc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_i2c_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pwr_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rng.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_rtc_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_spi.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_tim_ex.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_uart.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_ll_usb.h \ + D:\zhandui\cqdm\basic_framework\Drivers\STM32F4xx_HAL_Driver\Inc/stm32f4xx_hal_pcd_ex.h \ + D:\zhandui\cqdm\basic_framework\Inc/usart.h \ + D:\zhandui\cqdm\basic_framework\Inc/main.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_cdc_if.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc/usbd_cdc.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_def.h \ + D:\zhandui\cqdm\basic_framework\Inc/usbd_conf.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\newlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\config.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\ieeefp.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\cdefs.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\lib\gcc\arm-none-eabi\10.3.1\include\stdarg.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\reent.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\_ansi.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\lock.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\_endian.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\select.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_sigset.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timeval.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_timespec.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_pthreadtypes.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\sched.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\types.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\stdio.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\machine\stdlib.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\alloca.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\string.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\_locale.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\strings.h \ + d:\gcc-arm-none-eabi-10.3-2021.10-win32\gcc-arm-none-eabi-10.3-2021.10\arm-none-eabi\include\sys\string.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_core.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ioreq.h \ + D:\zhandui\cqdm\basic_framework\Middlewares\ST\STM32_USB_Device_Library\Core\Inc/usbd_ctlreq.h diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/objects1.rsp b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/objects1.rsp new file mode 100644 index 0000000..b839b41 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/objects1.rsp @@ -0,0 +1 @@ +CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj CMakeFiles/basic_framework.elf.dir/Src/can.c.obj CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj CMakeFiles/basic_framework.elf.dir/Src/main.c.obj CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj CMakeFiles/basic_framework.elf.dir/application/robot.c.obj CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj diff --git a/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/progress.make b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/progress.make new file mode 100644 index 0000000..b643ac7 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/basic_framework.elf.dir/progress.make @@ -0,0 +1,129 @@ +CMAKE_PROGRESS_1 = +CMAKE_PROGRESS_2 = 1 +CMAKE_PROGRESS_3 = 2 +CMAKE_PROGRESS_4 = 3 +CMAKE_PROGRESS_5 = +CMAKE_PROGRESS_6 = 4 +CMAKE_PROGRESS_7 = 5 +CMAKE_PROGRESS_8 = 6 +CMAKE_PROGRESS_9 = 7 +CMAKE_PROGRESS_10 = +CMAKE_PROGRESS_11 = 8 +CMAKE_PROGRESS_12 = 9 +CMAKE_PROGRESS_13 = 10 +CMAKE_PROGRESS_14 = +CMAKE_PROGRESS_15 = 11 +CMAKE_PROGRESS_16 = 12 +CMAKE_PROGRESS_17 = 13 +CMAKE_PROGRESS_18 = 14 +CMAKE_PROGRESS_19 = +CMAKE_PROGRESS_20 = 15 +CMAKE_PROGRESS_21 = 16 +CMAKE_PROGRESS_22 = 17 +CMAKE_PROGRESS_23 = +CMAKE_PROGRESS_24 = 18 +CMAKE_PROGRESS_25 = 19 +CMAKE_PROGRESS_26 = 20 +CMAKE_PROGRESS_27 = 21 +CMAKE_PROGRESS_28 = +CMAKE_PROGRESS_29 = 22 +CMAKE_PROGRESS_30 = 23 +CMAKE_PROGRESS_31 = 24 +CMAKE_PROGRESS_32 = 25 +CMAKE_PROGRESS_33 = +CMAKE_PROGRESS_34 = 26 +CMAKE_PROGRESS_35 = 27 +CMAKE_PROGRESS_36 = 28 +CMAKE_PROGRESS_37 = +CMAKE_PROGRESS_38 = 29 +CMAKE_PROGRESS_39 = 30 +CMAKE_PROGRESS_40 = 31 +CMAKE_PROGRESS_41 = 32 +CMAKE_PROGRESS_42 = +CMAKE_PROGRESS_43 = 33 +CMAKE_PROGRESS_44 = 34 +CMAKE_PROGRESS_45 = 35 +CMAKE_PROGRESS_46 = +CMAKE_PROGRESS_47 = 36 +CMAKE_PROGRESS_48 = 37 +CMAKE_PROGRESS_49 = 38 +CMAKE_PROGRESS_50 = 39 +CMAKE_PROGRESS_51 = +CMAKE_PROGRESS_52 = 40 +CMAKE_PROGRESS_53 = 41 +CMAKE_PROGRESS_54 = 42 +CMAKE_PROGRESS_55 = +CMAKE_PROGRESS_56 = 43 +CMAKE_PROGRESS_57 = 44 +CMAKE_PROGRESS_58 = 45 +CMAKE_PROGRESS_59 = 46 +CMAKE_PROGRESS_60 = +CMAKE_PROGRESS_61 = 47 +CMAKE_PROGRESS_62 = 48 +CMAKE_PROGRESS_63 = 49 +CMAKE_PROGRESS_64 = 50 +CMAKE_PROGRESS_65 = +CMAKE_PROGRESS_66 = 51 +CMAKE_PROGRESS_67 = 52 +CMAKE_PROGRESS_68 = 53 +CMAKE_PROGRESS_69 = +CMAKE_PROGRESS_70 = 54 +CMAKE_PROGRESS_71 = 55 +CMAKE_PROGRESS_72 = 56 +CMAKE_PROGRESS_73 = 57 +CMAKE_PROGRESS_74 = +CMAKE_PROGRESS_75 = 58 +CMAKE_PROGRESS_76 = 59 +CMAKE_PROGRESS_77 = 60 +CMAKE_PROGRESS_78 = +CMAKE_PROGRESS_79 = 61 +CMAKE_PROGRESS_80 = 62 +CMAKE_PROGRESS_81 = 63 +CMAKE_PROGRESS_82 = 64 +CMAKE_PROGRESS_83 = +CMAKE_PROGRESS_84 = 65 +CMAKE_PROGRESS_85 = 66 +CMAKE_PROGRESS_86 = 67 +CMAKE_PROGRESS_87 = +CMAKE_PROGRESS_88 = 68 +CMAKE_PROGRESS_89 = 69 +CMAKE_PROGRESS_90 = 70 +CMAKE_PROGRESS_91 = 71 +CMAKE_PROGRESS_92 = +CMAKE_PROGRESS_93 = 72 +CMAKE_PROGRESS_94 = 73 +CMAKE_PROGRESS_95 = 74 +CMAKE_PROGRESS_96 = 75 +CMAKE_PROGRESS_97 = +CMAKE_PROGRESS_98 = 76 +CMAKE_PROGRESS_99 = 77 +CMAKE_PROGRESS_100 = 78 +CMAKE_PROGRESS_101 = +CMAKE_PROGRESS_102 = 79 +CMAKE_PROGRESS_103 = 80 +CMAKE_PROGRESS_104 = 81 +CMAKE_PROGRESS_105 = 82 +CMAKE_PROGRESS_106 = +CMAKE_PROGRESS_107 = 83 +CMAKE_PROGRESS_108 = 84 +CMAKE_PROGRESS_109 = 85 +CMAKE_PROGRESS_110 = +CMAKE_PROGRESS_111 = 86 +CMAKE_PROGRESS_112 = 87 +CMAKE_PROGRESS_113 = 88 +CMAKE_PROGRESS_114 = 89 +CMAKE_PROGRESS_115 = +CMAKE_PROGRESS_116 = 90 +CMAKE_PROGRESS_117 = 91 +CMAKE_PROGRESS_118 = 92 +CMAKE_PROGRESS_119 = +CMAKE_PROGRESS_120 = 93 +CMAKE_PROGRESS_121 = 94 +CMAKE_PROGRESS_122 = 95 +CMAKE_PROGRESS_123 = 96 +CMAKE_PROGRESS_124 = +CMAKE_PROGRESS_125 = 97 +CMAKE_PROGRESS_126 = 98 +CMAKE_PROGRESS_127 = 99 +CMAKE_PROGRESS_128 = 100 + diff --git a/cmake-build-debug/CMakeFiles/clion-Debug-log.txt b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt new file mode 100644 index 0000000..0f48a2a --- /dev/null +++ b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt @@ -0,0 +1,5 @@ +"D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=D:/MinGW/mingw64/bin/mingw32-make.exe -DCMAKE_C_COMPILER=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe -DCMAKE_CXX_COMPILER=D:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-g++.exe -G "CodeBlocks - MinGW Makefiles" -S D:\zhandui\cqdm\basic_framework -B D:\zhandui\cqdm\basic_framework\cmake-build-debug +-- Minimal optimization, debug info included +-- Configuring done (0.1s) +-- Generating done (0.1s) +-- Build files have been written to: D:/zhandui/cqdm/basic_framework/cmake-build-debug diff --git a/cmake-build-debug/CMakeFiles/clion-environment.txt b/cmake-build-debug/CMakeFiles/clion-environment.txt new file mode 100644 index 0000000..ed14c29 Binary files /dev/null and b/cmake-build-debug/CMakeFiles/clion-environment.txt differ diff --git a/cmake-build-debug/CMakeFiles/cmake.check_cache b/cmake-build-debug/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-debug/CMakeFiles/progress.marks b/cmake-build-debug/CMakeFiles/progress.marks new file mode 100644 index 0000000..29d6383 --- /dev/null +++ b/cmake-build-debug/CMakeFiles/progress.marks @@ -0,0 +1 @@ +100 diff --git a/cmake-build-debug/Makefile b/cmake-build-debug/Makefile new file mode 100644 index 0000000..835a5ce --- /dev/null +++ b/cmake-build-debug/Makefile @@ -0,0 +1,3546 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.26 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" + +# The command to remove a file. +RM = "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = D:\zhandui\cqdm\basic_framework + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = D:\zhandui\cqdm\basic_framework\cmake-build-debug + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available." +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + "D:\clion\CLion 2023.2.2\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles D:\zhandui\cqdm\basic_framework\cmake-build-debug\\CMakeFiles\progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start D:\zhandui\cqdm\basic_framework\cmake-build-debug\CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named basic_framework.elf + +# Build rule for target. +basic_framework.elf: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles\Makefile2 basic_framework.elf +.PHONY : basic_framework.elf + +# fast build rule for target. +basic_framework.elf/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/build +.PHONY : basic_framework.elf/fast + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.s + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.obj: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.obj + +# target to build an object file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.i: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.i + +# target to preprocess a source file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.i + +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.s: Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.s + +# target to generate assembly for a file +Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s +.PHONY : Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.s + +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.obj: Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.obj + +# target to build an object file +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.i: Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.i + +# target to preprocess a source file +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.i + +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.s: Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.s + +# target to generate assembly for a file +Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.s + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.obj: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.obj + +# target to build an object file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.i: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.i + +# target to preprocess a source file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.i + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.s: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.s + +# target to generate assembly for a file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.s + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.obj: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.obj + +# target to build an object file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.i: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.i + +# target to preprocess a source file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.i + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.s: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.s + +# target to generate assembly for a file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.s + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.obj: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.obj + +# target to build an object file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.i: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.i + +# target to preprocess a source file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.i + +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.s: Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.s + +# target to generate assembly for a file +Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s +.PHONY : Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.s + +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.obj: Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.i: Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.i + +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.s: Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.s + +Middlewares/Third_Party/FreeRTOS/Source/croutine.obj: Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/croutine.i: Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.c.i + +Middlewares/Third_Party/FreeRTOS/Source/croutine.s: Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/croutine.c.s + +Middlewares/Third_Party/FreeRTOS/Source/event_groups.obj: Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/event_groups.i: Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.i + +Middlewares/Third_Party/FreeRTOS/Source/event_groups.s: Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.s + +Middlewares/Third_Party/FreeRTOS/Source/list.obj: Middlewares/Third_Party/FreeRTOS/Source/list.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/list.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/list.i: Middlewares/Third_Party/FreeRTOS/Source/list.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.c.i + +Middlewares/Third_Party/FreeRTOS/Source/list.s: Middlewares/Third_Party/FreeRTOS/Source/list.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/list.c.s + +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.obj: Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.i: Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.i + +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.s: Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.s + +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.obj: Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.i: Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.i + +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.s: Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.s + +Middlewares/Third_Party/FreeRTOS/Source/queue.obj: Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/queue.i: Middlewares/Third_Party/FreeRTOS/Source/queue.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.c.i + +Middlewares/Third_Party/FreeRTOS/Source/queue.s: Middlewares/Third_Party/FreeRTOS/Source/queue.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/queue.c.s + +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.obj: Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.i: Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.i + +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.s: Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.s + +Middlewares/Third_Party/FreeRTOS/Source/tasks.obj: Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/tasks.i: Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.c.i + +Middlewares/Third_Party/FreeRTOS/Source/tasks.s: Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/tasks.c.s + +Middlewares/Third_Party/FreeRTOS/Source/timers.obj: Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.obj + +# target to build an object file +Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + +Middlewares/Third_Party/FreeRTOS/Source/timers.i: Middlewares/Third_Party/FreeRTOS/Source/timers.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.i + +# target to preprocess a source file +Middlewares/Third_Party/FreeRTOS/Source/timers.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.i +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.c.i + +Middlewares/Third_Party/FreeRTOS/Source/timers.s: Middlewares/Third_Party/FreeRTOS/Source/timers.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.s + +# target to generate assembly for a file +Middlewares/Third_Party/FreeRTOS/Source/timers.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.s +.PHONY : Middlewares/Third_Party/FreeRTOS/Source/timers.c.s + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.obj: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.obj + +# target to build an object file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.i: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.i + +# target to preprocess a source file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.i + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.s: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.s + +# target to generate assembly for a file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.s + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.obj: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.obj + +# target to build an object file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.obj: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.obj + +# target to build an object file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.i: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.i + +# target to preprocess a source file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.i + +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.s: Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.s + +# target to generate assembly for a file +Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s +.PHONY : Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.s + +Src/adc.obj: Src/adc.c.obj +.PHONY : Src/adc.obj + +# target to build an object file +Src/adc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj +.PHONY : Src/adc.c.obj + +Src/adc.i: Src/adc.c.i +.PHONY : Src/adc.i + +# target to preprocess a source file +Src/adc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/adc.c.i +.PHONY : Src/adc.c.i + +Src/adc.s: Src/adc.c.s +.PHONY : Src/adc.s + +# target to generate assembly for a file +Src/adc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/adc.c.s +.PHONY : Src/adc.c.s + +Src/can.obj: Src/can.c.obj +.PHONY : Src/can.obj + +# target to build an object file +Src/can.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/can.c.obj +.PHONY : Src/can.c.obj + +Src/can.i: Src/can.c.i +.PHONY : Src/can.i + +# target to preprocess a source file +Src/can.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/can.c.i +.PHONY : Src/can.c.i + +Src/can.s: Src/can.c.s +.PHONY : Src/can.s + +# target to generate assembly for a file +Src/can.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/can.c.s +.PHONY : Src/can.c.s + +Src/crc.obj: Src/crc.c.obj +.PHONY : Src/crc.obj + +# target to build an object file +Src/crc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj +.PHONY : Src/crc.c.obj + +Src/crc.i: Src/crc.c.i +.PHONY : Src/crc.i + +# target to preprocess a source file +Src/crc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/crc.c.i +.PHONY : Src/crc.c.i + +Src/crc.s: Src/crc.c.s +.PHONY : Src/crc.s + +# target to generate assembly for a file +Src/crc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/crc.c.s +.PHONY : Src/crc.c.s + +Src/dac.obj: Src/dac.c.obj +.PHONY : Src/dac.obj + +# target to build an object file +Src/dac.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj +.PHONY : Src/dac.c.obj + +Src/dac.i: Src/dac.c.i +.PHONY : Src/dac.i + +# target to preprocess a source file +Src/dac.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dac.c.i +.PHONY : Src/dac.c.i + +Src/dac.s: Src/dac.c.s +.PHONY : Src/dac.s + +# target to generate assembly for a file +Src/dac.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dac.c.s +.PHONY : Src/dac.c.s + +Src/dma.obj: Src/dma.c.obj +.PHONY : Src/dma.obj + +# target to build an object file +Src/dma.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj +.PHONY : Src/dma.c.obj + +Src/dma.i: Src/dma.c.i +.PHONY : Src/dma.i + +# target to preprocess a source file +Src/dma.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dma.c.i +.PHONY : Src/dma.c.i + +Src/dma.s: Src/dma.c.s +.PHONY : Src/dma.s + +# target to generate assembly for a file +Src/dma.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/dma.c.s +.PHONY : Src/dma.c.s + +Src/freertos.obj: Src/freertos.c.obj +.PHONY : Src/freertos.obj + +# target to build an object file +Src/freertos.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj +.PHONY : Src/freertos.c.obj + +Src/freertos.i: Src/freertos.c.i +.PHONY : Src/freertos.i + +# target to preprocess a source file +Src/freertos.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/freertos.c.i +.PHONY : Src/freertos.c.i + +Src/freertos.s: Src/freertos.c.s +.PHONY : Src/freertos.s + +# target to generate assembly for a file +Src/freertos.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/freertos.c.s +.PHONY : Src/freertos.c.s + +Src/gpio.obj: Src/gpio.c.obj +.PHONY : Src/gpio.obj + +# target to build an object file +Src/gpio.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj +.PHONY : Src/gpio.c.obj + +Src/gpio.i: Src/gpio.c.i +.PHONY : Src/gpio.i + +# target to preprocess a source file +Src/gpio.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/gpio.c.i +.PHONY : Src/gpio.c.i + +Src/gpio.s: Src/gpio.c.s +.PHONY : Src/gpio.s + +# target to generate assembly for a file +Src/gpio.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/gpio.c.s +.PHONY : Src/gpio.c.s + +Src/i2c.obj: Src/i2c.c.obj +.PHONY : Src/i2c.obj + +# target to build an object file +Src/i2c.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj +.PHONY : Src/i2c.c.obj + +Src/i2c.i: Src/i2c.c.i +.PHONY : Src/i2c.i + +# target to preprocess a source file +Src/i2c.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/i2c.c.i +.PHONY : Src/i2c.c.i + +Src/i2c.s: Src/i2c.c.s +.PHONY : Src/i2c.s + +# target to generate assembly for a file +Src/i2c.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/i2c.c.s +.PHONY : Src/i2c.c.s + +Src/main.obj: Src/main.c.obj +.PHONY : Src/main.obj + +# target to build an object file +Src/main.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/main.c.obj +.PHONY : Src/main.c.obj + +Src/main.i: Src/main.c.i +.PHONY : Src/main.i + +# target to preprocess a source file +Src/main.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/main.c.i +.PHONY : Src/main.c.i + +Src/main.s: Src/main.c.s +.PHONY : Src/main.s + +# target to generate assembly for a file +Src/main.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/main.c.s +.PHONY : Src/main.c.s + +Src/rng.obj: Src/rng.c.obj +.PHONY : Src/rng.obj + +# target to build an object file +Src/rng.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj +.PHONY : Src/rng.c.obj + +Src/rng.i: Src/rng.c.i +.PHONY : Src/rng.i + +# target to preprocess a source file +Src/rng.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rng.c.i +.PHONY : Src/rng.c.i + +Src/rng.s: Src/rng.c.s +.PHONY : Src/rng.s + +# target to generate assembly for a file +Src/rng.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rng.c.s +.PHONY : Src/rng.c.s + +Src/rtc.obj: Src/rtc.c.obj +.PHONY : Src/rtc.obj + +# target to build an object file +Src/rtc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj +.PHONY : Src/rtc.c.obj + +Src/rtc.i: Src/rtc.c.i +.PHONY : Src/rtc.i + +# target to preprocess a source file +Src/rtc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rtc.c.i +.PHONY : Src/rtc.c.i + +Src/rtc.s: Src/rtc.c.s +.PHONY : Src/rtc.s + +# target to generate assembly for a file +Src/rtc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/rtc.c.s +.PHONY : Src/rtc.c.s + +Src/spi.obj: Src/spi.c.obj +.PHONY : Src/spi.obj + +# target to build an object file +Src/spi.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj +.PHONY : Src/spi.c.obj + +Src/spi.i: Src/spi.c.i +.PHONY : Src/spi.i + +# target to preprocess a source file +Src/spi.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/spi.c.i +.PHONY : Src/spi.c.i + +Src/spi.s: Src/spi.c.s +.PHONY : Src/spi.s + +# target to generate assembly for a file +Src/spi.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/spi.c.s +.PHONY : Src/spi.c.s + +Src/stm32f4xx_hal_msp.obj: Src/stm32f4xx_hal_msp.c.obj +.PHONY : Src/stm32f4xx_hal_msp.obj + +# target to build an object file +Src/stm32f4xx_hal_msp.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj +.PHONY : Src/stm32f4xx_hal_msp.c.obj + +Src/stm32f4xx_hal_msp.i: Src/stm32f4xx_hal_msp.c.i +.PHONY : Src/stm32f4xx_hal_msp.i + +# target to preprocess a source file +Src/stm32f4xx_hal_msp.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.i +.PHONY : Src/stm32f4xx_hal_msp.c.i + +Src/stm32f4xx_hal_msp.s: Src/stm32f4xx_hal_msp.c.s +.PHONY : Src/stm32f4xx_hal_msp.s + +# target to generate assembly for a file +Src/stm32f4xx_hal_msp.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.s +.PHONY : Src/stm32f4xx_hal_msp.c.s + +Src/stm32f4xx_hal_timebase_tim.obj: Src/stm32f4xx_hal_timebase_tim.c.obj +.PHONY : Src/stm32f4xx_hal_timebase_tim.obj + +# target to build an object file +Src/stm32f4xx_hal_timebase_tim.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj +.PHONY : Src/stm32f4xx_hal_timebase_tim.c.obj + +Src/stm32f4xx_hal_timebase_tim.i: Src/stm32f4xx_hal_timebase_tim.c.i +.PHONY : Src/stm32f4xx_hal_timebase_tim.i + +# target to preprocess a source file +Src/stm32f4xx_hal_timebase_tim.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.i +.PHONY : Src/stm32f4xx_hal_timebase_tim.c.i + +Src/stm32f4xx_hal_timebase_tim.s: Src/stm32f4xx_hal_timebase_tim.c.s +.PHONY : Src/stm32f4xx_hal_timebase_tim.s + +# target to generate assembly for a file +Src/stm32f4xx_hal_timebase_tim.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.s +.PHONY : Src/stm32f4xx_hal_timebase_tim.c.s + +Src/stm32f4xx_it.obj: Src/stm32f4xx_it.c.obj +.PHONY : Src/stm32f4xx_it.obj + +# target to build an object file +Src/stm32f4xx_it.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj +.PHONY : Src/stm32f4xx_it.c.obj + +Src/stm32f4xx_it.i: Src/stm32f4xx_it.c.i +.PHONY : Src/stm32f4xx_it.i + +# target to preprocess a source file +Src/stm32f4xx_it.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.i +.PHONY : Src/stm32f4xx_it.c.i + +Src/stm32f4xx_it.s: Src/stm32f4xx_it.c.s +.PHONY : Src/stm32f4xx_it.s + +# target to generate assembly for a file +Src/stm32f4xx_it.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.s +.PHONY : Src/stm32f4xx_it.c.s + +Src/syscalls.obj: Src/syscalls.c.obj +.PHONY : Src/syscalls.obj + +# target to build an object file +Src/syscalls.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj +.PHONY : Src/syscalls.c.obj + +Src/syscalls.i: Src/syscalls.c.i +.PHONY : Src/syscalls.i + +# target to preprocess a source file +Src/syscalls.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.i +.PHONY : Src/syscalls.c.i + +Src/syscalls.s: Src/syscalls.c.s +.PHONY : Src/syscalls.s + +# target to generate assembly for a file +Src/syscalls.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.s +.PHONY : Src/syscalls.c.s + +Src/sysmem.obj: Src/sysmem.c.obj +.PHONY : Src/sysmem.obj + +# target to build an object file +Src/sysmem.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj +.PHONY : Src/sysmem.c.obj + +Src/sysmem.i: Src/sysmem.c.i +.PHONY : Src/sysmem.i + +# target to preprocess a source file +Src/sysmem.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.i +.PHONY : Src/sysmem.c.i + +Src/sysmem.s: Src/sysmem.c.s +.PHONY : Src/sysmem.s + +# target to generate assembly for a file +Src/sysmem.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.s +.PHONY : Src/sysmem.c.s + +Src/system_stm32f4xx.obj: Src/system_stm32f4xx.c.obj +.PHONY : Src/system_stm32f4xx.obj + +# target to build an object file +Src/system_stm32f4xx.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj +.PHONY : Src/system_stm32f4xx.c.obj + +Src/system_stm32f4xx.i: Src/system_stm32f4xx.c.i +.PHONY : Src/system_stm32f4xx.i + +# target to preprocess a source file +Src/system_stm32f4xx.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.i +.PHONY : Src/system_stm32f4xx.c.i + +Src/system_stm32f4xx.s: Src/system_stm32f4xx.c.s +.PHONY : Src/system_stm32f4xx.s + +# target to generate assembly for a file +Src/system_stm32f4xx.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.s +.PHONY : Src/system_stm32f4xx.c.s + +Src/tim.obj: Src/tim.c.obj +.PHONY : Src/tim.obj + +# target to build an object file +Src/tim.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj +.PHONY : Src/tim.c.obj + +Src/tim.i: Src/tim.c.i +.PHONY : Src/tim.i + +# target to preprocess a source file +Src/tim.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/tim.c.i +.PHONY : Src/tim.c.i + +Src/tim.s: Src/tim.c.s +.PHONY : Src/tim.s + +# target to generate assembly for a file +Src/tim.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/tim.c.s +.PHONY : Src/tim.c.s + +Src/usart.obj: Src/usart.c.obj +.PHONY : Src/usart.obj + +# target to build an object file +Src/usart.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj +.PHONY : Src/usart.c.obj + +Src/usart.i: Src/usart.c.i +.PHONY : Src/usart.i + +# target to preprocess a source file +Src/usart.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usart.c.i +.PHONY : Src/usart.c.i + +Src/usart.s: Src/usart.c.s +.PHONY : Src/usart.s + +# target to generate assembly for a file +Src/usart.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usart.c.s +.PHONY : Src/usart.c.s + +Src/usb_device.obj: Src/usb_device.c.obj +.PHONY : Src/usb_device.obj + +# target to build an object file +Src/usb_device.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj +.PHONY : Src/usb_device.c.obj + +Src/usb_device.i: Src/usb_device.c.i +.PHONY : Src/usb_device.i + +# target to preprocess a source file +Src/usb_device.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.i +.PHONY : Src/usb_device.c.i + +Src/usb_device.s: Src/usb_device.c.s +.PHONY : Src/usb_device.s + +# target to generate assembly for a file +Src/usb_device.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.s +.PHONY : Src/usb_device.c.s + +Src/usbd_cdc_if.obj: Src/usbd_cdc_if.c.obj +.PHONY : Src/usbd_cdc_if.obj + +# target to build an object file +Src/usbd_cdc_if.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj +.PHONY : Src/usbd_cdc_if.c.obj + +Src/usbd_cdc_if.i: Src/usbd_cdc_if.c.i +.PHONY : Src/usbd_cdc_if.i + +# target to preprocess a source file +Src/usbd_cdc_if.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.i +.PHONY : Src/usbd_cdc_if.c.i + +Src/usbd_cdc_if.s: Src/usbd_cdc_if.c.s +.PHONY : Src/usbd_cdc_if.s + +# target to generate assembly for a file +Src/usbd_cdc_if.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.s +.PHONY : Src/usbd_cdc_if.c.s + +Src/usbd_conf.obj: Src/usbd_conf.c.obj +.PHONY : Src/usbd_conf.obj + +# target to build an object file +Src/usbd_conf.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj +.PHONY : Src/usbd_conf.c.obj + +Src/usbd_conf.i: Src/usbd_conf.c.i +.PHONY : Src/usbd_conf.i + +# target to preprocess a source file +Src/usbd_conf.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.i +.PHONY : Src/usbd_conf.c.i + +Src/usbd_conf.s: Src/usbd_conf.c.s +.PHONY : Src/usbd_conf.s + +# target to generate assembly for a file +Src/usbd_conf.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.s +.PHONY : Src/usbd_conf.c.s + +Src/usbd_desc.obj: Src/usbd_desc.c.obj +.PHONY : Src/usbd_desc.obj + +# target to build an object file +Src/usbd_desc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj +.PHONY : Src/usbd_desc.c.obj + +Src/usbd_desc.i: Src/usbd_desc.c.i +.PHONY : Src/usbd_desc.i + +# target to preprocess a source file +Src/usbd_desc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.i +.PHONY : Src/usbd_desc.c.i + +Src/usbd_desc.s: Src/usbd_desc.c.s +.PHONY : Src/usbd_desc.s + +# target to generate assembly for a file +Src/usbd_desc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.s +.PHONY : Src/usbd_desc.c.s + +Startup/startup_stm32f407ighx.obj: Startup/startup_stm32f407ighx.s.obj +.PHONY : Startup/startup_stm32f407ighx.obj + +# target to build an object file +Startup/startup_stm32f407ighx.s.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj +.PHONY : Startup/startup_stm32f407ighx.s.obj + +application/chassis/chassis.obj: application/chassis/chassis.c.obj +.PHONY : application/chassis/chassis.obj + +# target to build an object file +application/chassis/chassis.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj +.PHONY : application/chassis/chassis.c.obj + +application/chassis/chassis.i: application/chassis/chassis.c.i +.PHONY : application/chassis/chassis.i + +# target to preprocess a source file +application/chassis/chassis.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.i +.PHONY : application/chassis/chassis.c.i + +application/chassis/chassis.s: application/chassis/chassis.c.s +.PHONY : application/chassis/chassis.s + +# target to generate assembly for a file +application/chassis/chassis.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.s +.PHONY : application/chassis/chassis.c.s + +application/cmd/robot_cmd.obj: application/cmd/robot_cmd.c.obj +.PHONY : application/cmd/robot_cmd.obj + +# target to build an object file +application/cmd/robot_cmd.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj +.PHONY : application/cmd/robot_cmd.c.obj + +application/cmd/robot_cmd.i: application/cmd/robot_cmd.c.i +.PHONY : application/cmd/robot_cmd.i + +# target to preprocess a source file +application/cmd/robot_cmd.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.i +.PHONY : application/cmd/robot_cmd.c.i + +application/cmd/robot_cmd.s: application/cmd/robot_cmd.c.s +.PHONY : application/cmd/robot_cmd.s + +# target to generate assembly for a file +application/cmd/robot_cmd.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.s +.PHONY : application/cmd/robot_cmd.c.s + +application/gimbal/gimbal.obj: application/gimbal/gimbal.c.obj +.PHONY : application/gimbal/gimbal.obj + +# target to build an object file +application/gimbal/gimbal.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj +.PHONY : application/gimbal/gimbal.c.obj + +application/gimbal/gimbal.i: application/gimbal/gimbal.c.i +.PHONY : application/gimbal/gimbal.i + +# target to preprocess a source file +application/gimbal/gimbal.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.i +.PHONY : application/gimbal/gimbal.c.i + +application/gimbal/gimbal.s: application/gimbal/gimbal.c.s +.PHONY : application/gimbal/gimbal.s + +# target to generate assembly for a file +application/gimbal/gimbal.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.s +.PHONY : application/gimbal/gimbal.c.s + +application/robot.obj: application/robot.c.obj +.PHONY : application/robot.obj + +# target to build an object file +application/robot.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/robot.c.obj +.PHONY : application/robot.c.obj + +application/robot.i: application/robot.c.i +.PHONY : application/robot.i + +# target to preprocess a source file +application/robot.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/robot.c.i +.PHONY : application/robot.c.i + +application/robot.s: application/robot.c.s +.PHONY : application/robot.s + +# target to generate assembly for a file +application/robot.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/robot.c.s +.PHONY : application/robot.c.s + +application/shoot/shoot.obj: application/shoot/shoot.c.obj +.PHONY : application/shoot/shoot.obj + +# target to build an object file +application/shoot/shoot.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj +.PHONY : application/shoot/shoot.c.obj + +application/shoot/shoot.i: application/shoot/shoot.c.i +.PHONY : application/shoot/shoot.i + +# target to preprocess a source file +application/shoot/shoot.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.i +.PHONY : application/shoot/shoot.c.i + +application/shoot/shoot.s: application/shoot/shoot.c.s +.PHONY : application/shoot/shoot.s + +# target to generate assembly for a file +application/shoot/shoot.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.s +.PHONY : application/shoot/shoot.c.s + +bsp/adc/bsp_adc.obj: bsp/adc/bsp_adc.c.obj +.PHONY : bsp/adc/bsp_adc.obj + +# target to build an object file +bsp/adc/bsp_adc.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj +.PHONY : bsp/adc/bsp_adc.c.obj + +bsp/adc/bsp_adc.i: bsp/adc/bsp_adc.c.i +.PHONY : bsp/adc/bsp_adc.i + +# target to preprocess a source file +bsp/adc/bsp_adc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.i +.PHONY : bsp/adc/bsp_adc.c.i + +bsp/adc/bsp_adc.s: bsp/adc/bsp_adc.c.s +.PHONY : bsp/adc/bsp_adc.s + +# target to generate assembly for a file +bsp/adc/bsp_adc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.s +.PHONY : bsp/adc/bsp_adc.c.s + +bsp/bsp_tools.obj: bsp/bsp_tools.c.obj +.PHONY : bsp/bsp_tools.obj + +# target to build an object file +bsp/bsp_tools.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj +.PHONY : bsp/bsp_tools.c.obj + +bsp/bsp_tools.i: bsp/bsp_tools.c.i +.PHONY : bsp/bsp_tools.i + +# target to preprocess a source file +bsp/bsp_tools.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.i +.PHONY : bsp/bsp_tools.c.i + +bsp/bsp_tools.s: bsp/bsp_tools.c.s +.PHONY : bsp/bsp_tools.s + +# target to generate assembly for a file +bsp/bsp_tools.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.s +.PHONY : bsp/bsp_tools.c.s + +bsp/can/bsp_can.obj: bsp/can/bsp_can.c.obj +.PHONY : bsp/can/bsp_can.obj + +# target to build an object file +bsp/can/bsp_can.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj +.PHONY : bsp/can/bsp_can.c.obj + +bsp/can/bsp_can.i: bsp/can/bsp_can.c.i +.PHONY : bsp/can/bsp_can.i + +# target to preprocess a source file +bsp/can/bsp_can.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.i +.PHONY : bsp/can/bsp_can.c.i + +bsp/can/bsp_can.s: bsp/can/bsp_can.c.s +.PHONY : bsp/can/bsp_can.s + +# target to generate assembly for a file +bsp/can/bsp_can.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.s +.PHONY : bsp/can/bsp_can.c.s + +bsp/dwt/bsp_dwt.obj: bsp/dwt/bsp_dwt.c.obj +.PHONY : bsp/dwt/bsp_dwt.obj + +# target to build an object file +bsp/dwt/bsp_dwt.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj +.PHONY : bsp/dwt/bsp_dwt.c.obj + +bsp/dwt/bsp_dwt.i: bsp/dwt/bsp_dwt.c.i +.PHONY : bsp/dwt/bsp_dwt.i + +# target to preprocess a source file +bsp/dwt/bsp_dwt.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.i +.PHONY : bsp/dwt/bsp_dwt.c.i + +bsp/dwt/bsp_dwt.s: bsp/dwt/bsp_dwt.c.s +.PHONY : bsp/dwt/bsp_dwt.s + +# target to generate assembly for a file +bsp/dwt/bsp_dwt.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.s +.PHONY : bsp/dwt/bsp_dwt.c.s + +bsp/flash/bsp_flash.obj: bsp/flash/bsp_flash.c.obj +.PHONY : bsp/flash/bsp_flash.obj + +# target to build an object file +bsp/flash/bsp_flash.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj +.PHONY : bsp/flash/bsp_flash.c.obj + +bsp/flash/bsp_flash.i: bsp/flash/bsp_flash.c.i +.PHONY : bsp/flash/bsp_flash.i + +# target to preprocess a source file +bsp/flash/bsp_flash.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.i +.PHONY : bsp/flash/bsp_flash.c.i + +bsp/flash/bsp_flash.s: bsp/flash/bsp_flash.c.s +.PHONY : bsp/flash/bsp_flash.s + +# target to generate assembly for a file +bsp/flash/bsp_flash.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.s +.PHONY : bsp/flash/bsp_flash.c.s + +bsp/gpio/bsp_gpio.obj: bsp/gpio/bsp_gpio.c.obj +.PHONY : bsp/gpio/bsp_gpio.obj + +# target to build an object file +bsp/gpio/bsp_gpio.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj +.PHONY : bsp/gpio/bsp_gpio.c.obj + +bsp/gpio/bsp_gpio.i: bsp/gpio/bsp_gpio.c.i +.PHONY : bsp/gpio/bsp_gpio.i + +# target to preprocess a source file +bsp/gpio/bsp_gpio.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.i +.PHONY : bsp/gpio/bsp_gpio.c.i + +bsp/gpio/bsp_gpio.s: bsp/gpio/bsp_gpio.c.s +.PHONY : bsp/gpio/bsp_gpio.s + +# target to generate assembly for a file +bsp/gpio/bsp_gpio.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.s +.PHONY : bsp/gpio/bsp_gpio.c.s + +bsp/iic/bsp_iic.obj: bsp/iic/bsp_iic.c.obj +.PHONY : bsp/iic/bsp_iic.obj + +# target to build an object file +bsp/iic/bsp_iic.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj +.PHONY : bsp/iic/bsp_iic.c.obj + +bsp/iic/bsp_iic.i: bsp/iic/bsp_iic.c.i +.PHONY : bsp/iic/bsp_iic.i + +# target to preprocess a source file +bsp/iic/bsp_iic.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.i +.PHONY : bsp/iic/bsp_iic.c.i + +bsp/iic/bsp_iic.s: bsp/iic/bsp_iic.c.s +.PHONY : bsp/iic/bsp_iic.s + +# target to generate assembly for a file +bsp/iic/bsp_iic.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.s +.PHONY : bsp/iic/bsp_iic.c.s + +bsp/log/bsp_log.obj: bsp/log/bsp_log.c.obj +.PHONY : bsp/log/bsp_log.obj + +# target to build an object file +bsp/log/bsp_log.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj +.PHONY : bsp/log/bsp_log.c.obj + +bsp/log/bsp_log.i: bsp/log/bsp_log.c.i +.PHONY : bsp/log/bsp_log.i + +# target to preprocess a source file +bsp/log/bsp_log.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.i +.PHONY : bsp/log/bsp_log.c.i + +bsp/log/bsp_log.s: bsp/log/bsp_log.c.s +.PHONY : bsp/log/bsp_log.s + +# target to generate assembly for a file +bsp/log/bsp_log.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.s +.PHONY : bsp/log/bsp_log.c.s + +bsp/pwm/bsp_pwm.obj: bsp/pwm/bsp_pwm.c.obj +.PHONY : bsp/pwm/bsp_pwm.obj + +# target to build an object file +bsp/pwm/bsp_pwm.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj +.PHONY : bsp/pwm/bsp_pwm.c.obj + +bsp/pwm/bsp_pwm.i: bsp/pwm/bsp_pwm.c.i +.PHONY : bsp/pwm/bsp_pwm.i + +# target to preprocess a source file +bsp/pwm/bsp_pwm.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.i +.PHONY : bsp/pwm/bsp_pwm.c.i + +bsp/pwm/bsp_pwm.s: bsp/pwm/bsp_pwm.c.s +.PHONY : bsp/pwm/bsp_pwm.s + +# target to generate assembly for a file +bsp/pwm/bsp_pwm.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.s +.PHONY : bsp/pwm/bsp_pwm.c.s + +bsp/spi/bsp_spi.obj: bsp/spi/bsp_spi.c.obj +.PHONY : bsp/spi/bsp_spi.obj + +# target to build an object file +bsp/spi/bsp_spi.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj +.PHONY : bsp/spi/bsp_spi.c.obj + +bsp/spi/bsp_spi.i: bsp/spi/bsp_spi.c.i +.PHONY : bsp/spi/bsp_spi.i + +# target to preprocess a source file +bsp/spi/bsp_spi.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.i +.PHONY : bsp/spi/bsp_spi.c.i + +bsp/spi/bsp_spi.s: bsp/spi/bsp_spi.c.s +.PHONY : bsp/spi/bsp_spi.s + +# target to generate assembly for a file +bsp/spi/bsp_spi.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.s +.PHONY : bsp/spi/bsp_spi.c.s + +bsp/usart/bsp_usart.obj: bsp/usart/bsp_usart.c.obj +.PHONY : bsp/usart/bsp_usart.obj + +# target to build an object file +bsp/usart/bsp_usart.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj +.PHONY : bsp/usart/bsp_usart.c.obj + +bsp/usart/bsp_usart.i: bsp/usart/bsp_usart.c.i +.PHONY : bsp/usart/bsp_usart.i + +# target to preprocess a source file +bsp/usart/bsp_usart.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.i +.PHONY : bsp/usart/bsp_usart.c.i + +bsp/usart/bsp_usart.s: bsp/usart/bsp_usart.c.s +.PHONY : bsp/usart/bsp_usart.s + +# target to generate assembly for a file +bsp/usart/bsp_usart.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.s +.PHONY : bsp/usart/bsp_usart.c.s + +bsp/usb/bsp_usb.obj: bsp/usb/bsp_usb.c.obj +.PHONY : bsp/usb/bsp_usb.obj + +# target to build an object file +bsp/usb/bsp_usb.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj +.PHONY : bsp/usb/bsp_usb.c.obj + +bsp/usb/bsp_usb.i: bsp/usb/bsp_usb.c.i +.PHONY : bsp/usb/bsp_usb.i + +# target to preprocess a source file +bsp/usb/bsp_usb.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.i +.PHONY : bsp/usb/bsp_usb.c.i + +bsp/usb/bsp_usb.s: bsp/usb/bsp_usb.c.s +.PHONY : bsp/usb/bsp_usb.s + +# target to generate assembly for a file +bsp/usb/bsp_usb.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.s +.PHONY : bsp/usb/bsp_usb.c.s + +modules/BMI088/bmi088.obj: modules/BMI088/bmi088.c.obj +.PHONY : modules/BMI088/bmi088.obj + +# target to build an object file +modules/BMI088/bmi088.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj +.PHONY : modules/BMI088/bmi088.c.obj + +modules/BMI088/bmi088.i: modules/BMI088/bmi088.c.i +.PHONY : modules/BMI088/bmi088.i + +# target to preprocess a source file +modules/BMI088/bmi088.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.i +.PHONY : modules/BMI088/bmi088.c.i + +modules/BMI088/bmi088.s: modules/BMI088/bmi088.c.s +.PHONY : modules/BMI088/bmi088.s + +# target to generate assembly for a file +modules/BMI088/bmi088.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.s +.PHONY : modules/BMI088/bmi088.c.s + +modules/TFminiPlus/tfminiplus.obj: modules/TFminiPlus/tfminiplus.c.obj +.PHONY : modules/TFminiPlus/tfminiplus.obj + +# target to build an object file +modules/TFminiPlus/tfminiplus.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj +.PHONY : modules/TFminiPlus/tfminiplus.c.obj + +modules/TFminiPlus/tfminiplus.i: modules/TFminiPlus/tfminiplus.c.i +.PHONY : modules/TFminiPlus/tfminiplus.i + +# target to preprocess a source file +modules/TFminiPlus/tfminiplus.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.i +.PHONY : modules/TFminiPlus/tfminiplus.c.i + +modules/TFminiPlus/tfminiplus.s: modules/TFminiPlus/tfminiplus.c.s +.PHONY : modules/TFminiPlus/tfminiplus.s + +# target to generate assembly for a file +modules/TFminiPlus/tfminiplus.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.s +.PHONY : modules/TFminiPlus/tfminiplus.c.s + +modules/alarm/buzzer.obj: modules/alarm/buzzer.c.obj +.PHONY : modules/alarm/buzzer.obj + +# target to build an object file +modules/alarm/buzzer.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj +.PHONY : modules/alarm/buzzer.c.obj + +modules/alarm/buzzer.i: modules/alarm/buzzer.c.i +.PHONY : modules/alarm/buzzer.i + +# target to preprocess a source file +modules/alarm/buzzer.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.i +.PHONY : modules/alarm/buzzer.c.i + +modules/alarm/buzzer.s: modules/alarm/buzzer.c.s +.PHONY : modules/alarm/buzzer.s + +# target to generate assembly for a file +modules/alarm/buzzer.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.s +.PHONY : modules/alarm/buzzer.c.s + +modules/algorithm/QuaternionEKF.obj: modules/algorithm/QuaternionEKF.c.obj +.PHONY : modules/algorithm/QuaternionEKF.obj + +# target to build an object file +modules/algorithm/QuaternionEKF.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj +.PHONY : modules/algorithm/QuaternionEKF.c.obj + +modules/algorithm/QuaternionEKF.i: modules/algorithm/QuaternionEKF.c.i +.PHONY : modules/algorithm/QuaternionEKF.i + +# target to preprocess a source file +modules/algorithm/QuaternionEKF.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.i +.PHONY : modules/algorithm/QuaternionEKF.c.i + +modules/algorithm/QuaternionEKF.s: modules/algorithm/QuaternionEKF.c.s +.PHONY : modules/algorithm/QuaternionEKF.s + +# target to generate assembly for a file +modules/algorithm/QuaternionEKF.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.s +.PHONY : modules/algorithm/QuaternionEKF.c.s + +modules/algorithm/controller.obj: modules/algorithm/controller.c.obj +.PHONY : modules/algorithm/controller.obj + +# target to build an object file +modules/algorithm/controller.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj +.PHONY : modules/algorithm/controller.c.obj + +modules/algorithm/controller.i: modules/algorithm/controller.c.i +.PHONY : modules/algorithm/controller.i + +# target to preprocess a source file +modules/algorithm/controller.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.i +.PHONY : modules/algorithm/controller.c.i + +modules/algorithm/controller.s: modules/algorithm/controller.c.s +.PHONY : modules/algorithm/controller.s + +# target to generate assembly for a file +modules/algorithm/controller.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.s +.PHONY : modules/algorithm/controller.c.s + +modules/algorithm/crc16.obj: modules/algorithm/crc16.c.obj +.PHONY : modules/algorithm/crc16.obj + +# target to build an object file +modules/algorithm/crc16.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj +.PHONY : modules/algorithm/crc16.c.obj + +modules/algorithm/crc16.i: modules/algorithm/crc16.c.i +.PHONY : modules/algorithm/crc16.i + +# target to preprocess a source file +modules/algorithm/crc16.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.i +.PHONY : modules/algorithm/crc16.c.i + +modules/algorithm/crc16.s: modules/algorithm/crc16.c.s +.PHONY : modules/algorithm/crc16.s + +# target to generate assembly for a file +modules/algorithm/crc16.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.s +.PHONY : modules/algorithm/crc16.c.s + +modules/algorithm/crc8.obj: modules/algorithm/crc8.c.obj +.PHONY : modules/algorithm/crc8.obj + +# target to build an object file +modules/algorithm/crc8.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj +.PHONY : modules/algorithm/crc8.c.obj + +modules/algorithm/crc8.i: modules/algorithm/crc8.c.i +.PHONY : modules/algorithm/crc8.i + +# target to preprocess a source file +modules/algorithm/crc8.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.i +.PHONY : modules/algorithm/crc8.c.i + +modules/algorithm/crc8.s: modules/algorithm/crc8.c.s +.PHONY : modules/algorithm/crc8.s + +# target to generate assembly for a file +modules/algorithm/crc8.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.s +.PHONY : modules/algorithm/crc8.c.s + +modules/algorithm/kalman_filter.obj: modules/algorithm/kalman_filter.c.obj +.PHONY : modules/algorithm/kalman_filter.obj + +# target to build an object file +modules/algorithm/kalman_filter.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj +.PHONY : modules/algorithm/kalman_filter.c.obj + +modules/algorithm/kalman_filter.i: modules/algorithm/kalman_filter.c.i +.PHONY : modules/algorithm/kalman_filter.i + +# target to preprocess a source file +modules/algorithm/kalman_filter.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.i +.PHONY : modules/algorithm/kalman_filter.c.i + +modules/algorithm/kalman_filter.s: modules/algorithm/kalman_filter.c.s +.PHONY : modules/algorithm/kalman_filter.s + +# target to generate assembly for a file +modules/algorithm/kalman_filter.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.s +.PHONY : modules/algorithm/kalman_filter.c.s + +modules/algorithm/user_lib.obj: modules/algorithm/user_lib.c.obj +.PHONY : modules/algorithm/user_lib.obj + +# target to build an object file +modules/algorithm/user_lib.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj +.PHONY : modules/algorithm/user_lib.c.obj + +modules/algorithm/user_lib.i: modules/algorithm/user_lib.c.i +.PHONY : modules/algorithm/user_lib.i + +# target to preprocess a source file +modules/algorithm/user_lib.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.i +.PHONY : modules/algorithm/user_lib.c.i + +modules/algorithm/user_lib.s: modules/algorithm/user_lib.c.s +.PHONY : modules/algorithm/user_lib.s + +# target to generate assembly for a file +modules/algorithm/user_lib.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.s +.PHONY : modules/algorithm/user_lib.c.s + +modules/auto_aim/auto_aim.obj: modules/auto_aim/auto_aim.c.obj +.PHONY : modules/auto_aim/auto_aim.obj + +# target to build an object file +modules/auto_aim/auto_aim.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj +.PHONY : modules/auto_aim/auto_aim.c.obj + +modules/auto_aim/auto_aim.i: modules/auto_aim/auto_aim.c.i +.PHONY : modules/auto_aim/auto_aim.i + +# target to preprocess a source file +modules/auto_aim/auto_aim.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.i +.PHONY : modules/auto_aim/auto_aim.c.i + +modules/auto_aim/auto_aim.s: modules/auto_aim/auto_aim.c.s +.PHONY : modules/auto_aim/auto_aim.s + +# target to generate assembly for a file +modules/auto_aim/auto_aim.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.s +.PHONY : modules/auto_aim/auto_aim.c.s + +modules/can_comm/can_comm.obj: modules/can_comm/can_comm.c.obj +.PHONY : modules/can_comm/can_comm.obj + +# target to build an object file +modules/can_comm/can_comm.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj +.PHONY : modules/can_comm/can_comm.c.obj + +modules/can_comm/can_comm.i: modules/can_comm/can_comm.c.i +.PHONY : modules/can_comm/can_comm.i + +# target to preprocess a source file +modules/can_comm/can_comm.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.i +.PHONY : modules/can_comm/can_comm.c.i + +modules/can_comm/can_comm.s: modules/can_comm/can_comm.c.s +.PHONY : modules/can_comm/can_comm.s + +# target to generate assembly for a file +modules/can_comm/can_comm.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.s +.PHONY : modules/can_comm/can_comm.c.s + +modules/daemon/daemon.obj: modules/daemon/daemon.c.obj +.PHONY : modules/daemon/daemon.obj + +# target to build an object file +modules/daemon/daemon.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj +.PHONY : modules/daemon/daemon.c.obj + +modules/daemon/daemon.i: modules/daemon/daemon.c.i +.PHONY : modules/daemon/daemon.i + +# target to preprocess a source file +modules/daemon/daemon.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.i +.PHONY : modules/daemon/daemon.c.i + +modules/daemon/daemon.s: modules/daemon/daemon.c.s +.PHONY : modules/daemon/daemon.s + +# target to generate assembly for a file +modules/daemon/daemon.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.s +.PHONY : modules/daemon/daemon.c.s + +modules/imu/BMI088Middleware.obj: modules/imu/BMI088Middleware.c.obj +.PHONY : modules/imu/BMI088Middleware.obj + +# target to build an object file +modules/imu/BMI088Middleware.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj +.PHONY : modules/imu/BMI088Middleware.c.obj + +modules/imu/BMI088Middleware.i: modules/imu/BMI088Middleware.c.i +.PHONY : modules/imu/BMI088Middleware.i + +# target to preprocess a source file +modules/imu/BMI088Middleware.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.i +.PHONY : modules/imu/BMI088Middleware.c.i + +modules/imu/BMI088Middleware.s: modules/imu/BMI088Middleware.c.s +.PHONY : modules/imu/BMI088Middleware.s + +# target to generate assembly for a file +modules/imu/BMI088Middleware.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.s +.PHONY : modules/imu/BMI088Middleware.c.s + +modules/imu/BMI088driver.obj: modules/imu/BMI088driver.c.obj +.PHONY : modules/imu/BMI088driver.obj + +# target to build an object file +modules/imu/BMI088driver.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj +.PHONY : modules/imu/BMI088driver.c.obj + +modules/imu/BMI088driver.i: modules/imu/BMI088driver.c.i +.PHONY : modules/imu/BMI088driver.i + +# target to preprocess a source file +modules/imu/BMI088driver.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.i +.PHONY : modules/imu/BMI088driver.c.i + +modules/imu/BMI088driver.s: modules/imu/BMI088driver.c.s +.PHONY : modules/imu/BMI088driver.s + +# target to generate assembly for a file +modules/imu/BMI088driver.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.s +.PHONY : modules/imu/BMI088driver.c.s + +modules/imu/ins_task.obj: modules/imu/ins_task.c.obj +.PHONY : modules/imu/ins_task.obj + +# target to build an object file +modules/imu/ins_task.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj +.PHONY : modules/imu/ins_task.c.obj + +modules/imu/ins_task.i: modules/imu/ins_task.c.i +.PHONY : modules/imu/ins_task.i + +# target to preprocess a source file +modules/imu/ins_task.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.i +.PHONY : modules/imu/ins_task.c.i + +modules/imu/ins_task.s: modules/imu/ins_task.c.s +.PHONY : modules/imu/ins_task.s + +# target to generate assembly for a file +modules/imu/ins_task.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.s +.PHONY : modules/imu/ins_task.c.s + +modules/ist8310/ist8310.obj: modules/ist8310/ist8310.c.obj +.PHONY : modules/ist8310/ist8310.obj + +# target to build an object file +modules/ist8310/ist8310.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj +.PHONY : modules/ist8310/ist8310.c.obj + +modules/ist8310/ist8310.i: modules/ist8310/ist8310.c.i +.PHONY : modules/ist8310/ist8310.i + +# target to preprocess a source file +modules/ist8310/ist8310.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.i +.PHONY : modules/ist8310/ist8310.c.i + +modules/ist8310/ist8310.s: modules/ist8310/ist8310.c.s +.PHONY : modules/ist8310/ist8310.s + +# target to generate assembly for a file +modules/ist8310/ist8310.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.s +.PHONY : modules/ist8310/ist8310.c.s + +modules/led/led.obj: modules/led/led.c.obj +.PHONY : modules/led/led.obj + +# target to build an object file +modules/led/led.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj +.PHONY : modules/led/led.c.obj + +modules/led/led.i: modules/led/led.c.i +.PHONY : modules/led/led.i + +# target to preprocess a source file +modules/led/led.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/led/led.c.i +.PHONY : modules/led/led.c.i + +modules/led/led.s: modules/led/led.c.s +.PHONY : modules/led/led.s + +# target to generate assembly for a file +modules/led/led.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/led/led.c.s +.PHONY : modules/led/led.c.s + +modules/master_machine/master_process.obj: modules/master_machine/master_process.c.obj +.PHONY : modules/master_machine/master_process.obj + +# target to build an object file +modules/master_machine/master_process.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj +.PHONY : modules/master_machine/master_process.c.obj + +modules/master_machine/master_process.i: modules/master_machine/master_process.c.i +.PHONY : modules/master_machine/master_process.i + +# target to preprocess a source file +modules/master_machine/master_process.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.i +.PHONY : modules/master_machine/master_process.c.i + +modules/master_machine/master_process.s: modules/master_machine/master_process.c.s +.PHONY : modules/master_machine/master_process.s + +# target to generate assembly for a file +modules/master_machine/master_process.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.s +.PHONY : modules/master_machine/master_process.c.s + +modules/master_machine/seasky_protocol.obj: modules/master_machine/seasky_protocol.c.obj +.PHONY : modules/master_machine/seasky_protocol.obj + +# target to build an object file +modules/master_machine/seasky_protocol.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj +.PHONY : modules/master_machine/seasky_protocol.c.obj + +modules/master_machine/seasky_protocol.i: modules/master_machine/seasky_protocol.c.i +.PHONY : modules/master_machine/seasky_protocol.i + +# target to preprocess a source file +modules/master_machine/seasky_protocol.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.i +.PHONY : modules/master_machine/seasky_protocol.c.i + +modules/master_machine/seasky_protocol.s: modules/master_machine/seasky_protocol.c.s +.PHONY : modules/master_machine/seasky_protocol.s + +# target to generate assembly for a file +modules/master_machine/seasky_protocol.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.s +.PHONY : modules/master_machine/seasky_protocol.c.s + +modules/message_center/message_center.obj: modules/message_center/message_center.c.obj +.PHONY : modules/message_center/message_center.obj + +# target to build an object file +modules/message_center/message_center.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj +.PHONY : modules/message_center/message_center.c.obj + +modules/message_center/message_center.i: modules/message_center/message_center.c.i +.PHONY : modules/message_center/message_center.i + +# target to preprocess a source file +modules/message_center/message_center.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.i +.PHONY : modules/message_center/message_center.c.i + +modules/message_center/message_center.s: modules/message_center/message_center.c.s +.PHONY : modules/message_center/message_center.s + +# target to generate assembly for a file +modules/message_center/message_center.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.s +.PHONY : modules/message_center/message_center.c.s + +modules/motor/DJImotor/dji_motor.obj: modules/motor/DJImotor/dji_motor.c.obj +.PHONY : modules/motor/DJImotor/dji_motor.obj + +# target to build an object file +modules/motor/DJImotor/dji_motor.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj +.PHONY : modules/motor/DJImotor/dji_motor.c.obj + +modules/motor/DJImotor/dji_motor.i: modules/motor/DJImotor/dji_motor.c.i +.PHONY : modules/motor/DJImotor/dji_motor.i + +# target to preprocess a source file +modules/motor/DJImotor/dji_motor.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.i +.PHONY : modules/motor/DJImotor/dji_motor.c.i + +modules/motor/DJImotor/dji_motor.s: modules/motor/DJImotor/dji_motor.c.s +.PHONY : modules/motor/DJImotor/dji_motor.s + +# target to generate assembly for a file +modules/motor/DJImotor/dji_motor.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.s +.PHONY : modules/motor/DJImotor/dji_motor.c.s + +modules/motor/HTmotor/HT04.obj: modules/motor/HTmotor/HT04.c.obj +.PHONY : modules/motor/HTmotor/HT04.obj + +# target to build an object file +modules/motor/HTmotor/HT04.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj +.PHONY : modules/motor/HTmotor/HT04.c.obj + +modules/motor/HTmotor/HT04.i: modules/motor/HTmotor/HT04.c.i +.PHONY : modules/motor/HTmotor/HT04.i + +# target to preprocess a source file +modules/motor/HTmotor/HT04.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.i +.PHONY : modules/motor/HTmotor/HT04.c.i + +modules/motor/HTmotor/HT04.s: modules/motor/HTmotor/HT04.c.s +.PHONY : modules/motor/HTmotor/HT04.s + +# target to generate assembly for a file +modules/motor/HTmotor/HT04.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.s +.PHONY : modules/motor/HTmotor/HT04.c.s + +modules/motor/LKmotor/LK9025.obj: modules/motor/LKmotor/LK9025.c.obj +.PHONY : modules/motor/LKmotor/LK9025.obj + +# target to build an object file +modules/motor/LKmotor/LK9025.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj +.PHONY : modules/motor/LKmotor/LK9025.c.obj + +modules/motor/LKmotor/LK9025.i: modules/motor/LKmotor/LK9025.c.i +.PHONY : modules/motor/LKmotor/LK9025.i + +# target to preprocess a source file +modules/motor/LKmotor/LK9025.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.i +.PHONY : modules/motor/LKmotor/LK9025.c.i + +modules/motor/LKmotor/LK9025.s: modules/motor/LKmotor/LK9025.c.s +.PHONY : modules/motor/LKmotor/LK9025.s + +# target to generate assembly for a file +modules/motor/LKmotor/LK9025.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.s +.PHONY : modules/motor/LKmotor/LK9025.c.s + +modules/motor/motor_task.obj: modules/motor/motor_task.c.obj +.PHONY : modules/motor/motor_task.obj + +# target to build an object file +modules/motor/motor_task.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj +.PHONY : modules/motor/motor_task.c.obj + +modules/motor/motor_task.i: modules/motor/motor_task.c.i +.PHONY : modules/motor/motor_task.i + +# target to preprocess a source file +modules/motor/motor_task.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.i +.PHONY : modules/motor/motor_task.c.i + +modules/motor/motor_task.s: modules/motor/motor_task.c.s +.PHONY : modules/motor/motor_task.s + +# target to generate assembly for a file +modules/motor/motor_task.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.s +.PHONY : modules/motor/motor_task.c.s + +modules/motor/servo_motor/servo_motor.obj: modules/motor/servo_motor/servo_motor.c.obj +.PHONY : modules/motor/servo_motor/servo_motor.obj + +# target to build an object file +modules/motor/servo_motor/servo_motor.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj +.PHONY : modules/motor/servo_motor/servo_motor.c.obj + +modules/motor/servo_motor/servo_motor.i: modules/motor/servo_motor/servo_motor.c.i +.PHONY : modules/motor/servo_motor/servo_motor.i + +# target to preprocess a source file +modules/motor/servo_motor/servo_motor.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.i +.PHONY : modules/motor/servo_motor/servo_motor.c.i + +modules/motor/servo_motor/servo_motor.s: modules/motor/servo_motor/servo_motor.c.s +.PHONY : modules/motor/servo_motor/servo_motor.s + +# target to generate assembly for a file +modules/motor/servo_motor/servo_motor.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.s +.PHONY : modules/motor/servo_motor/servo_motor.c.s + +modules/motor/step_motor/step_motor.obj: modules/motor/step_motor/step_motor.c.obj +.PHONY : modules/motor/step_motor/step_motor.obj + +# target to build an object file +modules/motor/step_motor/step_motor.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj +.PHONY : modules/motor/step_motor/step_motor.c.obj + +modules/motor/step_motor/step_motor.i: modules/motor/step_motor/step_motor.c.i +.PHONY : modules/motor/step_motor/step_motor.i + +# target to preprocess a source file +modules/motor/step_motor/step_motor.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.i +.PHONY : modules/motor/step_motor/step_motor.c.i + +modules/motor/step_motor/step_motor.s: modules/motor/step_motor/step_motor.c.s +.PHONY : modules/motor/step_motor/step_motor.s + +# target to generate assembly for a file +modules/motor/step_motor/step_motor.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.s +.PHONY : modules/motor/step_motor/step_motor.c.s + +modules/oled/oled.obj: modules/oled/oled.c.obj +.PHONY : modules/oled/oled.obj + +# target to build an object file +modules/oled/oled.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj +.PHONY : modules/oled/oled.c.obj + +modules/oled/oled.i: modules/oled/oled.c.i +.PHONY : modules/oled/oled.i + +# target to preprocess a source file +modules/oled/oled.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.i +.PHONY : modules/oled/oled.c.i + +modules/oled/oled.s: modules/oled/oled.c.s +.PHONY : modules/oled/oled.s + +# target to generate assembly for a file +modules/oled/oled.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.s +.PHONY : modules/oled/oled.c.s + +modules/referee/crc_ref.obj: modules/referee/crc_ref.c.obj +.PHONY : modules/referee/crc_ref.obj + +# target to build an object file +modules/referee/crc_ref.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj +.PHONY : modules/referee/crc_ref.c.obj + +modules/referee/crc_ref.i: modules/referee/crc_ref.c.i +.PHONY : modules/referee/crc_ref.i + +# target to preprocess a source file +modules/referee/crc_ref.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.i +.PHONY : modules/referee/crc_ref.c.i + +modules/referee/crc_ref.s: modules/referee/crc_ref.c.s +.PHONY : modules/referee/crc_ref.s + +# target to generate assembly for a file +modules/referee/crc_ref.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.s +.PHONY : modules/referee/crc_ref.c.s + +modules/referee/referee_UI.obj: modules/referee/referee_UI.c.obj +.PHONY : modules/referee/referee_UI.obj + +# target to build an object file +modules/referee/referee_UI.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj +.PHONY : modules/referee/referee_UI.c.obj + +modules/referee/referee_UI.i: modules/referee/referee_UI.c.i +.PHONY : modules/referee/referee_UI.i + +# target to preprocess a source file +modules/referee/referee_UI.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.i +.PHONY : modules/referee/referee_UI.c.i + +modules/referee/referee_UI.s: modules/referee/referee_UI.c.s +.PHONY : modules/referee/referee_UI.s + +# target to generate assembly for a file +modules/referee/referee_UI.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.s +.PHONY : modules/referee/referee_UI.c.s + +modules/referee/referee_task.obj: modules/referee/referee_task.c.obj +.PHONY : modules/referee/referee_task.obj + +# target to build an object file +modules/referee/referee_task.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj +.PHONY : modules/referee/referee_task.c.obj + +modules/referee/referee_task.i: modules/referee/referee_task.c.i +.PHONY : modules/referee/referee_task.i + +# target to preprocess a source file +modules/referee/referee_task.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.i +.PHONY : modules/referee/referee_task.c.i + +modules/referee/referee_task.s: modules/referee/referee_task.c.s +.PHONY : modules/referee/referee_task.s + +# target to generate assembly for a file +modules/referee/referee_task.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.s +.PHONY : modules/referee/referee_task.c.s + +modules/referee/rm_referee.obj: modules/referee/rm_referee.c.obj +.PHONY : modules/referee/rm_referee.obj + +# target to build an object file +modules/referee/rm_referee.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj +.PHONY : modules/referee/rm_referee.c.obj + +modules/referee/rm_referee.i: modules/referee/rm_referee.c.i +.PHONY : modules/referee/rm_referee.i + +# target to preprocess a source file +modules/referee/rm_referee.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.i +.PHONY : modules/referee/rm_referee.c.i + +modules/referee/rm_referee.s: modules/referee/rm_referee.c.s +.PHONY : modules/referee/rm_referee.s + +# target to generate assembly for a file +modules/referee/rm_referee.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.s +.PHONY : modules/referee/rm_referee.c.s + +modules/remote/remote_control.obj: modules/remote/remote_control.c.obj +.PHONY : modules/remote/remote_control.obj + +# target to build an object file +modules/remote/remote_control.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj +.PHONY : modules/remote/remote_control.c.obj + +modules/remote/remote_control.i: modules/remote/remote_control.c.i +.PHONY : modules/remote/remote_control.i + +# target to preprocess a source file +modules/remote/remote_control.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.i +.PHONY : modules/remote/remote_control.c.i + +modules/remote/remote_control.s: modules/remote/remote_control.c.s +.PHONY : modules/remote/remote_control.s + +# target to generate assembly for a file +modules/remote/remote_control.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.s +.PHONY : modules/remote/remote_control.c.s + +modules/standard_cmd/std_cmd.obj: modules/standard_cmd/std_cmd.c.obj +.PHONY : modules/standard_cmd/std_cmd.obj + +# target to build an object file +modules/standard_cmd/std_cmd.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj +.PHONY : modules/standard_cmd/std_cmd.c.obj + +modules/standard_cmd/std_cmd.i: modules/standard_cmd/std_cmd.c.i +.PHONY : modules/standard_cmd/std_cmd.i + +# target to preprocess a source file +modules/standard_cmd/std_cmd.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.i +.PHONY : modules/standard_cmd/std_cmd.c.i + +modules/standard_cmd/std_cmd.s: modules/standard_cmd/std_cmd.c.s +.PHONY : modules/standard_cmd/std_cmd.s + +# target to generate assembly for a file +modules/standard_cmd/std_cmd.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.s +.PHONY : modules/standard_cmd/std_cmd.c.s + +modules/super_cap/super_cap.obj: modules/super_cap/super_cap.c.obj +.PHONY : modules/super_cap/super_cap.obj + +# target to build an object file +modules/super_cap/super_cap.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj +.PHONY : modules/super_cap/super_cap.c.obj + +modules/super_cap/super_cap.i: modules/super_cap/super_cap.c.i +.PHONY : modules/super_cap/super_cap.i + +# target to preprocess a source file +modules/super_cap/super_cap.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.i +.PHONY : modules/super_cap/super_cap.c.i + +modules/super_cap/super_cap.s: modules/super_cap/super_cap.c.s +.PHONY : modules/super_cap/super_cap.s + +# target to generate assembly for a file +modules/super_cap/super_cap.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.s +.PHONY : modules/super_cap/super_cap.c.s + +modules/unicomm/unicomm.obj: modules/unicomm/unicomm.c.obj +.PHONY : modules/unicomm/unicomm.obj + +# target to build an object file +modules/unicomm/unicomm.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj +.PHONY : modules/unicomm/unicomm.c.obj + +modules/unicomm/unicomm.i: modules/unicomm/unicomm.c.i +.PHONY : modules/unicomm/unicomm.i + +# target to preprocess a source file +modules/unicomm/unicomm.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.i +.PHONY : modules/unicomm/unicomm.c.i + +modules/unicomm/unicomm.s: modules/unicomm/unicomm.c.s +.PHONY : modules/unicomm/unicomm.s + +# target to generate assembly for a file +modules/unicomm/unicomm.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.s +.PHONY : modules/unicomm/unicomm.c.s + +modules/vofa/vofa.obj: modules/vofa/vofa.c.obj +.PHONY : modules/vofa/vofa.obj + +# target to build an object file +modules/vofa/vofa.c.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj +.PHONY : modules/vofa/vofa.c.obj + +modules/vofa/vofa.i: modules/vofa/vofa.c.i +.PHONY : modules/vofa/vofa.i + +# target to preprocess a source file +modules/vofa/vofa.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.i +.PHONY : modules/vofa/vofa.c.i + +modules/vofa/vofa.s: modules/vofa/vofa.c.s +.PHONY : modules/vofa/vofa.s + +# target to generate assembly for a file +modules/vofa/vofa.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles\basic_framework.elf.dir\build.make CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.s +.PHONY : modules/vofa/vofa.c.s + +# Help Target +help: + @echo The following are some of the valid targets for this Makefile: + @echo ... all (the default if no target is provided) + @echo ... clean + @echo ... depend + @echo ... edit_cache + @echo ... rebuild_cache + @echo ... basic_framework.elf + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.s + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.obj + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.i + @echo ... Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.s + @echo ... Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.obj + @echo ... Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.i + @echo ... Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.s + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.obj + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.i + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.s + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.obj + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.i + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.s + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.obj + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.i + @echo ... Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/croutine.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/croutine.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/croutine.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/event_groups.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/event_groups.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/event_groups.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/list.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/list.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/list.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/queue.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/queue.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/queue.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/tasks.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/tasks.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/tasks.s + @echo ... Middlewares/Third_Party/FreeRTOS/Source/timers.obj + @echo ... Middlewares/Third_Party/FreeRTOS/Source/timers.i + @echo ... Middlewares/Third_Party/FreeRTOS/Source/timers.s + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.obj + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.i + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.s + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.obj + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.obj + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.i + @echo ... Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.s + @echo ... Src/adc.obj + @echo ... Src/adc.i + @echo ... Src/adc.s + @echo ... Src/can.obj + @echo ... Src/can.i + @echo ... Src/can.s + @echo ... Src/crc.obj + @echo ... Src/crc.i + @echo ... Src/crc.s + @echo ... Src/dac.obj + @echo ... Src/dac.i + @echo ... Src/dac.s + @echo ... Src/dma.obj + @echo ... Src/dma.i + @echo ... Src/dma.s + @echo ... Src/freertos.obj + @echo ... Src/freertos.i + @echo ... Src/freertos.s + @echo ... Src/gpio.obj + @echo ... Src/gpio.i + @echo ... Src/gpio.s + @echo ... Src/i2c.obj + @echo ... Src/i2c.i + @echo ... Src/i2c.s + @echo ... Src/main.obj + @echo ... Src/main.i + @echo ... Src/main.s + @echo ... Src/rng.obj + @echo ... Src/rng.i + @echo ... Src/rng.s + @echo ... Src/rtc.obj + @echo ... Src/rtc.i + @echo ... Src/rtc.s + @echo ... Src/spi.obj + @echo ... Src/spi.i + @echo ... Src/spi.s + @echo ... Src/stm32f4xx_hal_msp.obj + @echo ... Src/stm32f4xx_hal_msp.i + @echo ... Src/stm32f4xx_hal_msp.s + @echo ... Src/stm32f4xx_hal_timebase_tim.obj + @echo ... Src/stm32f4xx_hal_timebase_tim.i + @echo ... Src/stm32f4xx_hal_timebase_tim.s + @echo ... Src/stm32f4xx_it.obj + @echo ... Src/stm32f4xx_it.i + @echo ... Src/stm32f4xx_it.s + @echo ... Src/syscalls.obj + @echo ... Src/syscalls.i + @echo ... Src/syscalls.s + @echo ... Src/sysmem.obj + @echo ... Src/sysmem.i + @echo ... Src/sysmem.s + @echo ... Src/system_stm32f4xx.obj + @echo ... Src/system_stm32f4xx.i + @echo ... Src/system_stm32f4xx.s + @echo ... Src/tim.obj + @echo ... Src/tim.i + @echo ... Src/tim.s + @echo ... Src/usart.obj + @echo ... Src/usart.i + @echo ... Src/usart.s + @echo ... Src/usb_device.obj + @echo ... Src/usb_device.i + @echo ... Src/usb_device.s + @echo ... Src/usbd_cdc_if.obj + @echo ... Src/usbd_cdc_if.i + @echo ... Src/usbd_cdc_if.s + @echo ... Src/usbd_conf.obj + @echo ... Src/usbd_conf.i + @echo ... Src/usbd_conf.s + @echo ... Src/usbd_desc.obj + @echo ... Src/usbd_desc.i + @echo ... Src/usbd_desc.s + @echo ... Startup/startup_stm32f407ighx.obj + @echo ... application/chassis/chassis.obj + @echo ... application/chassis/chassis.i + @echo ... application/chassis/chassis.s + @echo ... application/cmd/robot_cmd.obj + @echo ... application/cmd/robot_cmd.i + @echo ... application/cmd/robot_cmd.s + @echo ... application/gimbal/gimbal.obj + @echo ... application/gimbal/gimbal.i + @echo ... application/gimbal/gimbal.s + @echo ... application/robot.obj + @echo ... application/robot.i + @echo ... application/robot.s + @echo ... application/shoot/shoot.obj + @echo ... application/shoot/shoot.i + @echo ... application/shoot/shoot.s + @echo ... bsp/adc/bsp_adc.obj + @echo ... bsp/adc/bsp_adc.i + @echo ... bsp/adc/bsp_adc.s + @echo ... bsp/bsp_tools.obj + @echo ... bsp/bsp_tools.i + @echo ... bsp/bsp_tools.s + @echo ... bsp/can/bsp_can.obj + @echo ... bsp/can/bsp_can.i + @echo ... bsp/can/bsp_can.s + @echo ... bsp/dwt/bsp_dwt.obj + @echo ... bsp/dwt/bsp_dwt.i + @echo ... bsp/dwt/bsp_dwt.s + @echo ... bsp/flash/bsp_flash.obj + @echo ... bsp/flash/bsp_flash.i + @echo ... bsp/flash/bsp_flash.s + @echo ... bsp/gpio/bsp_gpio.obj + @echo ... bsp/gpio/bsp_gpio.i + @echo ... bsp/gpio/bsp_gpio.s + @echo ... bsp/iic/bsp_iic.obj + @echo ... bsp/iic/bsp_iic.i + @echo ... bsp/iic/bsp_iic.s + @echo ... bsp/log/bsp_log.obj + @echo ... bsp/log/bsp_log.i + @echo ... bsp/log/bsp_log.s + @echo ... bsp/pwm/bsp_pwm.obj + @echo ... bsp/pwm/bsp_pwm.i + @echo ... bsp/pwm/bsp_pwm.s + @echo ... bsp/spi/bsp_spi.obj + @echo ... bsp/spi/bsp_spi.i + @echo ... bsp/spi/bsp_spi.s + @echo ... bsp/usart/bsp_usart.obj + @echo ... bsp/usart/bsp_usart.i + @echo ... bsp/usart/bsp_usart.s + @echo ... bsp/usb/bsp_usb.obj + @echo ... bsp/usb/bsp_usb.i + @echo ... bsp/usb/bsp_usb.s + @echo ... modules/BMI088/bmi088.obj + @echo ... modules/BMI088/bmi088.i + @echo ... modules/BMI088/bmi088.s + @echo ... modules/TFminiPlus/tfminiplus.obj + @echo ... modules/TFminiPlus/tfminiplus.i + @echo ... modules/TFminiPlus/tfminiplus.s + @echo ... modules/alarm/buzzer.obj + @echo ... modules/alarm/buzzer.i + @echo ... modules/alarm/buzzer.s + @echo ... modules/algorithm/QuaternionEKF.obj + @echo ... modules/algorithm/QuaternionEKF.i + @echo ... modules/algorithm/QuaternionEKF.s + @echo ... modules/algorithm/controller.obj + @echo ... modules/algorithm/controller.i + @echo ... modules/algorithm/controller.s + @echo ... modules/algorithm/crc16.obj + @echo ... modules/algorithm/crc16.i + @echo ... modules/algorithm/crc16.s + @echo ... modules/algorithm/crc8.obj + @echo ... modules/algorithm/crc8.i + @echo ... modules/algorithm/crc8.s + @echo ... modules/algorithm/kalman_filter.obj + @echo ... modules/algorithm/kalman_filter.i + @echo ... modules/algorithm/kalman_filter.s + @echo ... modules/algorithm/user_lib.obj + @echo ... modules/algorithm/user_lib.i + @echo ... modules/algorithm/user_lib.s + @echo ... modules/auto_aim/auto_aim.obj + @echo ... modules/auto_aim/auto_aim.i + @echo ... modules/auto_aim/auto_aim.s + @echo ... modules/can_comm/can_comm.obj + @echo ... modules/can_comm/can_comm.i + @echo ... modules/can_comm/can_comm.s + @echo ... modules/daemon/daemon.obj + @echo ... modules/daemon/daemon.i + @echo ... modules/daemon/daemon.s + @echo ... modules/imu/BMI088Middleware.obj + @echo ... modules/imu/BMI088Middleware.i + @echo ... modules/imu/BMI088Middleware.s + @echo ... modules/imu/BMI088driver.obj + @echo ... modules/imu/BMI088driver.i + @echo ... modules/imu/BMI088driver.s + @echo ... modules/imu/ins_task.obj + @echo ... modules/imu/ins_task.i + @echo ... modules/imu/ins_task.s + @echo ... modules/ist8310/ist8310.obj + @echo ... modules/ist8310/ist8310.i + @echo ... modules/ist8310/ist8310.s + @echo ... modules/led/led.obj + @echo ... modules/led/led.i + @echo ... modules/led/led.s + @echo ... modules/master_machine/master_process.obj + @echo ... modules/master_machine/master_process.i + @echo ... modules/master_machine/master_process.s + @echo ... modules/master_machine/seasky_protocol.obj + @echo ... modules/master_machine/seasky_protocol.i + @echo ... modules/master_machine/seasky_protocol.s + @echo ... modules/message_center/message_center.obj + @echo ... modules/message_center/message_center.i + @echo ... modules/message_center/message_center.s + @echo ... modules/motor/DJImotor/dji_motor.obj + @echo ... modules/motor/DJImotor/dji_motor.i + @echo ... modules/motor/DJImotor/dji_motor.s + @echo ... modules/motor/HTmotor/HT04.obj + @echo ... modules/motor/HTmotor/HT04.i + @echo ... modules/motor/HTmotor/HT04.s + @echo ... modules/motor/LKmotor/LK9025.obj + @echo ... modules/motor/LKmotor/LK9025.i + @echo ... modules/motor/LKmotor/LK9025.s + @echo ... modules/motor/motor_task.obj + @echo ... modules/motor/motor_task.i + @echo ... modules/motor/motor_task.s + @echo ... modules/motor/servo_motor/servo_motor.obj + @echo ... modules/motor/servo_motor/servo_motor.i + @echo ... modules/motor/servo_motor/servo_motor.s + @echo ... modules/motor/step_motor/step_motor.obj + @echo ... modules/motor/step_motor/step_motor.i + @echo ... modules/motor/step_motor/step_motor.s + @echo ... modules/oled/oled.obj + @echo ... modules/oled/oled.i + @echo ... modules/oled/oled.s + @echo ... modules/referee/crc_ref.obj + @echo ... modules/referee/crc_ref.i + @echo ... modules/referee/crc_ref.s + @echo ... modules/referee/referee_UI.obj + @echo ... modules/referee/referee_UI.i + @echo ... modules/referee/referee_UI.s + @echo ... modules/referee/referee_task.obj + @echo ... modules/referee/referee_task.i + @echo ... modules/referee/referee_task.s + @echo ... modules/referee/rm_referee.obj + @echo ... modules/referee/rm_referee.i + @echo ... modules/referee/rm_referee.s + @echo ... modules/remote/remote_control.obj + @echo ... modules/remote/remote_control.i + @echo ... modules/remote/remote_control.s + @echo ... modules/standard_cmd/std_cmd.obj + @echo ... modules/standard_cmd/std_cmd.i + @echo ... modules/standard_cmd/std_cmd.s + @echo ... modules/super_cap/super_cap.obj + @echo ... modules/super_cap/super_cap.i + @echo ... modules/super_cap/super_cap.s + @echo ... modules/unicomm/unicomm.obj + @echo ... modules/unicomm/unicomm.i + @echo ... modules/unicomm/unicomm.s + @echo ... modules/vofa/vofa.obj + @echo ... modules/vofa/vofa.i + @echo ... modules/vofa/vofa.s +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/cmake-build-debug/basic_framework.bin b/cmake-build-debug/basic_framework.bin new file mode 100644 index 0000000..85e2cf6 Binary files /dev/null and b/cmake-build-debug/basic_framework.bin differ diff --git a/cmake-build-debug/basic_framework.cbp b/cmake-build-debug/basic_framework.cbp new file mode 100644 index 0000000..675ea61 --- /dev/null +++ b/cmake-build-debug/basic_framework.cbp @@ -0,0 +1,1254 @@ + + + diff --git a/cmake-build-debug/basic_framework.elf b/cmake-build-debug/basic_framework.elf new file mode 100644 index 0000000..1f5d246 Binary files /dev/null and b/cmake-build-debug/basic_framework.elf differ diff --git a/cmake-build-debug/basic_framework.hex b/cmake-build-debug/basic_framework.hex new file mode 100644 index 0000000..de4fb60 --- /dev/null +++ b/cmake-build-debug/basic_framework.hex @@ -0,0 +1,8489 @@ +:020000040800F2 +:1000000000000220A5BE000805AD000807AD0008ED +:1000100009AD00080BAD00080DAD000800000000A0 +:10002000000000000000000000000000418B0008FC +:100030000FAD000800000000E18B0008458C0008AF +:10004000F5BE0008F5BE0008F5BE0008F5BE0008C4 +:1000500011AD0008F5BE0008F5BE0008F5BE0008A9 +:10006000F5BE000819AD000823AD0008F5BE000874 +:100070002DAD00083DAD00084DAD00085DAD000898 +:10008000F5BE0008F5BE0008F5BE0008F5BE000884 +:100090006DAD00087DAD0008F5BE00088DAD00080F +:1000A000F5BE0008F5BE0008F5BE0008F5BE000864 +:1000B000F5BE0008F5BE0008F5BE0008F5BE000854 +:1000C000F5BE000899AD0008A9AD0008B9AD00085B +:1000D000C9AD0008D9AD0008F5BE0008E9AD0008BB +:1000E000F5BE0008F5BE0008F5BE0008F5BE000824 +:1000F000F5BE0008F9AD0008F5BE000811AE000815 +:10010000F5BE0008F5BE0008F5BE0008F5BE000803 +:10011000F5BE0008F5BE0008F5BE0008F5BE0008F3 +:1001200021AE0008F5BE000831AE000841AE00085F +:1001300051AE0008F5BE0008F5BE0008F5BE000887 +:1001400061AE000871AE0008F5BE000881AE00087F +:1001500091AE0008A1AE0008B1AE0008C1AE000823 +:10016000D1AE0008E1AE0008F5BE0008F5BE0008FB +:10017000F5BE0008F5BE0008F5BE0008000000004E +:08018000F5BE0008F5BE000801 +:1001C00010B5054C237833B9044B13B10448AFF391 +:1001D00000800123237010BD0010002000000000EB +:1001E00070E1010808B5034B1BB103490348AFF3A5 +:1001F000008008BD000000000410002070E101082C +:1002000081F0004102E000BF83F0004330B54FEAC7 +:1002100041044FEA430594EA050F08BF90EA020F34 +:100220001FBF54EA000C55EA020C7FEA645C7FEAC7 +:10023000655C00F0E2804FEA5454D4EB5555B8BFEA +:100240006D420CDD2C4480EA020281EA030382EA5B +:10025000000083EA010180EA020281EA0303362DED +:1002600088BF30BD11F0004F4FEA01314FF4801CC0 +:100270004CEA113102D0404261EB410113F0004FD2 +:100280004FEA03334CEA133302D0524263EB430389 +:1002900094EA050F00F0A780A4F10104D5F1200E27 +:1002A0000DDB02FA0EFC22FA05F2801841F1000182 +:1002B00003FA0EF2801843FA05F359410EE0A5F156 +:1002C00020050EF1200E012A03FA0EFC28BF4CF087 +:1002D000020C43FA05F3C01851EBE37101F000453D +:1002E00007D54FF0000EDCF1000C7EEB00006EEB4A +:1002F0000101B1F5801F1BD3B1F5001F0CD34908D4 +:100300005FEA30004FEA3C0C04F101044FEA44522A +:1003100012F5800F80F09A80BCF1004F08BF5FEAB1 +:10032000500C50F1000041EB045141EA050130BD91 +:100330005FEA4C0C404141EB0101013C28BFB1F5A3 +:10034000801FE9D291F0000F04BF01460020B1FAEE +:1003500081F308BF2033A3F10B03B3F120020CDAC1 +:100360000C3208DD02F1140CC2F10C0201FA0CF09F +:1003700021FA02F10CE002F11402D8BFC2F1200C04 +:1003800001FA02F120FA0CFCDCBF41EA0C019040BA +:10039000E41AA2BF01EB0451294330BD6FEA040403 +:1003A0001F3C1CDA0C340EDC04F11404C4F12002EE +:1003B00020FA04F001FA02F340EA030021FA04F300 +:1003C00045EA030130BDC4F10C04C4F1200220FA57 +:1003D00002F001FA04F340EA0300294630BD21FA95 +:1003E00004F0294630BD94F0000F83F4801306BF5B +:1003F00081F480110134013D4EE77FEA645C18BF4F +:100400007FEA655C29D094EA050F08BF90EA020FE5 +:1004100005D054EA000C04BF1946104630BD91EADD +:10042000030F1EBF0021002030BD5FEA545C05D1E0 +:100430004000494128BF41F0004130BD14F580041F +:100440003CBF01F5801130BD01F0004545F0FE4193 +:1004500041F470014FF0000030BD7FEA645C1ABFC8 +:10046000194610467FEA655C1CBF0B46024650EAFF +:10047000013406BF52EA033591EA030F41F400212B +:1004800030BD00BF90F0000F04BF0021704730B5B1 +:100490004FF4806404F132044FF000054FF0000186 +:1004A00050E700BF90F0000F04BF0021704730B547 +:1004B0004FF4806404F1320410F0004548BF40421C +:1004C0004FF000013EE700BF42004FEAE2014FEA71 +:1004D00031014FEA02701FBF12F07F4393F07F4F4C +:1004E00081F06051704732F07F4208BF704793F04F +:1004F0007F4F04BF41F40021704730B54FF4607462 +:1005000001F0004521F000411CE700BF50EA010264 +:1005100008BF704730B54FF000050AE050EA01020D +:1005200008BF704730B511F0004502D5404261EB7D +:1005300041014FF4806404F132045FEA915C3FF4BE +:10054000D8AE4FF003025FEADC0C18BF03325FEA5B +:10055000DC0C18BF033202EBDC02C2F1200300FA0C +:1005600003FC20FA02F001FA03FE40EA0E0021FA31 +:1005700002F11444BDE600BF70B54FF0FF0C4CF41F +:10058000E06C1CEA11541DBF1CEA135594EA0C0FD1 +:1005900095EA0C0F00F0DEF82C4481EA030621EA0C +:1005A0004C5123EA4C5350EA013518BF52EA033547 +:1005B00041F4801143F4801338D0A0FB02CE4FF0F9 +:1005C0000005E1FB02E506F00042E0FB03E54FF029 +:1005D0000006E1FB03569CF0000F18BF4EF0010E21 +:1005E000A4F1FF04B6F5007F64F5407404D25FEA1D +:1005F0004E0E6D4146EB060642EAC62141EA5551D0 +:100600004FEAC52040EA5E504FEACE2EB4F1FD0C11 +:1006100088BFBCF5E06F1ED8BEF1004F08BF5FEA8F +:10062000500E50F1000041EB045170BD06F0004641 +:1006300046EA010140EA020081EA0301B4EB5C04EE +:10064000C2BFD4EB0C0541EA045170BD41F48011E6 +:100650004FF0000E013C00F3AB8014F1360FDEBF0B +:10066000002001F0004170BDC4F10004203C35DAE7 +:100670000C341BDC04F11404C4F1200500FA05F36A +:1006800020FA04F001FA05F240EA020001F000420B +:1006900021F0004110EBD37021FA04F642EB060181 +:1006A0005EEA430E08BF20EAD37070BDC4F10C04AB +:1006B000C4F1200500FA04F320FA05F001FA04F26F +:1006C00040EA020001F0004110EBD37041F100015B +:1006D0005EEA430E08BF20EAD37070BDC4F1200566 +:1006E00000FA05F24EEA020E20FA04F301FA05F2CE +:1006F00043EA020321FA04F001F0004121FA04F276 +:1007000020EA020000EBD3705EEA430E08BF20EA45 +:10071000D37070BD94F0000F0FD101F0004640007F +:1007200041EB010111F4801F08BF013CF7D041EA01 +:10073000060195F0000F18BF704703F00046520005 +:1007400043EB030313F4801F08BF013DF7D043EAD6 +:100750000603704794EA0C0F0CEA135518BF95EA8C +:100760000C0F0CD050EA410618BF52EA4306D1D113 +:1007700081EA030101F000414FF0000070BD50EA32 +:10078000410606BF1046194652EA430619D094EABC +:100790000C0F02D150EA013613D195EA0C0F05D1A6 +:1007A00052EA03361CBF104619460AD181EA0301FA +:1007B00001F0004141F0FE4141F470014FF00000B2 +:1007C00070BD41F0FE4141F4780170BD70B54FF04D +:1007D000FF0C4CF4E06C1CEA11541DBF1CEA1355CD +:1007E00094EA0C0F95EA0C0F00F0A7F8A4EB0504AF +:1007F00081EA030E52EA03354FEA013100F08880A6 +:100800004FEA03334FF0805545EA131343EA12636E +:100810004FEA022245EA111545EA10654FEA002623 +:100820000EF000419D4208BF964244F1FD0404F5DC +:10083000407402D25B084FEA3202B61A65EB030538 +:100840005B084FEA32024FF480104FF4002CB6EBF5 +:10085000020E75EB030E22BFB61A754640EA0C0075 +:100860005B084FEA3202B6EB020E75EB030E22BFB5 +:10087000B61A754640EA5C005B084FEA3202B6EBF6 +:10088000020E75EB030E22BFB61A754640EA9C00B5 +:100890005B084FEA3202B6EB020E75EB030E22BF85 +:1008A000B61A754640EADC0055EA060E18D04FEA43 +:1008B000051545EA16754FEA06164FEAC30343EAE3 +:1008C00052734FEAC2025FEA1C1CC0D111F4801FB0 +:1008D0000BD141EA00014FF000004FF0004CB6E7A9 +:1008E00011F4801F04BF01430020B4F1FD0C88BF48 +:1008F000BCF5E06F3FF6AFAEB5EB030C04BFB6EB53 +:10090000020C5FEA500C50F1000041EB045170BD45 +:100910000EF0004E4EEA113114EB5C04C2BFD4EB72 +:100920000C0541EA045170BD41F480114FF0000EF6 +:10093000013C90E645EA060E8DE60CEA135594EA72 +:100940000C0F08BF95EA0C0F3FF43BAF94EA0C0F75 +:100950000AD150EA01347FF434AF95EA0C0F7FF4EA +:1009600025AF104619462CE795EA0C0F06D152EA3E +:1009700003353FF4FDAE1046194622E750EA410622 +:1009800018BF52EA43067FF4C5AE50EA41047FF433 +:100990000DAF52EA43057FF4EBAE12E74FF0FF3C98 +:1009A00006E000BF4FF0010C02E000BF4FF0010C69 +:1009B0004DF804CD4FEA410C7FEA6C5C4FEA430CE2 +:1009C00018BF7FEA6C5C1BD001B050EA410C0CBF31 +:1009D00052EA430C91EA030F02BF90EA020F002093 +:1009E000704710F1000F91EA030F58BF994208BFFA +:1009F00090422CBFD8176FEAE37040F001007047B7 +:100A00004FEA410C7FEA6C5C02D150EA013C07D10D +:100A10004FEA430C7FEA6C5CD6D152EA033CD3D058 +:100A20005DF8040B704700BF8446104662468C4652 +:100A30001946634600E000BF01B5FFF7B7FF002885 +:100A400048BF10F1000F01BD4DF808EDFFF7F4FFAE +:100A50000CBF012000205DF808FB00BF4DF808ED39 +:100A6000FFF7EAFF34BF012000205DF808FB00BF5C +:100A70004DF808EDFFF7E0FF94BF012000205DF87E +:100A800008FB00BF4DF808EDFFF7CEFF94BF012033 +:100A900000205DF808FB00BF4DF808EDFFF7C4FF2C +:100AA00034BF012000205DF808FB00BF4FEA41027F +:100AB00012F5001215D211D56FF47873B3EB6252B0 +:100AC00012D94FEAC12343F0004343EA505311F0D7 +:100AD000004F23FA02F018BF404270474FF0000069 +:100AE000704750EA013005D111F0004008BF6FF0A7 +:100AF000004070474FF00000704700BF4FEA4102CE +:100B0000B2F1E04324BFB3F5001CDCF1FE5C0DD96B +:100B100001F0004C4FEAC0024CEA5070B2F1004FB5 +:100B200040EB830008BF20F00100704711F0804FB8 +:100B300021D113F13872BCBF01F00040704741F47D +:100B400080114FEA5252C2F11802C2F1200C10FA81 +:100B50000CF320FA02F018BF40F001004FEAC12365 +:100B60004FEAD32303FA0CFC40EA0C0023FA02F309 +:100B70004FEA4303CCE77FEA625307D150EA0133DF +:100B80001EBF4FF0FE4040F44000704701F00040AF +:100B900040F0FE4040F40000704700BF53B94AB92E +:100BA000002908BF00281CBF4FF0FF314FF0FF3075 +:100BB00000F074B9ADF1080C6DE904CE00F006F850 +:100BC000DDF804E0DDE9022304B070472DE9F047C9 +:100BD000089D04468E46002B4DD18A42944669D921 +:100BE000B2FA82F252B101FA02F3C2F1200120FA04 +:100BF00001F10CFA02FC41EA030E94404FEA1C4852 +:100C0000210CBEFBF8F61FFA8CF708FB16E341EA4D +:100C1000034306FB07F199420AD91CEB030306F1D3 +:100C2000FF3080F01F81994240F21C81023E6344F4 +:100C30005B1AA4B2B3FBF8F008FB103344EA034498 +:100C400000FB07F7A7420AD91CEB040400F1FF33AD +:100C500080F00A81A74240F207816444023840EAEA +:100C60000640E41B00261DB1D4400023C5E9004323 +:100C70003146BDE8F0878B4209D9002D00F0EF80A6 +:100C80000026C5E9000130463146BDE8F087B3FAD9 +:100C900083F6002E4AD18B4202D3824200F2F980C1 +:100CA000841A61EB030301209E46002DE0D0C5E9C4 +:100CB000004EDDE702B9FFDEB2FA82F2002A40F010 +:100CC0009280A1EB0C014FEA1C471FFA8CFE012613 +:100CD000200CB1FBF7F307FB131140EA01410EFBB7 +:100CE00003F0884208D91CEB010103F1FF3802D25E +:100CF000884200F2CB804346091AA4B2B1FBF7F058 +:100D000007FB101144EA01440EFB00FEA64508D97A +:100D10001CEB040400F1FF3102D2A64500F2BB80B7 +:100D20000846A4EB0E0440EA03409CE7C6F1200706 +:100D3000B34022FA07FC4CEA030C20FA07F401FA4C +:100D400006F31C43F9404FEA1C4900FA06F3B1FBD5 +:100D5000F9F8200C1FFA8CFE09FB181140EA01413A +:100D600008FB0EF0884202FA06F20BD91CEB0101D7 +:100D700008F1FF3A80F08880884240F28580A8F12F +:100D800002086144091AA4B2B1FBF9F009FB101181 +:100D900044EA014100FB0EFE8E4508D91CEB01011F +:100DA00000F1FF346CD28E456AD90238614440EAC2 +:100DB0000840A0FB0294A1EB0E01A142C846A64642 +:100DC00056D353D05DB1B3EB080261EB0E0101FACB +:100DD00007F722FA06F3F1401F43C5E90071002628 +:100DE0003146BDE8F087C2F12003D8400CFA02FC7E +:100DF00021FA03F3914001434FEA1C471FFA8CFE8E +:100E0000B3FBF7F007FB10360B0C43EA064300FB7D +:100E10000EF69E4204FA02F408D91CEB030300F11B +:100E2000FF382FD29E422DD9023863449B1B89B2D2 +:100E3000B3FBF7F607FB163341EA034106FB0EF35B +:100E40008B4208D91CEB010106F1FF3816D28B4208 +:100E500014D9023E6144C91A46EA004638E72E46D4 +:100E6000284605E70646E3E61846F8E64B45A9D2CC +:100E7000B9EB020864EB0C0E0138A3E74646EAE73B +:100E8000204694E74046D1E7D0467BE7023B6144E9 +:100E900032E7304609E76444023842E7704700BF52 +:100EA000844641EA000313F003036DD1403A41D375 +:100EB00051F8043B40F8043B51F8043B40F8043B34 +:100EC00051F8043B40F8043B51F8043B40F8043B24 +:100ED00051F8043B40F8043B51F8043B40F8043B14 +:100EE00051F8043B40F8043B51F8043B40F8043B04 +:100EF00051F8043B40F8043B51F8043B40F8043BF4 +:100F000051F8043B40F8043B51F8043B40F8043BE3 +:100F100051F8043B40F8043B51F8043B40F8043BD3 +:100F200051F8043B40F8043B51F8043B40F8043BC3 +:100F3000403ABDD2303211D351F8043B40F8043B63 +:100F400051F8043B40F8043B51F8043B40F8043BA3 +:100F500051F8043B40F8043B103AEDD20C3205D373 +:100F600051F8043B40F8043B043AF9D2043208D06B +:100F7000D2071CBF11F8013B00F8013B01D30B88DD +:100F800003806046704700BF082A13D38B078DD0BB +:100F900010F003038AD0C3F10403D21ADB071CBF8D +:100FA00011F8013B00F8013B80D331F8023B20F8F7 +:100FB000023B7BE7043AD9D3013A11F8013B00F830 +:100FC000013BF9D20B7803704B7843708B788370B8 +:100FD00060467047000000000000000000000000B4 +:100FE000A2EB0300704700BF02780B78012A28BFEC +:100FF0009A42F5D16DE9044540EA0104CDE9026762 +:101000006FF0000C4FEA447212B380EA010414F04E +:10101000070F6AD100F0070420F0070004F0030571 +:1010200021F007014FEAC505F0E8042314F0040F8E +:10103000F1E804670CFA05F462EA040266EA0406C1 +:101040000AD063EA0403624667EA0407664603E0DF +:10105000F0E80423F1E8046782FA4CF582EA06041A +:10106000A4FA8CF46CBB83FA4CF583EA0705A5FA65 +:101070008CF595B950E9022351E9026782FA4CF5E3 +:1010800082EA0604A4FA8CF483FA4CF583EA070595 +:10109000A5FA8CF52543DBD09CB92DBAB5FA85F4B9 +:1010A00024F0070427FA04F1DDE9026723FA04F3C8 +:1010B00003F0FF0001F0FF01FDE80445A0EB010093 +:1010C000704724BAB4FA84F424F0070426FA04F131 +:1010D000DDE9026722FA04F202F0FF0001F0FF01ED +:1010E000FDE80445A0EB0100704714F0030F3CD16C +:1010F00010F0030428D150F8082B51F8083B82FA6D +:101100004CF582EA0305A5FA8CF55DB950F8042C7C +:1011100051F8043C82FA4CF582EA0305A5FA8CF5F5 +:10112000002DE8D02DBAB5FA85F424F0070423FA8F +:1011300004F122FA04F202F0FF0001F0FF01FDE8E1 +:101140000445A0EB010070474FEAC40420F00300FF +:1011500050F8082B21F0030151F8083B0CFA04F475 +:1011600062EA040263EA0403C9E710F003041AD038 +:10117000A1EB040120F00300E40750F8042B06D093 +:101180000FD28B785FFAA2F4E41A06D12BB1CB7898 +:101190005FFAB2F4E41A00D11BB920465DF8104B97 +:1011A000704701F1040150F8042BCC0721F0030132 +:1011B00051F8043B48D824D222F07F4482FA4CF5FF +:1011C00094EA1325A5FA8CF50AD165B951F8043BC8 +:1011D00084EA0204B4EB036F0ED150F8042BEBE762 +:1011E0004FEA132355E035F07F454DD10878FDE8EF +:1011F0000445C0F1000070474FEA126203F0FF039C +:1012000047E002EA1C4482FA4CF594EA1345A5FA39 +:101210008CF50AD165B951F8043B84EA0204B4EBB9 +:10122000034F0CD150F8042BEBE74FEA134330E0A7 +:1012300015EA1C4528D10B884FEA124229E04FEAF3 +:10124000124203EA1C4324E002F0FF0482FA4CF548 +:1012500094EA1365A5FA8CF50AD165B951F8043BF7 +:1012600084EA0204B4EB032F09D150F8042BEBE716 +:101270004FEA13630DE015F0FF0F05D10B684FEA3D +:10128000122223F07F4304E04FF00000FDE8044504 +:10129000704712BA1BBA82FA4CF482EA0304A4FA29 +:1012A0008CF5B5FA85F402FA04F203FA04F34FEA76 +:1012B0001260FDE80445A0EB1360704700000000D9 +:1012C00090F800F06DE9024520F007016FF0000C86 +:1012D00010F0070491F820F040F049804FF000042E +:1012E0006FF00700D1E9002391F840F000F1080009 +:1012F00082FA4CF2A4FA8CF283FA4CF3A2FA8CF341 +:101300004BBBD1E9022382FA4CF200F10800A4FAA7 +:101310008CF283FA4CF3A2FA8CF3E3B9D1E90423FB +:1013200082FA4CF200F10800A4FA8CF283FA4CF332 +:10133000A2FA8CF37BB9D1E9062301F1200182FAEC +:101340004CF200F10800A4FA8CF283FA4CF3A2FAF2 +:101350008CF3002BC6D0002A04BF04301A4612BA00 +:10136000B2FA82F2FDE8024500EBD2007047D1E903 +:10137000002304F00305C4F100004FEAC50514F092 +:10138000040F91F840F00CFA05F562EA05021CBF63 +:1013900063EA050362464FF00004A9E7000000007D +:1013A00001F0FF01102A2BDB10F0070F08D010F816 +:1013B000013B013A8B422DD010F0070F42B3F6D11A +:1013C000F0B441EA012141EA014122F007047FF033 +:1013D00000070023F0E80256083C85EA010586EA8A +:1013E000010685FA47F5A3FA87F586FA47F6A5FAC6 +:1013F00087F68EB9EED1F0BC01F0FF0102F00702D2 +:1014000032B110F8013B013A83EA010313B1F8D17C +:101410000020704701387047002D06BF354603385D +:10142000073815F0010F07D1013015F4807F02BF96 +:10143000013015F4C03F0130F0BC0138704700BFE7 +:101440004FEA410C7FEA6C5C02D150EA013C0AD1C0 +:101450004FEA430C7FEA6C5C02D152EA033C02D1B2 +:101460004FF0000070474FF00100704708B50B4B7C +:101470001A6842F400721A601A6842F480621A60B4 +:101480001A6842F480721A60032000F0C3FD0F2036 +:1014900009F0E6FB09F0BAFB002008BD003C024061 +:1014A000034A1168034B1B780B441360704700BF5D +:1014B0001C10002000000020014B1868704700BF7E +:1014C0001C10002038B50446FFF7F6FF0546B4F1BE +:1014D000FF3F02D0044B1B781C44FFF7EDFF401B7D +:1014E000A042FAD338BD00BF000000204A4B5A6822 +:1014F00022F440325A605A6841680A435A600268CE +:10150000536823F48073536002685368016943EAA7 +:10151000012353600268536823F0407353600268EC +:10152000536881680B4353600268936823F4006337 +:10153000936002689368C1680B439360826A374B7B +:101540009A4257D00268936823F0706393600268F0 +:101550009368816A0B4393600268936823F0405359 +:10156000936002689368C16A0B4393600268936852 +:1015700023F00203936002689368017E43EA41030B +:10158000936090F82030002B3FD00268536843F4FA +:10159000006353600268536823F46043536001683A +:1015A0004B68426A013A43EA42334B600268D36AAD +:1015B00023F47003D3620168CB6AC269013A43EA3B +:1015C0000253CB620268936823F40073936002684D +:1015D000936890F8301043EA41239360026893685F +:1015E00023F48063936002689368416943EA81232E +:1015F000936070470268936823F070639360026899 +:10160000936823F040539360B0E70268536823F473 +:1016100000635360CAE700BF002301400100000FD0 +:1016200038B310B50446036C43B1236C13F0100FAC +:101630000BD00120002384F83C3010BD08F03CFCA6 +:101640000023636484F83C30EFE7236C23F4885371 +:1016500023F0020343F0020323642046FFF746FF12 +:1016600000206064236C23F0030343F00103236430 +:10167000E0E701207047000030B482B000230193FE +:1016800090F83C30012B00F0BB80012380F83C3007 +:101690000B68092B41D90468E2689BB203EB430352 +:1016A0001E3B4FF0070C0CFA03F322EA0303E3603E +:1016B0000468E2680B8803EB43031E3B8D6805FA60 +:1016C00003F31343E3604B68062B3DD80468626B59 +:1016D00003EB8303053B4FF01F0C0CFA03F322EAE4 +:1016E000030363630468626B4B6803EB8303053B8E +:1016F000B1F800C00CFA03F3134363630268414B73 +:101700009A4251D002683F4B9A4256D0002380F84B +:101710003C30184602B030BC7047046822699BB266 +:1017200003EB43034FF0070C0CFA03F322EA030325 +:101730002361046822690B8803EB43038D6805FA73 +:1017400003F313432361BEE70C2B16D805682A6BFD +:1017500003EB8303233B1F2404FA03F322EA03036E +:101760002B6305682A6B4B6803EB8303233B0C88D0 +:1017700004FA03F313432B63C0E70568EA6A03EB3B +:101780008303413B1F2404FA03F322EA0303EB62C1 +:101790000568EA6A4B6803EB8303413B0C8804FA53 +:1017A00003F31343EB62A9E70B68122BAAD1164A85 +:1017B000536843F480035360A4E70B68103B012B8C +:1017C000A4D8114A536843F4000353600B68102BEC +:1017D0009CD10E4B1B6802F1467202F52E3202F2CA +:1017E0008332A2FB03239B0C03EB83035B00019377 +:1017F00002E0019B013B0193019B002BF9D185E79E +:10180000022087E7002001400023014094000020CF +:10181000002800F0A18038B5044690F82030D3B1FC +:101820002268136843F001031360FFF745FE054685 +:1018300023685A6812F0010F10D1FFF73DFE401BDC +:101840000A28F5D9636A43F400336362052384F8F8 +:101850002030012038BD08F0ADFBE1E71A6822F026 +:1018600002021A60FFF728FE054623685A6812F044 +:10187000020F0DD0FFF720FE401B0A28F5D9636A3E +:1018800043F400336362052384F820300120E1E74C +:10189000227E012A3DD01A6822F080021A60637EFF +:1018A000012B3BD02268136823F040031360A37E12 +:1018B000012B39D02268136823F020031360E37EE4 +:1018C000012B37D02268136843F010031360237F85 +:1018D000012B35D02268136823F008031360637F5F +:1018E000012B33D02268136823F004031360A3682C +:1018F000E268134322691343626913436268013A41 +:1019000021681343CB6100206062012384F82030FA +:10191000A0E71A6842F080021A60C0E722681368E4 +:1019200043F040031360C2E72268136843F02003CA +:101930001360C4E72268136823F010031360C6E73E +:101940002268136843F008031360C8E7226813682D +:1019500043F004031360CAE70120704790F8203079 +:10196000013BDBB2012B05D9436A43F48023436278 +:101970000120704730B5464BD3F8002242F00102F7 +:10198000C3F80022D3F8002222F47C52C3F80022CC +:10199000D3F80022486A42EA0022C3F800224A69CA +:1019A00002F01F02012000FA02F2D3F81C026FEAD3 +:1019B000020C20EA0200C3F81C02CB69C3B9344B05 +:1019C000D3F80C020CEA0000C3F80C028C884869BA +:1019D000CD6844EA0544483043F830408C680888B4 +:1019E00040EA04404C6904F1480E03EBCE03586012 +:1019F000CB69012B1ED08B69002B33D12448D0F842 +:101A000004320CEA0303C0F804320B698BBB204894 +:101A1000D0F814320CEA0303C0F814320B6A012B1D +:101A20002ED01B4AD2F8003223F00103C2F8003254 +:101A3000002030BD164BD3F80C021043C3F80C0243 +:101A40008C8848690D6844EA0544483043F83040C2 +:101A500088894C698D6840EA0540483403EBC4032B +:101A60005860C8E70A48D0F804321343C0F804327B +:101A7000CBE70748D0F814321343C0F81432CDE74F +:101A80000349D1F81C321A43C1F81C22C9E700BF30 +:101A90000064004070B5044690F82050EDB2012D6E +:101AA00006D0436A43F4002343620125284670BDF3 +:101AB000022380F820300268136823F001031360CA +:101AC000FFF7FAFC064623685B6813F0010F0CD0A1 +:101AD000FFF7F2FC831B0A2BF5D9636A43F400334A +:101AE0006362052384F82030E0E700256562DDE7C6 +:101AF00030B590F820C00468A4680CF1FF3C5FFA90 +:101B00008CFCBCF1010F6BD814F0E05F62D0C4F321 +:101B1000016CBCF1020F05D9436A43F40003436230 +:101B2000012062E0012404FA0CF41C608B68002B95 +:101B30003DD10D68CB68046843EA45550CF11803A4 +:101B40001B01E55003680C690CF1180E03EB0E1332 +:101B50005C600B7D012B35D0D17993791B0443EA6E +:101B60000163517943EA012314790168234301EBAE +:101B70000C11C1F88C31D17893781B0443EA0163CE +:101B8000517843EA0123117802680B4302EB0C12EF +:101B9000C2F8883102680CF1180C4FEA0C1C52F89C +:101BA0000C3043F0010342F80C3000201DE04C687B +:101BB00043EAC403CC6823430CF1180424010568EC +:101BC0002B51BFE7036803EB0E13596841F4807192 +:101BD0005960C1E7436A43F400134362012004E003 +:101BE000436A43F480234362012030BD90F82030E3 +:101BF000013BDBB2012B01D90020704703689868D4 +:101C000010F0806000D001209A6812F0006F00D0C0 +:101C100001309B6813F0805FEFD00130704790F87F +:101C200020C00CF1FF3C5FFA8CFCBCF1010F00F20C +:101C3000958030B451B90468E46814F0030F10D1F2 +:101C4000436A43F400134362012077E00468246987 +:101C500014F0030F05D1436A43F4001343620120DB +:101C60006CE001F11B04240105682C5904F0040404 +:101C70009460002C64D101F11B04240105682C59E7 +:101C8000640D1460046801F11B0C4FEA0C1C54F83D +:101C90000C4004F00204D46004686444646804F0F6 +:101CA0000F041461046864446468C4F307249461F5 +:101CB000046864446468240C5461026802EB0112F5 +:101CC000D2F8B8211A70026802EB0112D2F8B821DA +:101CD000C2F307225A70026802EB0112D2F8B8214F +:101CE000C2F307429A70026802EB0112D2F8B821DF +:101CF000120EDA70026802EB0112D2F8BC211A71DE +:101D0000026802EB0112D2F8BC21C2F307225A7119 +:101D1000026802EB0112D2F8BC21C2F307429A71A9 +:101D2000026802EB0112D2F8BC21120EDA7179B905 +:101D30000268D36843F02003D360002030BC7047B2 +:101D400001F11B04240105682C59E408546099E74B +:101D50000268136943F020031361EEE7436A43F41A +:101D6000802343620120704790F82030013BDBB2B2 +:101D7000012B01D90020704721B90368D86800F011 +:101D8000030070470368186900F00300704790F87B +:101D90002030013BDBB2012B05D9436A43F4802399 +:101DA0004362012070470268536919435161002062 +:101DB000704770477047704770477047704770476B +:101DC00070477047704770472DE9F84F0546036824 +:101DD0005C69D3F804809F68D3F80CB0D3F810A0E6 +:101DE000D3F8189014F001063BD017F0010616D076 +:101DF00001229A6017F0020F08D117F0040F0CD1DE +:101E000017F0080606D04FF4805608E0FFF7D1FF20 +:101E1000002604E0FFF7D0FF01E04FF4006617F45E +:101E2000807F0DD02B684FF480729A6017F4007F8A +:101E300040F0868017F4806F00F0868046F40056EC +:101E400017F4803F0DD02B684FF480329A6017F45E +:101E5000003F40F0838017F4802F00F0838046F429 +:101E6000004614F0080F07D01BF0100F04D046F402 +:101E700000762B681022DA6014F0040F02D01BF0F9 +:101E8000080F79D114F0020F04D02B68DB6813F02F +:101E9000030F78D114F0400F07D01AF0100F04D0C0 +:101EA00046F480662B6810221A6114F0200F02D0CD +:101EB0001AF0080F6BD114F0100F04D02B681B69B7 +:101EC00013F0030F6AD114F4003F02D018F0100F82 +:101ED00068D114F4803F02D018F0080F69D114F4CF +:101EE000004F7AD018F0040F74D014F4807F04D01F +:101EF00019F0010F01D046F0010614F4007F04D060 +:101F000019F0020F01D046F0020614F4806F04D0DD +:101F100019F0040F01D046F0040614F4006F59D0F4 +:101F200019F0700956D0B9F1400F65D058D8B9F101 +:101F3000200F5ED0B9F1300F42D146F0200644E0C8 +:101F40002846FFF737FF7BE717F4006F02D046F40F +:101F5000804675E72846FFF730FF71E72846FFF710 +:101F60002AFF7EE717F4002F02D046F4803678E788 +:101F70002846FFF723FF74E72B680822DA6028461B +:101F8000FFF71DFF7EE728460BF07AFC82E72B68FF +:101F900008221A612846FFF713FF8CE728460BF04A +:101FA00074FC90E72B6810225A602846FFF709FF5F +:101FB0008FE72B6808225A602846FFF703FF8EE759 +:101FC000B9F1100F01D146F008062A68936923F091 +:101FD000700393612B6804225A609EB9BDE8F88FA4 +:101FE000B9F1500F0BD0B9F1600FEED146F4807605 +:101FF000EBE746F01006E8E746F04006E5E746F076 +:102000008006E2E76B6A1E436E622846FFF7DBFE3E +:10201000E4E70000074AD36823F4E0631B041B0CC9 +:10202000000200F4E060034343F0BF6343F4003375 +:10203000D360704700ED00E000B5194BDB68C3F3D7 +:102040000223C3F1070CBCF1040F28BF4FF0040CAE +:1020500003F1040EBEF1060F18D9033B4FF0FF3E0B +:102060000EFA0CFC21EA0C0199400EFA03F322EA65 +:102070000303194300280BDB0901C9B200F16040DA +:1020800000F5614080F800135DF804FB0023E5E7EC +:1020900000F00F000901C9B2024B1954F4E700BF68 +:1020A00000ED00E014ED00E0002807DB00F01F0267 +:1020B000400901239340024A42F82030704700BF94 +:1020C00000E100E058B110B5044643791BB101238B +:1020D0006371002010BD037108F01CF8F7E70120C0 +:1020E000704770B110B50446037933B102232371F0 +:1020F000002020610123237110BD437108F044F8D2 +:10210000F4E7012070474379012B25D010B54FF03B +:10211000010E80F805E0022303710468236802F0D1 +:10212000100240F6FE7C0CFA02FC23EA0C0C0B6851 +:1021300049680B43934043EA0C0323600468236817 +:10214000C02101FA02F223EA0202226080F804E0D0 +:1021500000234371184610BD0220704730B4056853 +:102160002C6824F480242C60046863608368402B0E +:1021700005D0036899600368DA6030BC7047036873 +:102180009A600368D960F8E710B40368D9B21039CF +:102190000C4AA2FB014212090B4CA25CC2655F29EA +:1021A00009D923F47F7323F0030304338365806D1F +:1021B0005DF8044B704723F47F7323F003038365BA +:1021C000F5E700BFABAAAAAA54E20108836A8269B4 +:1021D00092B9012B0AD0022B02D00BB1002070471C +:1021E000C36A13F0807F28D100207047C36AB3F11F +:1021F000C07F24D000207047B2F5005F09D0022BC9 +:1022000025D9032B25D1C36A13F0807F23D1002069 +:102210007047032B03D8DFE803F01404140A0020EE +:102220007047C36A13F0807F0DD100207047C36AE6 +:10223000B3F1C07F09D00020704701207047012012 +:10224000704701207047012070470120704701202E +:1022500070470020704701207047000070B50446A9 +:10226000FFF72AF9002C5BD00546022384F83530AD +:10227000002384F834302268136823F001031360CC +:1022800023681A6812F0010F0AD0FFF715F9431BF3 +:10229000052BF5D920236365032084F8350070BD34 +:1022A0001A68204810406168A2680A43E1680A433E +:1022B00021690A4361690A43A1690A43E1690A4342 +:1022C000216A0A430243616A04291ED01A60266803 +:1022D000756925F00705636A1D43042B07D1A36ABE +:1022E0001D43E36A1BB12046FFF770FF90B975618B +:1022F0002046FFF749FFE26D3F23934083600020B3 +:102300006065012384F83530C9E7E16A206B014339 +:102310000A43DBE740236365012084F83500BEE70C +:102320000120BCE73F8010F038B50446856D90F879 +:10233000340001282BD0012084F8340094F83500B3 +:10234000C0B2012804D0002384F83430022038BD04 +:10235000022084F83500002060652046FFF7FEFE6D +:10236000E26D3F239340AB602268136843F016038D +:102370001360236C23B12268136843F008031360D1 +:102380002268136843F0010313600020DFE7022096 +:10239000DDE770B50446866DFFF78EF894F83530AA +:1023A000DBB2022B06D080236365002384F834302F +:1023B000012070BD05462268136823F016031360E0 +:1023C0002268536923F080035361236CE3B12268D0 +:1023D000136823F0080313602268136823F00103D5 +:1023E000136023681B6813F0010F11D0FFF764F826 +:1023F000431B052BF5D920236365032084F83500A2 +:10240000002384F83430D4E7A36C002BDFD1E3E75A +:10241000E26D3F239340B360012384F83530002000 +:1024200084F83400C5E790F83530DBB2022B03D0D6 +:102430008023436501207047052380F8353002680A +:10244000136823F00103136000207047F0B583B0D8 +:10245000044600230193724B1D68724BA3FB0535A4 +:10246000AD0A876D3E68C26D08239340334210D099 +:1024700003681A6812F0040F0BD01A6822F00402E5 +:102480001A60C26D08239340BB60436D43F00103A3 +:102490004365E26D01239340334209D022685269BB +:1024A00012F0800F04D0BB60636D43F002036365DC +:1024B000E26D04239340334209D02268126812F07F +:1024C000020F04D0BB60636D43F004036365E26DEB +:1024D00010239340334224D02268126812F0080F70 +:1024E0001FD0BB6023681A6812F4802F0DD01B68C0 +:1024F00013F4002F04D1236C9BB12046984710E0C1 +:10250000A36C73B1204698470BE01A6812F4807FE1 +:1025100003D11A6822F008021A60236C0BB120461E +:102520009847E26D20239340334255D022681268C9 +:1025300012F0100F50D0BB6094F83530DBB2052B91 +:102540000ED023681A6812F4802F33D01B6813F45E +:10255000002F2AD1636C002B3ED0204698473BE0E9 +:102560002268136823F0160313602268536923F06E +:1025700080035361236CA3B12268136823F008031E +:102580001360E26D3F239340BB60012384F8353034 +:10259000002384F83430236D002B3FD02046984729 +:1025A0003CE0A36C002BE7D1EBE7E36BA3B1204643 +:1025B000984711E01A6812F4807F09D11A6822F056 +:1025C00010021A60012384F83530002384F8343077 +:1025D000E36B0BB120469847636DFBB1636D13F05D +:1025E000010F17D0052384F835302268136823F0D3 +:1025F00001031360019B01330193AB4204D82368AC +:102600001B6813F0010FF5D1012384F83530002346 +:1026100084F83430E36C0BB12046984703B0F0BD2A +:1026200094000020B5814E1B90F8350070470000E3 +:10263000204BDB6813F0100F07D01F4AD36943F01B +:102640001003D3611B4B1022DA601A4BDB6813F0C6 +:10265000200F07D0184AD36943F00803D361154B04 +:102660002022DA60134BDB6813F0400F07D0124AC8 +:10267000D36943F00403D3610E4B4022DA600D4B63 +:10268000DB6813F0800F07D00B4AD36943F00203D5 +:10269000D361084B8022DA60064BDB6813F0020F2F +:1026A00007D0054AD36943F02003D361014B0222CE +:1026B000DA607047003C02402010002070477047ED +:1026C00010B53A4BDB6813F0F20F13D0384B1B7880 +:1026D000DBB2012B3BD0364B1B78DBB2022B3CD05C +:1026E000334B5C69FFF7A4FF2046FFF7E8FF304B50 +:1026F00000221A702D4BDB6813F0010F13D02B4B07 +:102700000122DA602A4B1B78DBB2934228D0284B97 +:102710001B78DBB2022B41D0254B5869FFF7CEFF67 +:10272000234B00221A70224B1B787BB91F4B1A696E +:1027300022F0FF021A611A6922F080721A611A6986 +:1027400022F000721A611A4B00221A7610BD184B43 +:10275000DC684FF0FF32DA60C4E7154B1C69C1E753 +:10276000134B5A68013A5A605B685BB1104CE068E1 +:10277000FFF7A4FFE3680133E360E068217A00F02B +:1027800019F8D0E70A4B4FF0FF34DC6000221A70D2 +:1027900000F03AF82046FFF791FFC4E700F034F864 +:1027A000034B1869FFF78AFFBAE700BF003C0240FD +:1027B0002010002049B1012921D0022902D04FF474 +:1027C000407C04E04FF4007C01E04FF0000C0D4B26 +:1027D000196921F4407119611A6942EA0C021A61FF +:1027E0001A6922F0F8021A611A6942EAC00040F040 +:1027F000020018611A6942F480321A6170474FF47E +:10280000807CE4E7003C0240164B1B6813F4007F19 +:1028100010D0144B1A6822F400721A601A6842F43D +:1028200000621A601A6822F400621A601A6842F4A0 +:1028300000721A600B4B1B6813F4806F10D0094BA9 +:102840001A6822F480621A601A6842F480521A6090 +:102850001A6822F480521A601A6842F480621A6080 +:10286000704700BF003C024000230F2B00F2E480C1 +:1028700070B582B060E085685E000324B44025EA4C +:102880000405CC68B4402C438460456825EA020501 +:102890004C68C4F300129A402A4342605AE0DC08B4 +:1028A000083450F8246003F0070295000F22AA4074 +:1028B00026EA020E0A69AA4042EA0E0240F82420E3 +:1028C0005CE0072200E0002202FA0EF22A43023402 +:1028D0005A4D45F824205A4A94686FEA0C0224EABB +:1028E0000C054E6816F4801F01D04CEA0405544CC8 +:1028F000A560E46802EA04054E6816F4001F01D0E2 +:102900004CEA04054E4CE560646802EA04054E6832 +:1029100016F4003F01D04CEA0405494C6560246878 +:1029200022404D6815F4803F01D04CEA0402444C2B +:10293000226001330F2B7DD801229A400C6804EAF3 +:10294000020C32EA0404F4D14C6804F00304013CA4 +:10295000012C90D94A6802F00302032A09D0C46806 +:102960005D000322AA4024EA02048A68AA402243A6 +:10297000C2604A6802F00302022A90D004684FEA5B +:10298000430E032202FA0EF224EA02044A6802F01D +:10299000030202FA0EF2224302604A6812F4403F38 +:1029A000C7D000220192274A546C44F480445464F6 +:1029B000526C02F480420192019A9C08A51C1F4AA5 +:1029C00052F8255003F003024FEA820E0F2202FA5A +:1029D0000EF225EA02051C4A90423FF474AF02F55C +:1029E000806290421AD002F58062904218D002F5BF +:1029F0008062904216D002F58062904214D002F5B7 +:102A00008062904212D002F58062904210D002F5AE +:102A1000806290423FF455AF082255E7012253E708 +:102A2000022251E703224FE704224DE705224BE73C +:102A3000062249E702B070BD704700BF0038014070 +:102A4000003C014000380240000002400AB18161B0 +:102A5000704709048161704708B5054B5B69034203 +:102A600000D108BD024B58610BF05AF8F9E700BFDE +:102A7000003C014090F83E30DBB2402B10D003699F +:102A8000B3F5804F1BD0036D002B39D1436CC3F3DA +:102A9000C813026803F0060343F0F00313617047A4 +:102AA000036D2BB9436C026803F0FE03136170479A +:102AB000436C026843F00103DBB21361704790F886 +:102AC0003D30DBB2212B0FD0436C026843F0010391 +:102AD000DBB21361436B6BB1DB6B5BB102685368B4 +:102AE00043F4006353607047436C026803F0FE03D5 +:102AF0001361EFE7836B33B1DB6B002BEED102E0A8 +:102B0000036D012B00D07047436CC3F3C8130268F8 +:102B100003F0060343F0F1031361F4E7436C02682A +:102B2000DBB21361436B3BB1DB6B2BB102685368C3 +:102B300043F4006353607047836B002BFBD0DB6B67 +:102B4000002BF3D1F7E710B48BB090F83E30DAB237 +:102B5000C16A046B90F83D30DBB2222B0BD000230E +:102B6000099303685A6909929B690993099B0BB001 +:102B70005DF8044B7047036D0BB9402A17D0036D05 +:102B80001BB90369B3F5404F19D0438D9BB2002B9D +:102B900025D1029303685A6902929A690292029AB5 +:102BA0001A6842F400721A6000230365DFE700939D +:102BB00003685A6900929B690093009BD7E7002342 +:102BC000019303685A6901929A690192019A1A68FD +:102BD00042F480721A60036D01330365C7E7438DC9 +:102BE0009BB2012B25D0438D9BB2022B7BD0026878 +:102BF000136843F48063136003685A6812F4006F2B +:102C00000ED011F5803F07D0012905D0082903D047 +:102C1000102901D0202903D15A6842F480525A6009 +:102C20000023089303685A6908929B690893089BDC +:102C3000BAE711F5803F11D0082934D0202932D0CD +:102C4000122C2ED0042940D002293ED010293CD08D +:102C50000268136823F4806313603BE00268136822 +:102C600023F48063136003685A6812F4006F0CD079 +:102C70001A6822F480621A600023039303685A6979 +:102C800003929B690393039B8EE7002204925A6987 +:102C900004929A690492049A1A6842F400721A60C3 +:102CA00082E70129CED00268136823F480631360A1 +:102CB0000023069303685A6906929A690692069A57 +:102CC0001A6842F400721A606EE70268136843F4EF +:102CD000806313600023059303685A6905929B691A +:102CE0000593059B60E704290ED002290CD010291A +:102CF0000AD00268136823F48063136002681368C3 +:102D000043F40063136004E00268136843F48063D3 +:102D1000136003685A6812F4006F0ED011F5803FFB +:102D200007D0012905D0082903D0102901D0202976 +:102D300003D15A6842F480525A6000230793036813 +:102D40005A6907929B690793079B2DE7438D9BB2B6 +:102D50005BB1426A036812781A61436A01334362C5 +:102D6000438D9BB2013B9BB243857047438D9BB221 +:102D70005BB103681A69436A1A70436A013343629C +:102D8000438D9BB2013B9BB24385704782B00023C9 +:102D900001930E4B1B68DB080D4AA2FB03231B0AA1 +:102DA00003EB83030193019B013B0193019B33B12F +:102DB00003681B6813F4007FF5D1002004E0036C66 +:102DC00043F020030364012002B070479400002008 +:102DD00089B5F814C36AB3F52A0F04D0C36AB3F1F6 +:102DE0002A4F03D070470123C36270470823C36290 +:102DF000F8E70000002800F0CC8070B5044690F899 +:102E00003D30002B77D0242384F83D3022681368AE +:102E100023F0010313602268136843F40043136036 +:102E20002268136823F40043136002F045F86268D7 +:102E30005A4B9A4264D85A4B98428CBF00230123C4 +:102E4000002B40F0A8805749A1FB00318B0C25686E +:102E50006A6822F03F0242EA91426A6021680A6A87 +:102E600022F03F0266684D4DAE424FD80133134306 +:102E70000B622168CA6922F44F4222F0FF026668A1 +:102E8000464B9E424CD8431E7600B3FBF6F301330B +:102E900040F6FC70034278D0C3F30B031343CB61BD +:102EA00021680B6823F0C003E269206A02431343E0 +:102EB0000B6021688B6823F4034323F0FF0322692E +:102EC000E068024313438B602168CB6823F0FF0363 +:102ED0006269A06902431343CB602268136843F020 +:102EE0000103136000202064202384F83D30206318 +:102EF00084F83E0070BD80F83C3007F041FB82E76B +:102F0000294B98428CBF0023012399E74FF4967513 +:102F100005FB03F3254DA5FB03539B090133A6E7EE +:102F2000A368BBB9451E06EB460CB5FBFCF50135A5 +:102F3000C5F30B05B5FA85F56D0945BBC3B9013875 +:102F400006EB4603B0FBF3F30133C3F30B0343F487 +:102F50000043A3E7451E06EB860C0CEB8C0CB5FB7F +:102F6000FCF50135C5F30B05B5FA85F56D09E4E708 +:102F7000013806EB860303EB8303B0FBF3F3013365 +:102F8000C3F30B0343F4404388E7042386E701239C +:102F900084E7012070470120ACE700BFA086010054 +:102FA0007F841E0083DE1B43FF083D00D34D62106B +:102FB0007047704708B590F83D30DAB2438D9BB248 +:102FC00083B1416A036809781961436A0133436236 +:102FD000438D9BB2013B9BB24385438D9BB20BB9A2 +:102FE000292A00D008BD0268536823F48063536027 +:102FF00021230363282380F83D30FFF7DAFFF1E750 +:10300000704708B590F83D30DAB2438D9BB283B17A +:1030100003681969436A1970436A01334362438D37 +:103020009BB2013B9BB24385438D9BB20BB92A2ACD +:1030300000D008BD0268536823F4806353602223E4 +:103040000363282380F83D30FFF7DAFFF1E770478C +:1030500000B583B090F83D3003F02803282B0CD046 +:103060000023019302685169019192690192019ACA +:1030700080F83C3003B05DF804FB0268536823F429 +:103080008063536011F0040F0BD0002311F0800F08 +:1030900009D18289002180F83C101946FFF7D7FF3B +:1030A000E8E70123F2E7028BF4E7704708B590F8F0 +:1030B0003D30DBB2C26A082A01D0202A01D1282B78 +:1030C00006D0212B1ED003686FF480625A6108BDC0 +:1030D0001A4BC3620268536823F4E06353600368C9 +:1030E0006FF480625A610268136823F4806313608E +:1030F00000230363202280F83D2080F83E30FFF754 +:10310000D4FFE4E70D4BC36221230363202380F83F +:103110003D30002380F83E300268536823F4E063BA +:10312000536003686FF480625A610268136823F485 +:1031300080631360FFF73DFFC9E700BF0000FFFF9A +:10314000704708B5C26A90F83D30DBB2212B00D041 +:1031500008BD438D9BB263B1426A036812781A615D +:10316000436A01334362438D9BB2013B9BB243856B +:10317000EEE7082A04D0202A02D012F5803F19D1A8 +:103180000268536823F4E06353600268136843F4F1 +:103190000073136000230363202380F83D3090F810 +:1031A0003E30DBB2402B15D0002380F83E30FFF7D5 +:1031B000FFFECDE70268536823F4E06353601123F8 +:1031C0000363002380F83E30202380F83D30FFF772 +:1031D000EFFEBDE7002380F83E30FFF7B1FFB7E711 +:1031E00008B590F83D30026D9AB9C36C012B08D038 +:1031F000836CC3F3072302681361036D0133036516 +:1032000008BD836C0268DBB21361036D0233036592 +:10321000F6E7DBB2026D012A23D0026D022AEFD15C +:10322000222B26D0428D92B20AB1212B2AD0428D78 +:1032300092B2002AE4D1212BE2D10268536823F430 +:10324000E06353600268136843F400731360002363 +:103250000363202280F83D2080F83E30FFF770FFA6 +:10326000CEE7836C0268DBB21361036D0133036543 +:10327000C6E70268136843F480731360036D01337B +:103280000365BDE7426A036812781A61436A013335 +:103290004362438D9BB2013B9BB24385B0E710B5BF +:1032A00090F83D30DBB290F83E20D2B2C46A018D76 +:1032B00009B9212B04D0212B3BD0402A37D010BD97 +:1032C000082C04D0202C02D014F5803F19D10268BC +:1032D000536823F4E06353600268136843F4007397 +:1032E000136000230363202380F83D3090F83E30C4 +:1032F000DBB2402B15D0002380F83E30FFF758FE9C +:10330000DDE70268536823F4E0635360112303632D +:10331000002380F83E30202380F83D30FFF748FE40 +:10332000CDE7002380F83E30FFF70AFFC7E7222BE6 +:10333000C5D1438D9BB22BB90268536823F48063D7 +:103340005360BCE790F83E30DBB2402B0CD0426AB1 +:10335000036812781A61436A01334362438D9BB25A +:10336000013B9BB24385AAE7FFF73AFFA7E708B501 +:10337000C26A438D9BB2042B14D0438D9BB2032BA6 +:1033800022D0438D9BB2022B39D003681A69436A5D +:103390001A70436A01334362438D9BB2013B9BB277 +:1033A000438510E00268536823F480635360036828 +:1033B0001A69436A1A70436A01334362438D9BB2B0 +:1033C000013B9BB2438508BD01684B6823F48063D1 +:1033D0004B60042A06D0022A04D00268136823F442 +:1033E0008063136003681A69436A1A70436A013381 +:1033F0004362438D9BB2013B9BB24385E3E7012AC5 +:103400000BD0102A09D0042A38D0022A36D00268FC +:10341000136843F40073136004E00268136823F434 +:103420008063136003681A69436A1A70426A531C06 +:103430004362438D9BB2013B9BB2438503681B698A +:103440005370436A01334362438D9BB2013B9BB28D +:1034500043850268536823F440735360202380F847 +:103460003D3090F83E30DBB2402B0DD0002380F889 +:103470003E30122303630AF06BFBA4E70268136873 +:1034800043F480631360CDE7002380F83E3003638C +:103490000AF088FB97E7704790F83D30DBB2222BAB +:1034A00000D0704710B50446438D9BB2032B15D94D +:1034B00003681A69436A1A70436A01334362438D91 +:1034C0009BB2013B9BB24385438D9BB2032B0FD133 +:1034D0000268536823F48063536009E0C26A022AD9 +:1034E00001D0012B05D92268536823F4806353600F +:1034F00010BDFFF74BFC00282ED12268136823F47F +:10350000806313602268536823F4E0635360236888 +:103510001A69636A1A70636A01336362638D9BB2CE +:10352000013B9BB26385202384F83D3094F83E3004 +:10353000DBB2402B08D0002384F83E3012232363F3 +:1035400020460AF005FBD3E7002384F83E302363CE +:1035500020460AF027FBCBE72268536823F4E06398 +:10356000536023681A69636A1A70636A013363627D +:10357000638D9BB2013B9BB26385202384F83D3071 +:10358000002384F83E302046FFF785FFB0E7704700 +:1035900000B583B000230193806B90F83D20D2B238 +:1035A000324B1B68DB083249A1FB03131B0A03EBF8 +:1035B0008303C3EBC3030193019B43B1019B013B15 +:1035C000019303681B6813F4007FF5D103E0036CDB +:1035D00043F020030364436B0BB10021D963836B79 +:1035E0000BB10021D96301680B6823F480630B6081 +:1035F00000234385436B0BB100211965836B0BB12D +:103600000021196501680B6823F001030B6090F835 +:103610003D30DBB2602B0ED002F02802282A14D0F5 +:10362000202380F83D30002380F83E30FFF733FF41 +:1036300003B05DF804FB202380F83D30002380F8C0 +:103640003E300364FFF7A3FFF2E70268136843F01C +:10365000010313600268136843F48063136000235E +:103660000363282380F83D30E0E700BF940000208A +:1036700089B5F81410B5044690F83D30DBB290F8E7 +:103680003E20D2B2102A36D0402A34D003F028028D +:10369000282A38D02268526812F4006F07D1602BB4 +:1036A00005D0202384F83D30002384F83E300023E9 +:1036B000236323685A6812F4006F48D05A6822F4D2 +:1036C00000625A60626B92F83530DBB2012B20D079 +:1036D000444B1365606BFEF7A6FE002849D02268B4 +:1036E000136823F001031360202384F83D30606BDE +:1036F000036D98473DE0222BC8D121680A6822F467 +:1037000000620A60C2E700232363282384F83D3067 +:10371000CFE7A36B334A1A65A06BFEF784FE40B374 +:1037200023685A6912F0400F05D01A69636A1A704B +:10373000636A013363622268136823F00103136034 +:10374000202384F83D30A06B036D984711E094F876 +:103750003D20D2B2602A1FD05A6912F0400F05D026 +:103760001A69636A1A70636A013363622046FFF75D +:1037700092FE236C13F00F0F04D02268536823F4D9 +:10378000E063536094F83D30DBB2226C12F0040F1A +:1037900001D0282B18D010BD202284F83D20002213 +:1037A00022645A6912F0400F05D01A69636A1A70D0 +:1037B000636A013363622268136823F001031360B4 +:1037C0002046FFF7E4FED4E7074BE36200232363C0 +:1037D000202284F83D2084F83E302046FFF765FC27 +:1037E000D9E700BF913500080000FFFF30B583B076 +:1037F000044690F83D50EDB20268536823F4E0634C +:1038000053600023019303685A6901921A6842F0D9 +:1038100001021A60019B0268136823F4806313603D +:1038200003685A6812F4006F38D0222D21D02A2D57 +:103830001FD0426B1268526892B24285428D92B29A +:103840001AB1026C42F0040202645A6822F4006267 +:103850005A60606BFEF7E8FE01281FD0636B444A94 +:103860001A65606BFEF7DFFDC0B1606B036D9847B2 +:1038700014E0A26B1268526892B26285628D92B2B5 +:103880001AB1226C42F0040222645A6822F40062E7 +:103890005A60A06BFEF7C8FE012842D1638D9BB22F +:1038A00033B323685A6912F0040F0AD01A69636AA5 +:1038B0001A70636A01336362638D9BB2013B9BB2F2 +:1038C000638523685A6912F0400F0AD01A69636A47 +:1038D0001A70636A01336362638D9BB2013B9BB2D2 +:1038E0006385638D9BB21BB1236C43F00403236497 +:1038F000236C13BB2A2D25D094F83D30DBB2282B46 +:1039000029D0236B222B01D0222D19D10023236330 +:10391000202284F83D2084F83E302046FFF770FBDB +:103920000EE0A36B124A1A65A06BFEF77CFD00281F +:10393000B4D0A06B036D9847B0E72046FFF79AFE1E +:1039400003B030BD00232363282384F83D30204694 +:10395000FFF756FBD0E7074BE362002323632022E7 +:1039600084F83D2084F83E302046FFF79EFBE7E7D1 +:10397000913500080000FFFFF8B50446026855685D +:10398000C66A90F83E30DBB290F83D10C8B2102BFA +:1039900013D0402B11D0236C002B7AD05369002117 +:1039A00013F0020F78D015F4007F75D0236C03B1AB +:1039B00091692046FFF74CFBF8BDD2F818C0516959 +:1039C00011F0010705D1B6F52A0FF5D0B6F12A4F4F +:1039D000F2D017B115F4007F29D111F0080F02D0F1 +:1039E00015F4007F2AD111F0020F02D015F4007FE8 +:1039F00028D11CF0040F31D0526812F4006FDBD1D3 +:103A000011F0800F05D015F4806F02D011F0040F73 +:103A10001CD011F0040FCFD015F4007FCCD021289A +:103A200018D0402BC8D12046FFF7DAFBC4E7204668 +:103A3000FFF7D0F92046FFF71DF8BDE72046FFF756 +:103A40006DF8B9E72046FFF77EF8B5E72046FFF7A7 +:103A500026FCB1E72046FFF774FBADE7536813F48B +:103A6000006FA9D111F0400F05D015F4806F02D07E +:103A700011F0040F09D011F0040F9DD015F4007F50 +:103A80009AD02046FFF773FC96E72046FFF704FD27 +:103A900092E79169536983E713F0100F02D015F490 +:103AA000007F18D121281AD0292818D013F0400FF0 +:103AB00005D015F4806F02D013F0040F28D013F056 +:103AC000040F3FF479AF15F4007F3FF475AF204643 +:103AD000FFF74CF970E72046FFF788FE6CE713F01C +:103AE000800F05D015F4806F02D013F0040F0BD0B7 +:103AF00013F0040F3FF460AF15F4007F3FF45CAFA8 +:103B00002046FFF723F957E72046FFF753FA53E71C +:103B10002046FFF776FA4FE7F8B5044603685D697B +:103B20005F6890F83E20D2B215F4807F07D017F47A +:103B3000807F3CD06FF480715961012600E000263F +:103B400015F4007F08D017F4807F05D046F00206F8 +:103B500023686FF40071596115F4806F19D017F460 +:103B6000807F16D0638D99B294F83D30DBB2206B24 +:103B7000202A1ED023686FF48061596146F0040644 +:103B8000102A01D0402A04D12268136843F400733C +:103B9000136015F4006F08D017F4807F05D046F04D +:103BA000080623686FF400625A6186B9F8BD0026E2 +:103BB000C6E70029DED1212B05D0292B03D0282BE5 +:103BC000D8D12128D6D12046FFF770FAE1E7236C3F +:103BD0001E4326642046FFF74DFDE7E72DE9F0433D +:103BE00083B0D0F8008001EBC10300EB8303DA6DF2 +:103BF0005B6D9A4254D807460C469B1A01EBC102F2 +:103C000000EB8202926C9A4200D31A4602F1030939 +:103C10004FEA990915E006F103094FEA990904EB07 +:103C2000C40507EB8505E96C3B7C0093B3B2E2B2B7 +:103C3000404603F0BCFBEB6C3344EB64EB6D334468 +:103C4000EB6508EB441303F510639B699BB24B458E +:103C500012D304EBC40207EB8202D16D536D99427B +:103C60000AD24BB15B1A04EBC40207EB8202966CDA +:103C70009E42D0D31E46CEE704EBC40007EB80077C +:103C80007A6DFB6D9A420FD804F00F040123A34014 +:103C9000D8F8344824EA0304C8F83448002000E087 +:103CA000012003B0BDE8F0830020FAE770B58AB0C8 +:103CB000002800F090800546046890F8BD343BB3BE +:103CC000032385F8BD34E36B13F4807F01D1002317 +:103CD0002B61286803F086F82C4654F8106BEC46EC +:103CE0000FCCACE80F000FCCACE80F0094E8030059 +:103CF0008CE803002B1D0ECB304602F0B5FF0446C6 +:103D000058B1022385F8BD34012420460AB070BDA5 +:103D100080F8BC3407F0D4FED2E70021286803F015 +:103D20005DFD234616E003EBC30205EB8202012191 +:103D300082F83D1082F83C30A2F84430002182F82D +:103D400040109164D16403EBC30205EB820251651C +:103D50000133DBB269688B42E5D316E004EBC403A0 +:103D600005EB8303002283F87D2283F87C4283F8ED +:103D70008022C3F88822C3F88C2204EBC40305EB2D +:103D80008303C3F894220134E4B2A142E6D82C465E +:103D900054F8106BEC460FCCACE80F000FCCACE83D +:103DA0000F0094E803008CE803002B1D0ECB304677 +:103DB00003F074F8044620B1022385F8BD340124D1 +:103DC000A3E7002385F83830012385F8BD3428683F +:103DD00003F0C1FC99E7012497E7026890F8BC342E +:103DE000012B19D010B50446012380F8BC34836A36 +:103DF000012B09D0206802F0EFFF206803F09DFC42 +:103E0000002084F8BC0410BD8369012BF2D0936BB1 +:103E100043F480339363EDE70220704770B50446A6 +:103E20000D460068066C00EB411303F530639A6899 +:103E30002169012911D038498E4256D03DB905EB90 +:103E4000C50304EB8303D3F89432002B5ED0E9B2B0 +:103E5000204607F07FFE002070BD12F0080F09D049 +:103E60002E498E42F7D912F4004FF4D04FF400429D +:103E70009A60F0E712F0200F02D020229A60EAE761 +:103E800012F0280FE7D125498E4206D912F4004FCF +:103E900003D04FF400429A60DDE705EBC50204EB66 +:103EA0008202D2F898121B69C3F31203CB1AC2F82C +:103EB0009C327DB905EBC50204EB8202D2F8942254 +:103EC0006AB105EBC50204EB8202D2F88C120B44F6 +:103ED000C2F88C32E9B2204607F03CFEBBE704F2A0 +:103EE000C442012103F0BCFCF4E712F4004F03D0FC +:103EF0004FF400429A60AEE712F0200F01D020226A +:103F00009A60E9B2204607F025FEA4E704F2C44215 +:103F1000002103F0A5FC9AE70A31544F0A30544FB0 +:103F200038B5044603681D6C03EB4113D3F8081B36 +:103F30000E4A954207D903F5306311F4004F02D0C1 +:103F40004FF400429A60204607F0FCFD074B9D426B +:103F500002D92369012B01D0002038BD04F2C442EC +:103F60000121206803F07CFCF6E700BF0A30544FC3 +:103F700090F8BC34012B0DD010B50446012380F815 +:103F8000BC3480F83810006803F0C7FB002084F8C8 +:103F9000BC0410BD0220704738B505468C4611F0B0 +:103FA000800F29D101F00F0E0EEBCE04A40004F512 +:103FB0001E740444211D0EEBCE0E00EB8E0E00206D +:103FC0008EF87D020CF00F0C81F800C0CA600B71F6 +:103FD0004A780AB1A1F808C0022B1DD095F8BC346C +:103FE000012B1CD0012385F8BC34286803F02FF87E +:103FF000002085F8BC0438BD01F00F0000EBC001C3 +:10400000890038312944043100EBC00005EB800001 +:10401000012480F83D40D5E700234B71DEE7022004 +:10402000E9E710B504460A4611F0800F20D101F0EF +:104030000F0000EBC0039B0003F51E732344191D02 +:1040400000EBC00004EB8000002380F87D3202F01A +:104050000F020A7094F8BC34012B19D0012384F8A4 +:10406000BC34206803F042F8002084F8BC0410BD82 +:1040700001F00F0000EBC0039B0038332344191DEF +:1040800000EBC00004EB8000012380F83D30DEE748 +:104090000220ECE710B501F00F0404EBC401890025 +:1040A00001F51E710144043104EBC40C00EB8C0CCF +:1040B000CCF88C22CCF894320023CCF89C328CF8CB +:1040C0007D328CF87C420369012B06D064B9DAB2E8 +:1040D000006803F07BF8002010BD04EBC40C00EB7B +:1040E0008C0CCCF89022F1E7DAB2006803F076F994 +:1040F000F1E701F00F0101EBC10100EB8101D1F803 +:104100009C02704710B501F00F0404EBC401890054 +:1041100038310144043104EBC40C00EB8C0CCCF8B6 +:104120004C20CCF854300023CCF85C3001238CF8C0 +:104130003D308CF83C400369012B06D064B9DAB2FB +:10414000006803F043F8002010BD04EBC40C00EB42 +:104150008C0CCCF85020F1E7DAB2006803F03EF99D +:10416000F1E738B501F00F054268954239D80446A9 +:104170000B4611F0800F1FD101EBC101890001F541 +:104180001E710144043103EBC30300EB83030022DF +:1041900083F87D2201238B700D7094F8BC34012BC1 +:1041A00021D0012384F8BC34206803F05BFA8DB180 +:1041B000002084F8BC0438BD05EBC5018900383106 +:1041C0000144043105EBC50300EB8303012283F8AE +:1041D0003D20DFE704F2C442217C206803F040FB6D +:1041E000E6E70120E7E70220E5E701F00F03426878 +:1041F000934231D810B5044611F0800F1ED103EB65 +:10420000C301890001F51E710144043103EBC302AF +:1042100000EB8202002082F87D0200228A700B707F +:1042200094F8BC34012B19D0012384F8BC342068E5 +:1042300003F045FA002084F8BC0410BD03EBC30171 +:10424000890038310144043103EBC30200EB8202E0 +:10425000012082F83D00E0E7012070470220ECE7F2 +:1042600008B511F0800F0CD101F00F0101EBC10175 +:10427000890001F51E7101440431006803F038F82B +:1042800008BD01F00F0101EBC10189003831014483 +:104290000431F2E72DE9F04F83B004460568284663 +:1042A00003F098FA10B103B0BDE8F08F064620681D +:1042B00003F05FFA0028F6D005F50067BB68C3F38A +:1042C0000D23C4F8FC34206803F053FA10F0020FF9 +:1042D00004D02268536903F002035361206803F09D +:1042E00048FA10F0100F13D02268936923F01003DE +:1042F0009361D5F8208008F00F09C8F34343022BDF +:104300004BD0062B6FD02268936943F01003936162 +:10431000206803F02EFA10F4002F76D1206803F005 +:1043200028FA10F4802F40F0E080206803F021FA92 +:104330000028C0F26381206803F01BFA10F4006FBC +:1043400009D0BB6813F0010F40F0708122685369F7 +:1043500003F400635361206803F00BFA10F4805FEC +:1043600040F06881206803F004FA10F4005F40F028 +:10437000B581206803F0FDF910F0080F40F0C68108 +:10438000206803F0F6F910F0800F00F0D981AB69D6 +:1043900023F08003AB610126C2E147F6F07318EA0F +:1043A000030FB0D04FEA181B4FEAC903019309EB82 +:1043B000C90A04EB8A0AC8F30A12DAF88C122846F2 +:1043C00003F026F9CBF30A0BDAF88C325B44CAF817 +:1043D0008C32019B4B4404EB8303D3F89C325B4447 +:1043E000CAF89C328FE7082204F2C441284603F041 +:1043F0000FF9C8F30A1809EBC90204EB8202D2F8DC +:104400009C324344C2F89C327DE7206803F0B5F942 +:104410008046B14635E005EB49130122C3F8082B6D +:1044200049462046FFF7FAFC3CE005EB4913082219 +:10443000C3F8082B49462046FFF772FD35E009EB2B +:10444000C90304EB830393F87F32012B41D005EBC2 +:1044500049130222C3F8082B1AF0200F04D005EBF1 +:1044600049132022C3F8082B1AF4005F05D005EB8E +:1044700049134FF40052C3F8082B09F101094FEA20 +:104480005808B8F1000F3FF449AF18F0010FF4D00D +:104490005FFA89FB5946206803F07FF9824610F0E5 +:1044A000010FB8D11AF0080FBFD11AF0100F04D0C5 +:1044B00005EB49131022C3F8082B1AF0020FCBD0DA +:1044C0006B6913F0800FBAD07B6843F480637B6024 +:1044D000B5E709EBC90304EB8303002283F87F22CD +:1044E0005946204607F088FBB1E7206803F04DF9F4 +:1044F0008046B14625E05946204607F037FB1AF0C2 +:10450000080F04D005EB49130822C3F808291AF054 +:10451000100F04D005EB49131022C3F808291AF034 +:10452000400F04D005EB49134022C3F808291AF0C4 +:10453000020F40D11AF0800F5BD109F101094FEA57 +:104540005808B8F1000F3FF4F0AE18F0010FF4D0A6 +:104550005FFA89FB5946206803F028F9824610F07B +:10456000010FCCD009F00F03012101FA03F27B6B9C +:1045700023EA02037B6305EB4913C3F80819236997 +:104580008B42B8D109EBC90304EB8303996CDA6C55 +:104590000A44DA64B9F1000FADD109EBC90304EBA9 +:1045A00083035B6D002BA6D104F2C4420121206875 +:1045B00003F056F99FE74946284602F019FC09EB3B +:1045C000C90304EB830393F83F30012B05D005EBBF +:1045D00049130222C3F80829ACE709EBC90304EB2D +:1045E0008303002283F83F205946204607F00AFB48 +:1045F000EDE749462046FFF7F1FA9EE77B6823F096 +:1046000001037B6094F8F434012B08D0204607F0B6 +:10461000EDFA2268536903F0004353618BE60021F1 +:1046200084F8F414204600F041F9F2E7204607F040 +:10463000C5FA8BE67B6823F001037B6010212068BC +:1046400002F0D6FB1AE005EB46134FF67F31C3F8B4 +:104650000819D3F8002922F40012C3F80029C3F87E +:10466000081BD3F8002B22F40012C3F8002BD3F858 +:10467000002B42F00062C3F8002B01366368B3429E +:10468000E1D8FB6943F00113FB61236BDBB1D7F881 +:10469000843043F00B03C7F884307B6C43F00B038A +:1046A0007B64D5F8003823F4FE63C5F8003804F2C3 +:1046B000C442217C206803F0D3F82268536903F4D4 +:1046C000805353614EE67B6943F4005343F02B0360 +:1046D0007B613B6943F00B033B61E2E7206803F039 +:1046E000AEF8206802F0A2FCE060266800F0DEFB75 +:1046F0000146227B304602F0FDFA204607F047FAD9 +:104700002268536903F40053536132E6204607F0F0 +:1047100038FA2268536903F00803536130E6013622 +:104720006368B3420CD906EBC60304EB830393F82A +:104730007F32012BF3D1F1B22046FFF791FDEEE776 +:10474000206803F016F810F4801F27D1206803F0CA +:1047500010F810F4001F5BD0012328E001366368D5 +:10476000B3421DD905EB4613D3F8002906EBC60367 +:1047700004EB830393F84030012BEFD1002AEDDAEC +:1047800006EBC60304EB8303012283F83F2066F0A7 +:104790007F01C9B22046FFF763FDDFE70126DEE7B0 +:1047A0002268536903F480135361CFE701336268D1 +:1047B0009A4228D905EB4312D2F8001B03EBC3023F +:1047C00004EB820292F88022012AEFD10029EDDA6F +:1047D00001F48031D4F8FC2402F001029142E5D1C9 +:1047E00003EBC30204EB8202012182F87F12AA6963 +:1047F00042F08002AA616A6912F0800FD6D17B680C +:1048000043F400737B602268536903F4001353611F +:10481000206802F0AEFF10F0804F10D1206802F047 +:10482000A8FF10F0040F3FF43EAD23685D6815F05B +:10483000040F0DD1226853682B43536033E52046A3 +:1048400007F0E6F92268536903F080435361E5E716 +:10485000204607F0E3F9EDE710B40468606A31B967 +:1048600040EA0240A06200205DF8044B70478C468D +:10487000A36A00EB1340002308E003F1400104EBBE +:104880008101496800EB11400133DBB20CF1FF31CB +:104890008B42F2D340EA02400CF13F0104EB81016C +:1048A0004860E0E7036859620020704770470000E5 +:1048B000002800F0E08170B582B00446036813F070 +:1048C000010F3BD09F4B9B6803F00C03042B2CD0B3 +:1048D0009C4B9B6803F00C03082B21D06368B3F555 +:1048E000803F4FD0B3F5A02F52D0964B1A6822F4D8 +:1048F00080321A601A6822F480221A606368002BE2 +:1049000050D0FCF7D9FD05468E4B1B6813F4003FD1 +:1049100014D1FCF7D1FD401B6428F5D90320B1E187 +:10492000884B5B6813F4800FD8D0864B1B6813F458 +:10493000003F03D06368002B00F09F81236813F0D1 +:10494000020F54D07F4B9B6813F00C0F3ED07D4B71 +:104950009B6803F00C03082B33D0E368002B68D06E +:10496000794B01221A60FCF7A7FD0546754B1B68C1 +:1049700013F0020F54D1FCF79FFD401B0228F5D91C +:1049800003207FE16F4A136843F480331360B5E777 +:104990006C4B1A6842F480221A601A6842F4803222 +:1049A0001A60ABE7FCF788FD0546664B1B6813F4FD +:1049B000003FC3D0FCF780FD401B6428F5D90320DD +:1049C00060E1604B5B6813F4800FC6D15D4B1B68E0 +:1049D00013F0020F03D0E368012B40F05081594AD5 +:1049E000136823F0F803216943EAC10313602368C5 +:1049F00013F0080F42D063696BB3534B0122C3F825 +:104A0000802EFCF759FD05464E4B5B6F13F0020FED +:104A100034D1FCF751FD401B0228F5D9032031E1C8 +:104A2000484A136823F0F803216943EAC10313607D +:104A3000DDE7454B00221A60FCF73EFD0546414B81 +:104A40001B6813F0020FD2D0FCF736FD401B022882 +:104A5000F5D9032016E13C4B0022C3F8802EFCF769 +:104A60002BFD0546374B5B6F13F0020F06D0FCF7AA +:104A700023FD401B0228F5D9032003E1236813F02E +:104A8000040F77D02F4B1B6C13F0805F33D10023C2 +:104A900001932C4B1A6C42F080521A641B6C03F089 +:104AA00080530193019B0125284B1B6813F4807FE1 +:104AB00023D0A368012B34D0052B38D0214B1A6F9B +:104AC00022F001021A671A6F22F004021A67A36823 +:104AD000002B3DD0FCF7F0FC06461A4B1B6F13F081 +:104AE000020F46D1FCF7E8FC801B41F28833984264 +:104AF000F3D90320C6E00025D6E7144A136843F42F +:104B000080731360FCF7D8FC0646104B1B6813F447 +:104B1000807FCED1FCF7D0FC801B0228F5D9032082 +:104B2000B0E0084A136F43F001031367CFE7054B6A +:104B30001A6F42F004021A671A6F42F001021A67F4 +:104B4000C5E700BF00380240000047420070004047 +:104B5000FCF7B2FC0646524B1B6F13F0020F08D055 +:104B6000FCF7AAFC801B41F288339842F3D903205A +:104B700088E0EDB9A369002B00F08380484A926871 +:104B800002F00C02082A51D0022B17D0454B00220C +:104B90001A66FCF791FC0446414B1B6813F0007F3A +:104BA00042D0FCF789FC001B0228F5D9032069E0FC +:104BB0003B4A136C23F080531364DBE7394B00222C +:104BC0001A66FCF779FC0546354B1B6813F0007F2D +:104BD00006D0FCF771FC401B0228F5D9032051E0F8 +:104BE000E369226A1343626A43EA8213A26A5208A3 +:104BF000013A43EA0243E26A43EA0263284A536005 +:104C0000284B01221A66FCF757FC0446244B1B680C +:104C100013F0007F06D1FCF74FFC001B0228F5D9EA +:104C200003202FE000202DE000202BE0012B2BD0D3 +:104C30001B4B5B6803F48001E269914226D103F0CB +:104C40003F02216A8A4223D1616A47F6C0721A4044 +:104C5000B2EB811F1ED103F44031A26A5208013A1F +:104C6000B1EB024F18D103F07063E26AB3EB026F4D +:104C700014D1002006E001207047012002E001204D +:104C800000E0002002B070BD0120FBE70120F9E741 +:104C90000120F7E70120F5E70120F3E70120F1E724 +:104CA000003802400000474208B5254B9B6803F0DE +:104CB0000C03042B3FD0082B3FD1214B5A6802F044 +:104CC0003F025B6813F4800F12D01D4B5968C1F38B +:104CD00088111C480023A1FB0001FBF75FFF184B64 +:104CE0005B68C3F3014301335B00B0FBF3F025E0E5 +:104CF000134B5968C1F3881C4FEA4C11B1EB0C00FF +:104D00006EEB0E0E4FEA8E1343EA90638101091A8F +:104D100063EB0E03DB0043EA5173C90011EB0C0C8B +:104D200043F10003990200234FEA8C2041EA9C5191 +:104D3000FBF734FFD3E7034800E0034808BD00BF9A +:104D400000380240001BB7000024F400002800F0E7 +:104D50009B8070B50D4604464F4B1B6803F007035C +:104D60008B4208D2CBB24C4A1370136803F007038E +:104D70008B4240F08B80236813F0020F17D013F0A2 +:104D8000040F04D0454A936843F4E05393602368CA +:104D900013F0080F04D0414A936843F460439360D2 +:104DA0003E4A936823F0F003A1680B4393602368A5 +:104DB00013F0010F32D06368012B21D09A1E012A13 +:104DC00025D9364A126812F0020F61D033498A6839 +:104DD00022F0030213438B60FCF76EFB06462F4B59 +:104DE0009B6803F00C036268B3EB820F16D0FCF7EC +:104DF00063FB801B41F288339842F0D9032042E0E4 +:104E0000264A126812F4003FE0D101203BE0234A19 +:104E1000126812F0007FD9D1012034E01E4B1B68CC +:104E200003F00703AB4207D9EAB21B4B1A701B68A9 +:104E300003F00703AB422DD1236813F0040F06D013 +:104E4000164A936823F4E053E1680B4393602368A8 +:104E500013F0080F07D0114A936823F460432169C7 +:104E600043EAC1039360FFF71FFF0C4B9B68C3F33A +:104E700003130B4AD35CD8400A4B18600A4B1868DE +:104E800005F0EEFE002070BD012070470120FAE71A +:104E90000120F8E70120F6E7003C0240003802401C +:104EA000E8E201089400002004000020014B18688B +:104EB000704700BF9400002008B5FFF7F7FF044BD0 +:104EC0009B68C3F38223034AD35CD84008BD00BF6C +:104ED00000380240F8E2010808B5FFF7E7FF044B8D +:104EE0009B68C3F34233034AD35CD84008BD00BF7C +:104EF00000380240F8E201080F2303600B4B9A6868 +:104F000002F0030242609A6802F0F00282609A683E +:104F100002F4E052C2609B68DB0803F4E0530361D3 +:104F2000034B1B6803F007030B6070470038024017 +:104F3000003C024030B583B00446036813F0050F0F +:104F400006D1236813F0020F2ED1002003B030BD2C +:104F50004A4B00229A66FCF7AFFA0546484B1B689D +:104F600013F0006F06D0FCF7A7FA431B022BF5D90C +:104F70000320EBE76268A3681B0743EA8213404AF9 +:104F8000C2F884303D4B01229A66FCF795FA05463B +:104F90003B4B1B6813F0006FD3D1FCF78DFA431B1A +:104FA000022BF5D90320D1E700230193344B1A6C6F +:104FB00042F080521A641B6C03F080530193019BF2 +:104FC000304A136843F480731360FCF775FA0546A2 +:104FD0002C4B1B6813F4807F06D1FCF76DFA431B42 +:104FE000022BF5D90320B1E7254B1B6F13F4407357 +:104FF00014D0E26802F440729A420FD0204B1A6F2C +:1050000022F440721D490120C1F8400E0020C1F871 +:10501000400E1A671B6F13F0010F13D1E36803F4FE +:105020004072B2F5407F1ED0154A936823F4F813FE +:10503000936013490B6FE268C2F30B0213430B67D3 +:10504000002083E7FCF738FA05460D4B1B6F13F081 +:10505000020FE3D1FCF730FA401B41F2883398424B +:10506000F3D9032072E706498A6822F4F81223F084 +:10507000704323F4407313438B60DAE70000474228 +:10508000003802400070004098B110B504464379E2 +:105090005BB1022363712268136843F00403136059 +:1050A000012363710020A06010BD037105F0FCFBBB +:1050B000EFE70120704738B504460268D36823F053 +:1050C000A003D360FCF7F8F905462368DB6813F00A +:1050D000200F07D1FCF7F0F9401BB0F57A7FF4D927 +:1050E000032000E0002038BD70B50368DA6812F0D4 +:1050F000400F02D00025284670BD0446DA6842F011 +:105100008002DA60FCF7D8F9064600252368DB68E0 +:1051100013F0400FEFD1002DEDD1FCF7CDF9831B3B +:10512000B3F57A7FF2D9042363770125EEE70268AD +:10513000D36823F08003D36003689B6813F0200FCB +:1051400001D00020704710B50446FFF7B4FF10B13E +:1051500004236377012010BD002841D010B5044618 +:10516000437FE3B1022363772368CA225A6223682C +:1051700053225A622046FFF7B7FFA0B158B9226800 +:10518000136C23F4802313642268136CA1690B430E +:105190001364012363772368FF225A6210BD0377EB +:1051A00005F0B4FBDEE72268936823F4E00323F004 +:1051B0004003936021688A686368206903436069DB +:1051C000034313438B602368E2681A612268136902 +:1051D000A16843EA014313612046FFF7A8FFCDE72A +:1051E000012070472DE9F04782B0054688461746F2 +:1051F0001E46FCF761F90A9B1B1A03EB0609FCF734 +:105200005BF982462B4B1B68C3F3CB3309FB03F3DB +:1052100001932B689C6838EA04030CBF4FF0010C23 +:105220004FF0000CBC4540D0B6F1FF3FF1D0FCF789 +:1052300043F9A0EB0A0048450AD2B9F1000F07D0A4 +:10524000019A02B14A46019B013B01939146E0E776 +:105250002A68536823F0E00353606B68B3F5827FDC +:105260000BD0AB6AB3F5005F14D0012385F8513041 +:10527000002385F85030032018E0AB68B3F5004FE9 +:1052800002D0B3F5806FECD12A68136823F0400395 +:105290001360E6E72A68136823F4005313602A6852 +:1052A000136843F400531360DFE7002002B0BDE849 +:1052B000F08700BF9400002010B584B00446164B60 +:1052C0001868164BA3FB0030400D4FF47A7303FBB4 +:1052D00000F003906368B3F5827F0BD0039BBBB1F2 +:1052E000039B013B039323689B6813F0800FF5D168 +:1052F00000200EE000920B46002280212046FFF79E +:1053000071FF30B1636D43F020036365032000E05B +:10531000002004B010BD00BF94000020819F5E16E5 +:1053200000285AD010B50446436A33B94368B3F530 +:10533000827F05D00023C36102E000230361436143 +:105340000023A36294F85130002B40D0022384F84C +:1053500051302268136823F040031360636803F43C +:105360008273A26802F404421343E26802F400620A +:105370001343226902F002021343626902F0010240 +:105380001343A26902F400721343E26902F0380287 +:105390001343226A02F080021343A26A02F400520D +:1053A000216813430B60638B03F00403626A02F00D +:1053B0001002216813434B602268D36923F4006311 +:1053C000D36100206065012384F8513010BD84F85A +:1053D0005030204605F006FBB8E7012070472DE964 +:1053E000F04383B01F460A9D90F85030012B00F027 +:1053F0001081044688469146012380F85030FCF71E +:105400005BF8064694F85130DBB26268012B0AD093 +:10541000B2F5827F40F0E380A268002A40F0E98084 +:10542000042B40F0E880B8F1000F00F0E680B9F1FD +:10543000000F00F0E480002F00F0E38094F851307A +:10544000DBB2042B02D0052384F8513000236365BE +:10545000C4F83890E787A787C4F83080E786A78626 +:105460002364636423681A6812F0400F03D11A683A +:1054700042F040021A60E368B3F5006F11D0636830 +:105480000BB1012F0BD1226B236812781A73236B97 +:1054900001332363E38E9BB2013B9BB2E38601277A +:1054A0006BE063680BB1012F0BD1226B236812886C +:1054B000DA60236B02332363E38E9BB2013B9BB222 +:1054C000E38601271CE023689A6812F0010F0ED0D2 +:1054D000E28F92B25AB1DA68A36B1A80A36B0233DF +:1054E000A363E38F9BB2013B9BB2E3870127FBF7EA +:1054F000E3FF801BA84203D3B5F1FF3F40F0838058 +:10550000E38E9BB21BB9E38F9BB2002B53D0236871 +:105510009A6812F0020FD6D0E28E92B2002AD2D050 +:10552000002FD0D0226B1288DA60236B0233236302 +:10553000E38E9BB2013B9BB2E3860027C3E723685F +:105540009A6812F0010F0ED0E28F92B25AB1DA6867 +:10555000A36B1A70A36B0133A363E38F9BB2013B70 +:105560009BB2E3870127FBF7A7FF831BAB4202D364 +:10557000B5F1FF3F49D1002D49D0E38E9BB213B95D +:10558000E38F9BB2BBB123689A6812F0020FD6D0AA +:10559000E28E92B2002AD2D0002FD0D0226B1278A5 +:1055A0001A73236B01332363E38E9BB2013B9BB2DF +:1055B000E3860027C3E7324629462046FFF77CFEF4 +:1055C00048B9A36863B901932368DA6801929B68BC +:1055D0000193019B04E020236365012000E0022089 +:1055E000012384F85130002384F8503003B0BDE823 +:1055F000F0830220F4E70220F2E70120F0E7012027 +:10560000EEE70120ECE70320EAE70320E8E70320C8 +:10561000E6E70220EAE7704730B585B00446026845 +:1056200051689368C3F3801013F0400F05D113F055 +:10563000010F02D011F0400F69D113F0020F02D018 +:1056400011F0800F67D1C3F3401513F0200F03D181 +:1056500010B913F4807F61D011F0200F5ED078B1C3 +:1056600094F85100C0B203285AD0606D40F0040095 +:10567000606500200090D0680090906800900098CD +:1056800065B1606D40F00100606500200290906897 +:105690000290106820F040001060029A13F4807F9E +:1056A00009D0636D43F00803636500230393236807 +:1056B0009B680393039B636D002B2FD02268536874 +:1056C00023F0E0035360012384F8513011F0030FFD +:1056D0002ED02268536823F003035360E36C4BB170 +:1056E000154A1A65E06CFCF79EFE18B1636D43F035 +:1056F00040036365A36C8BB10F4A1A65A06CFCF77D +:1057000092FE58B1636D43F04003636506E0236C7D +:105710002046984702E0636C2046984705B030BDAC +:1057200000230193D368019393680193019BF5E7EC +:105730002046FFF770FFF1E73D57000808B5806B82 +:105740000023C387C386FFF766FF08BD30B4036A32 +:1057500023F001030362036A4268846924F073043E +:105760000D682C4323F0020C8B6843EA0C03104DA8 +:10577000A84203D005F58065A84205D123F00803AF +:10578000CD682B4323F00403094DA84203D005F54F +:105790008065A84205D122F440724D692A438D6983 +:1057A0002A43426084614A684263036230BC7047A6 +:1057B0000000014030B4036A23F480730362036A7B +:1057C0004268C46924F0730C0C6844EA0C0523F4A5 +:1057D00000738C6843EA0423114CA04203D004F503 +:1057E0008064A04206D123F40063CC6843EA04231A +:1057F00023F480630A4CA04203D004F58064A042E5 +:1058000007D122F440524C6942EA04128C6942EA00 +:1058100004124260C5614A68C263036230BC7047CB +:105820000000014030B4036A23F480530362036A2A +:105830004468C26922F4E6420D6842EA052223F474 +:1058400000538D6843EA0533094DA84203D005F59E +:105850008065A84204D124F480444D6944EA85144B +:105860004460C2614A680264036230BC704700BF92 +:105870000000014010B4036A046A24F001040462C9 +:10588000846924F0F00C4CEA021223F00A030B4363 +:10589000826103625DF8044B704710B4046A24F01F +:1058A000100404628469036A24F4704C4CEA0232E6 +:1058B00023F0A00343EA0113826103625DF8044B05 +:1058C0007047836823F070030B4343F00703836042 +:1058D0007047000090F83D30DBB2012B37D1022336 +:1058E00080F83D300268D36843F00103D360036859 +:1058F000194A934220D0B3F1804F1DD0A2F57C42CB +:10590000934219D002F58062934215D002F580626D +:10591000934211D002F5784293420DD002F57052B5 +:10592000934209D0A2F59432934205D01A6842F00E +:1059300001021A60002070479A6802F00702062AE6 +:1059400007D01A6842F001021A6000207047012057 +:1059500070470020704700BF00000140704770474B +:1059600070477047704710B5044603681A6912F013 +:10597000020F11D0DA6812F0020F0DD06FF00202A0 +:105980001A610123037703689B6913F0030F70D03A +:10599000FFF7E7FF0023237723681A6912F0040F4B +:1059A00012D0DA6812F0040F0ED06FF004021A6100 +:1059B0000223237723689B6913F4407F5FD020463E +:1059C000FFF7CFFF0023237723681A6912F0080F2F +:1059D00012D0DA6812F0080F0ED06FF008021A61C8 +:1059E000042323772368DB6913F0030F4ED020468E +:1059F000FFF7B7FF0023237723681A6912F0100F0F +:105A000012D0DA6812F0100F0ED06FF010021A6187 +:105A1000082323772368DB6913F4407F3DD02046B9 +:105A2000FFF79FFF0023237723681A6912F0010F05 +:105A300003D0DA6812F0010F36D123681A6912F028 +:105A4000800F03D0DA6812F0800F34D123681A690E +:105A500012F0400F03D0DA6812F0400F32D1236801 +:105A60001A6912F0200F03D0DA6812F0200F30D13B +:105A700010BDFFF775FF204608F0D6F88AE72046EC +:105A8000FFF76EFF204608F0CFF89BE72046FFF7B0 +:105A900067FF204608F0C8F8ACE72046FFF760FF34 +:105AA000204608F0C1F8BDE76FF001021A612046F8 +:105AB00004F040FEC1E76FF080021A61204600F05A +:105AC00059FBC3E76FF040021A612046FFF74AFF17 +:105AD000C5E76FF020021A61204600F04AFBC7E7D5 +:105AE0000368304A904212D0B0F1804F0FD0A2F537 +:105AF0007C4290420BD002F58062904207D002F5C2 +:105B00008062904203D002F57842904203D123F0A4 +:105B100070034A681343234A90422AD0B0F1804F61 +:105B200027D0A2F57C42904223D002F580629042B9 +:105B30001FD002F5806290421BD002F5784290425D +:105B400017D002F57052904213D002F58062904255 +:105B50000FD002F5806290420BD0A2F598329042AD +:105B600007D002F58062904203D002F58062904235 +:105B700003D123F44073CA68134323F080034A69B6 +:105B8000134303608B68C3620B688362054B9842C2 +:105B900003D003F58063984201D10B6903630123AD +:105BA000436170470000014040B310B5044690F8CF +:105BB0003D30F3B1022384F83D30214651F8040B07 +:105BC000FFF78EFF012384F8463084F83E3084F8D6 +:105BD0003F3084F8403084F8413084F8423084F813 +:105BE000433084F8443084F8453084F83D30002058 +:105BF00010BD80F83C3005F0E3F9DBE70120704789 +:105C000040B310B5044690F83D30F3B1022384F858 +:105C10003D30214651F8040BFFF762FF012384F861 +:105C2000463084F83E3084F83F3084F8403084F8C1 +:105C3000413084F8423084F8433084F8443084F8AA +:105C4000453084F83D30002010BD80F83C30FFF72F +:105C500085FEDBE70120704740B310B5044690F89D +:105C60003D30F3B1022384F83D30214651F8040B56 +:105C7000FFF736FF012384F8463084F83E3084F87D +:105C80003F3084F8403084F8413084F8423084F862 +:105C9000433084F8443084F8453084F83D300020A7 +:105CA00010BD80F83C30FFF75AFEDBE7012070475B +:105CB00030B4036A23F010030362036A4468826904 +:105CC00022F4E6420D6842EA052223F020038D68A3 +:105CD00043EA0513114DA84203D005F58065A8429B +:105CE00006D123F08003CD6843EA051323F0400377 +:105CF0000A4DA84203D005F58065A84207D124F4D7 +:105D000040644D6944EA85048D6944EA8504446031 +:105D100082614A688263036230BC704700000140C0 +:105D200090F83C30012B28D010B50446012380F8B0 +:105D30003C300C2A1CD8DFE802F0071B1B1B0C1B95 +:105D40001B1B111B1B1B16000068FFF7FFFC00202C +:105D50000FE00068FFF7ACFF00200AE00068FFF7E3 +:105D600029FD002005E00068FFF75CFD002000E051 +:105D70000120002384F83C3010BD0220704738B564 +:105D800090F83C30012B66D004460D46012380F884 +:105D90003C300C2A5AD8DFE802F0075959591B59F0 +:105DA00059593059595944000068FFF7CFFC22680F +:105DB000936943F0080393612268936923F0040315 +:105DC00093612268936929690B43936100203EE047 +:105DD0000068FFF76DFF2268936943F400639361E5 +:105DE0002268936923F48063936122689369296927 +:105DF00043EA01239361002029E00068FFF7DAFC01 +:105E00002268D36943F00803D3612268D36923F081 +:105E10000403D3612268D36929690B43D36100204D +:105E200015E00068FFF7FEFC2268D36943F40063C5 +:105E3000D3612268D36923F48063D3612268D36974 +:105E4000296943EA0123D361002000E001200023F7 +:105E500084F83C3038BD0220FCE710B4846824F498 +:105E60007F4C42EA03220A4342EA0C0282605DF858 +:105E7000044B704790F83C30012B78D010B50446A5 +:105E8000012380F83C30022380F83D30026893689B +:105E900023F47F4323F0770393600B68602B4CD08F +:105EA00029D8402B54D00CD9502B22D1CA6849682C +:105EB0000068FFF7DFFC50212068FFF702FD00209B +:105EC00005E0202B0DD009D9302B0AD00120012369 +:105ED00084F83D30002384F83C3010BD0BB1102B0A +:105EE00005D119462068FFF7ECFC0020EFE7012000 +:105EF000EDE70120EBE7B3F5805F34D0B3F5005F49 +:105F00000CD1CB684A6889680068FFF7A6FF226851 +:105F1000936843F4804393600020D8E7702B24D12A +:105F2000CB684A6889680068FFF797FF2268936822 +:105F300043F0770393600020C9E7CA6849680068A6 +:105F4000FFF7ABFC60212068FFF7BBFC0020BEE739 +:105F5000CA6849680068FFF78DFC40212068FFF798 +:105F6000B0FC0020B3E70020B1E70120AFE702203A +:105F7000704701F01F01012303FA01FC036A23EAC1 +:105F80000C030362036A02FA01F10B4303627047D8 +:105F900010B504460846002942D194F83E30DBB2E1 +:105FA000013B18BF0123002B6ED1002851D10223E1 +:105FB00084F83E30012201462068FFF7DAFF2368AB +:105FC000334A934203D002F58062934203D15A6C64 +:105FD00042F400425A6423682D4A934249D0B3F1F7 +:105FE000804F46D0A2F57C42934242D002F58062B7 +:105FF00093423ED002F5806293423AD002F5784255 +:10600000934236D002F57052934232D0A2F59432C8 +:1060100093422ED01A6842F001021A60002032E04A +:10602000042908D008290DD094F84130DBB2013B97 +:1060300018BF0123B7E794F83F30DBB2013B18BF2C +:106040000123B0E794F84030DBB2013B18BF0123D5 +:10605000A9E7042805D0082807D0022384F8413096 +:10606000A8E7022384F83F30A4E7022384F84030F5 +:10607000A0E79A6802F00702062A07D01A6842F0E1 +:1060800001021A60002010BD0120FCE70020FAE7A1 +:106090000000014090F83C30012B3DD010B40123AA +:1060A00080F83C30022380F83D3003685A689C68D1 +:1060B00022F0700C0A6842EA0C025A600368174A20 +:1060C00093421AD0B3F1804F17D0A2F57C4293428D +:1060D00013D002F5806293420FD002F580629342A2 +:1060E0000BD002F57842934207D002F570529342EA +:1060F00003D0A2F59432934204D124F080044A687C +:1061000014439C60012380F83D30002380F83C302C +:1061100018465DF8044B70470220704700000140AC +:1061200090F83C30012B22D0012380F83C30CB6822 +:1061300023F440738A68134323F480634A6813434B +:1061400023F400630A68134323F480530A6913435A +:1061500023F400534A69134323F48043CA69134369 +:1061600002685364002380F83C30184670470220D0 +:10617000704770477047026802F10C0353E8003F14 +:1061800023F0C0030C3242E800310029F3D1202370 +:1061900080F83D307047026802F10C0353E8003F7D +:1061A00023F490730C3242E800310029F3D10268E5 +:1061B00002F1140353E8003F23F00103143242E8D4 +:1061C00000310029F3D1036B012B05D0202380F887 +:1061D0003E30002303637047026802F10C0353E86A +:1061E000003F23F010030C3242E800310029F3D1C4 +:1061F000ECE790F83D30DBB2212B01D00220704754 +:106200008368B3F5805F17D0036A5A1C02621A785C +:1062100003685A60C38C9BB2013B9BB2C3844BB9E9 +:106220000268D36823F08003D3600268D36843F028 +:106230004003D360002070470369002BE4D1036A58 +:106240001B880268C3F308035360036A02330362C6 +:10625000E0E7000038B504460268136923F44053B0 +:10626000C1680B4313618368026913434269134396 +:10627000C2691A430168CB6823F4164323F00C0368 +:106280001343CB600268536923F4407381690B4365 +:1062900053610368314A934206D002F5806293420B +:1062A00002D0FEF709FE01E0FEF716FEE369B3F542 +:1062B000004F29D00021031849411B1841F100016A +:1062C000C90041EA5371DB00181863684FEA830282 +:1062D0004FEA937341F10001FAF760FC204DA5FBF2 +:1062E00000325109642303FB11031B013233A5FB68 +:1062F00003235B0903F0F00202EB011203F00F032A +:10630000216813448B6038BD0023021843EB03015E +:10631000121841F10001C90041EA5271D20010186F +:1063200041F10001626892185B41FAF737FC0C4DAD +:10633000A5FB00325109642303FB1103DB00323358 +:10634000A5FB03235B095A0002F4F87202EB011269 +:1063500003F00703216813448B60D4E70010014069 +:106360001F85EB512DE9F84305460F461646994621 +:10637000DDF820802C68246837EA04030CBF4FF056 +:10638000010C4FF0000CB4452DD1B8F1FF3FF1D016 +:10639000B8F1000F05D0FBF78FF8A0EB09004045DE +:1063A000E8D92A6802F10C0353E8003F23F4D073C4 +:1063B0000C3242E800310029F3D12A6802F11403BB +:1063C00053E8003F23F00103143242E80031002972 +:1063D000F3D1202385F83D3085F83E30002385F841 +:1063E0003C30032000E00020BDE8F88358B310B52E +:1063F000044690F83D300BB3242384F83D302268E6 +:10640000D36823F40053D3602046FFF723FF2268AC +:10641000136923F4904313612268536923F02A031C +:1064200053612268D36843F40053D3600020206492 +:10643000202384F83D3084F83E3010BD80F83C3095 +:1064400005F050F9D8E7012070472DE9F04182B0FE +:106450001E4690F83D30DBB2202B54D104460D4649 +:106460009046002953D0002A53D090F83C30012B9D +:1064700051D0012380F83C3000230364212380F8AD +:106480003D30FBF719F80746A4F82480A4F82680CD +:10649000A368B3F5805F05D04FF00008002384F8AF +:1064A0003C3012E0236913B14FF00008F6E7A8462C +:1064B0000025F3E738F8023B2268C3F30803536072 +:1064C000E28C92B2013A92B2E284E38C9BB273B155 +:1064D00000963B46002280212046FFF743FFE0B9AB +:1064E000002DE7D015F8012B23685A60E8E70096E5 +:1064F0003B46002240212046FFF734FF78B9202395 +:1065000084F83D3000E0022002B0BDE8F0810120B7 +:10651000FAE70120F8E70220F6E70320F4E703207A +:10652000F2E790F83D30DBB2202B19D1D1B1DAB1CE +:1065300090F83C30012B19D0012380F83C300162E7 +:106540008284C28400230364212280F83D2080F8E5 +:106550003C300168CA6842F08002CA601846704741 +:1065600002207047012070470120704702207047C9 +:1065700038B590F83D30DBB2202B38D104460029E5 +:1065800037D0002A37D090F83C30012B35D001238A +:1065900080F83C3001628284C28400250564212396 +:1065A00080F83D30436B1648D863636B1548186418 +:1065B000636B1548D864636B1D6520681346021D24 +:1065C000606BFBF7B1FE23686FF040021A6084F83D +:1065D0003C50226802F1140353E8003F43F080036B +:1065E000143242E800310029F3D1002000E00220FB +:1065F00038BD0120FCE70120FAE70220F8E700BFE0 +:106600000F6600087766000885660008704708B5C1 +:106610000346806B1B681B6813F4807F1AD100232C +:10662000C384026802F1140353E8003F23F080039F +:10663000143242E800310029F3D1026802F10C0360 +:1066400053E8003F43F040030C3242E80031002998 +:10665000F3D108BDFFF7DAFFFBE708B50168CA68A8 +:1066600022F04002CA60202280F83D20FFF7CEFFD2 +:10667000002008BD704708B5806BFFF7FBFF08BD21 +:106680007047704710B5846B23685A6994F83D30A1 +:10669000DBB2212B10D023685A6902F0400294F833 +:1066A0003E30DBB2222B11D0236C43F01003236465 +:1066B000204607F029FC10BD02F08002002AEAD033 +:1066C0000023E3842046FFF756FDE4E7002AEBD0E1 +:1066D0000023E3852046FFF75EFDE5E708B5806B04 +:1066E0000023C385C38407F00FFC08BD90F83E303B +:1066F000DBB2222B67D18368B3F5805F4DD0826A0D +:10670000B3F5805F04D0002B54D10369002B51D125 +:1067100003685B681370836A01338362C38D9BB225 +:10672000013B9BB2C385002B4FD100B583B00268FB +:10673000D36823F02003D3600268D36823F4807306 +:10674000D3600268536923F001035361202380F86A +:106750003E30036B012B33D100230363026802F147 +:106760000C0353E8003F23F010030C3242E80031E1 +:106770000029F3D103681A6812F0100F06D0002226 +:1067800001921A6801925B680193019B818D07F069 +:1067900085FB002003B05DF804FB0269002AAED13E +:1067A000826A03685B68C3F308031380836A023359 +:1067B0008362B3E703685B6803F07F031370AAE7A3 +:1067C000FFF75EFFE5E702207047002070470000FA +:1067D00030B583B0044602681368D068516913F07D +:1067E0000F0505D113F0200F02D010F0200F19D1A2 +:1067F0002DB111F0010119D110F4907F16D1216B48 +:1068000001297DD013F0800F03D010F0800F40F0ED +:10681000158113F0400F03D010F0400F40F01281AB +:1068200003B030BD2046FFF761FFF9E713F0010F19 +:1068300006D010F4807F03D0226C42F00102226463 +:1068400013F0040F04D019B1226C42F0020222644A +:1068500013F0020F04D019B1226C42F0040222643A +:1068600013F0080F07D010F0200F00D119B1226CDF +:1068700042F008022264226C002AD1D013F0200FCB +:1068800002D010F0200F29D123685B6903F0400388 +:10689000226C12F0080F00D163B32046FFF77BFC97 +:1068A00023685B6913F0400F20D0226802F11403C3 +:1068B00053E8003F23F04003143242E8003100293E +:1068C000F3D1A36B73B1614A1A65A06BFBF7ABFD03 +:1068D0000028A5D0A06B036D9847A1E72046FFF7DD +:1068E00005FFD1E7204607F00FFB99E7204607F0A8 +:1068F0000BFB95E7204607F007FB002323648FE797 +:1069000013F0100F3FF47EAF10F0100F3FF47AAF8A +:10691000002301931368019353680193019B53690A +:1069200013F0400F50D0A26B13685B689BB2002B32 +:106930003FF476AFA18D99427FF672AFE385D369BC +:10694000B3F5807F37D0226802F10C0353E8003F93 +:1069500023F480730C3242E800310029F3D122681D +:1069600002F1140353E8003F23F00103143242E81C +:1069700000310029F3D1226802F1140353E8003FEB +:1069800023F04003143242E800310029F3D12023E0 +:1069900084F83E3000232363226802F10C0353E89D +:1069A000003F23F010030C3242E800310029F3D1FC +:1069B000A06BFBF7EEFCA18DE38D9BB2C91A89B2E7 +:1069C000204607F06BFA2BE7A18DE38D9BB2C91A25 +:1069D00089B2E38D9BB2002B3FF422AF00293FF434 +:1069E0001FAF226802F10C0353E8003F23F49073B9 +:1069F0000C3242E800300028F3D1226802F114037F +:106A000053E8003F23F00103143242E8003000282D +:106A1000F3D1202384F83E3000232363226802F15F +:106A20000C0353E8003F23F010030C3242E800301F +:106A30000028F3D1204607F031FAF1E62046FFF7AF +:106A4000D8FBEDE62046FFF708FEE9E6DD66000824 +:106A500008B5806B036B012B02D0FFF712FE08BD57 +:106A6000818D490807F01AFAF9E708B50346806BEB +:106A70001B681B6813F4807F2BD10023C385026839 +:106A800002F10C0353E8003F23F480730C3242E818 +:106A900000310029F3D1026802F1140353E8003FEA +:106AA00023F00103143242E800310029F3D10268D7 +:106AB00002F1140353E8003F23F04003143242E88C +:106AC00000310029F3D1202380F83E30036B012BE5 +:106AD00005D0036B012B0FD0FFF7D2FD08BD026874 +:106AE00002F10C0353E8003F23F010030C3242E89C +:106AF00000310029F3D1ECE7818D07F0CFF9EDE704 +:106B000030B583B004461346816282850025056452 +:106B1000222280F83E20826B2048D063A26B20485E +:106B20001064A26B1F48D064A26B156520680A46EA +:106B3000011DA06BFBF7F8FB019523681A68019211 +:106B40005B680193019B84F83C5023695BB1226828 +:106B500002F10C0353E8003F43F480730C3242E827 +:106B600000310029F3D1226802F1140353E8003FF9 +:106B700043F00103143242E800310029F3D12268C6 +:106B800002F1140353E8003F43F04003143242E89B +:106B900000310029F3D1002003B030BD6B6A00083A +:106BA000516A00088566000890F83E30DBB2202B61 +:106BB00029D110B582B0044639B342B390F83C30C5 +:106BC000012B27D0012380F83C300363FFF798FFA7 +:106BD000F0B9236B012B01D0012019E000230193B0 +:106BE00023681A6801925B680193019B226802F195 +:106BF0000C0353E8003F43F010030C3242E800312D +:106C00000029F3D104E002207047012000E00120B8 +:106C100002B010BD0220FBE782B000230193019B6C +:106C200001330193019A0F4B9A4215D80369002B47 +:106C3000F5DA00230193036943F001030361019B2B +:106C400001330193019A074B9A4208D8036913F064 +:106C5000010FF4D1002000E0032002B070470320B0 +:106C6000FBE700BF400D030084B010B5044603A845 +:106C700080E80E00089B012B1FD1A36B23F4803307 +:106C8000A363E36823F4840323F04003E360E36831 +:106C900023F44013E3600F9B012B09D02046FFF73C +:106CA000BBFF069B012B1BD0BDE8104004B0704712 +:106CB000E36843F48013E360F0E7E36843F04003E4 +:106CC000E3602046FFF7A8FF0C9B23B9A36B43F4B6 +:106CD0008033A363E5E7A36B23F48033A363E0E78A +:106CE000A36843F00603A360A36843F02003A360F6 +:106CF000DAE70000022A0AD00921C26822F47052A1 +:106D0000C260C36843EA8123C36000207047234BFD +:106D10000B44234A93422FD9224B0B44224A9342DD +:106D20002CD9A1F57403A3F51053204A934227D917 +:106D3000A1F18373A3F5E7431D4A934222D31D4B70 +:106D40000B441D4A93421FD91C4B0B441C4A9342CF +:106D50001CD31C4B0B441C4A934219D3A1F1B773AB +:106D6000A3F55853194A934214D3194B0B44194AAB +:106D7000934211D20721C0E70F21BEE70E21BCE7E5 +:106D80000D21BAE70C21B8E70B21B6E70A21B4E7D9 +:106D90000921B2E70821B0E70621AEE7405327FFFB +:106DA000FF340C00401E1BFF3F420F007F4F1200BC +:106DB00020D6130060B6E5FE5FE3160000D3CEFEDA +:106DC00040771B00C05BB3FEC091210020753800E6 +:106DD000E05459FEE09C4100836843F00103836066 +:106DE00000207047836823F0010383600020704710 +:106DF00082B000230193019B01330193019A0F4B51 +:106E00009A4215D80369002BF5DA00230193890112 +:106E100041F020010161019B01330193019A074B6D +:106E20009A4208D8036913F0200FF4D1002000E043 +:106E3000032002B070470320FBE700BF400D0300B2 +:106E400082B000230193019B01330193019A0E4B01 +:106E50009A4213D80369002BF5DA0023019310231B +:106E60000361019B01330193019A074B9A4208D8B1 +:106E7000036913F0100FF4D1002000E0032002B0EA +:106E800070470320FBE700BF400D0300D0F8003837 +:106E90001943C0F8001800207047000084B02DE9A5 +:106EA000F041044607A880E80E00002306E003F145 +:106EB000400204EB82020021516001330E2BF6D90F +:106EC000119F27BBD4F8043843F00203C4F80438F8 +:106ED000A36B43F40013A363A36B23F40023A36306 +:106EE000A36B23F48023A3630023C4F8003E04F5BE +:106EF0000065D4F80038C4F800380C9B012B14D17D +:106F0000099B6BB900212046FFF7C0FF11E0A36B7E +:106F100023F40013A363A36B43F40023A363E3E709 +:106F200001212046FFF7B2FF03E003212046FFF7CF +:106F3000ADFF10212046FFF75BFF804608B14FF000 +:106F400001082046FFF77CFF08B14FF0010800233D +:106F50002B616B61EB610AE0C3B94FF00060C2F8CE +:106F6000000900220A614FF67F328A6001330799D7 +:106F7000994210D904EB431202F51061D2F80009CE +:106F80000028E9DB0020C2F80009EAE74FF0904052 +:106F9000C2F80009E5E700230AE0C3B14FF0904CC6 +:106FA000C2F800CB002202614FF67F3282600133CB +:106FB000994211D904EB431202F53060D2F8006B0C +:106FC000002EEADB4FF0000CC2F800CBEAE74FF0EE +:106FD000006CC2F800CBE5E72B6923F480732B61CA +:106FE0000023A3616FF0804363610A9B1BB9A3690F +:106FF00043F01003A361A2690B4B1343A3610D9BE4 +:107000001BB1A36943F00803A361012F04D04046DC +:10701000BDE8F04104B07047A36943F0804343F0FA +:107020000403A361F3E700BF00383C80D0F80838C0 +:1070300013F0060307D0022B07D0062B01D00F2038 +:10704000704702207047002070470220704710B53B +:1070500091F800C04B78012B23D000F5006ED0F8DA +:107060001C380CF00F040122A24043EA0243C0F88E +:107070001C3800EB4C10D0F8003B13F4004F0ED13D +:10708000D0F8003BCA68C2F30A02097942EA814299 +:10709000134343F0805343F40043C0F8003B002007 +:1070A00010BDD0F81C280CF00F0E03FA0EF39BB2A3 +:1070B0001343C0F81C3800EB4C10D0F8003913F41F +:1070C000004FECD1D0F80039CA68C2F30A0209793E +:1070D00042EA814242EA8C5C43EA0C0343F080536B +:1070E00043F40043C0F80039D9E7000030B40B780E +:1070F0004A78012A26D000EB4313D3F8002B002A4C +:1071000052DBD0F83C480A7802F00F024FF0010C35 +:107110000CFA02F224EA0242C0F83C28D0F81C28FB +:10712000097801F00F010CFA01FC22EA0C42C0F8C8 +:107130001C28D3F8001B234A0A40C3F8002B002068 +:1071400030BC704700EB4313D3F80029002A1EDB44 +:10715000D0F83C580A7802F00F02012404FA02F237 +:1071600092B225EA0202C0F83C28D0F81C2809781F +:1071700001F00F018C40A4B222EA0404C0F81C48BC +:10718000D3F80019104A0A40C3F80029D7E7D3F80A +:10719000002942F00062C3F80029D3F8002942F028 +:1071A0008042C3F80029D3E7D3F8002B42F00062F5 +:1071B000C3F8002BD3F8002B42F08042C3F8002B19 +:1071C0009FE700BF0078F3EF007833EC70B40B78E2 +:1071D0004C78012C29D000EB431000F530631C697A +:1071E000E40CE4041C611C6924F0FF5424F4C01472 +:1071F0001C618C690CB1CC688C61CC68CC611C6959 +:1072000044F400241C611C69CD69C5F3120C44EAE6 +:107210000C041C61012A66D0D0F8003B43F0044303 +:10722000C0F8003B002070BC70478C696CBB00EB61 +:107230004314D4F8105925F0FF5525F4C015C4F8AF +:107240001059D4F8105945F40025C4F81059D4F851 +:107250001059ED0CED04C4F81059012A34D000EB9C +:107260004313D3F8002942F00442C3F800298B6984 +:10727000002BD7D0D0F834380A7802F00F01012261 +:107280008A401343C0F83438CCE700EB431404F5CC +:1072900010642569ED0CED042561256925F0FF5585 +:1072A00025F4C0152561CD688E69AE4200D98D6187 +:1072B000256945F40025256125698E69C6F3120C00 +:1072C00045EA0C052561C8E74A691AB100EB43118C +:1072D000C1F8142900EB4310D0F8002942F0044211 +:1072E000C0F800299EE70A69002A95D05A6193E701 +:1072F00010B483B0024600230193487801280BD0D4 +:107300000B7802EB4313D3F8000B00282DDB002091 +:1073100003B05DF8044B70470B7802EB4313D3F8CE +:107320000049002C01DB0020F2E7D3F8004944F0CB +:107330000064C3F800490B7802EB4313D3F800490B +:1073400044F08044C3F80049019B01330193019C40 +:1073500042F210739C42DBD80B7802EB4313D3F854 +:107360000039002BF0DB0020D2E7D3F8000B40F00F +:107370000060C3F8000B0B7802EB4313D3F8000B4B +:1073800040F08040C3F8000B019B0133019301984A +:1073900042F21073984208D80B7802EB4313D3F8EB +:1073A000003B002BF0DB0020B2E70120B0E710B576 +:1073B0009DF8084084B903334FEA930E4FF0000C58 +:1073C00008E000EB023303F5805351F8044B1C60D6 +:1073D0000CF1010CF445F4D3002010BDF0B583B0DE +:1073E0000B784C78012C33D000EB431303F5306C51 +:1073F000DCF81040E40CE404CCF81040DCF8104059 +:1074000024F0FF5424F4C014CCF810408C69002CF4 +:1074100040F0C780DCF81040CD68C5F312052C435E +:10742000CCF81040DCF8104044F40024CCF81040B4 +:10743000012A00F0D0800A79012A00F0D380D3F825 +:10744000002B42F00442C3F8002B002003B0F0BD33 +:107450008C6984BB00EB4314D4F8105925F0FF5518 +:1074600025F4C015C4F81059D4F8105945F4002576 +:10747000C4F81059D4F81059ED0CED04C4F81059A3 +:10748000012A4CD000EB4313D3F8004944F00444E4 +:10749000C3F800490C79012C6AD08B69002BD4D039 +:1074A000D0F834380A7802F00F0101228A401343E1 +:1074B000C0F83438C9E700EB4314D4F81059ED0C88 +:1074C000ED04C4F81059D4F8105925F0FF5525F4EF +:1074D000C015C4F81059D4F810698D69CF683D44BF +:1074E000013DB5FBF7F5494F07EAC5453543C4F8FB +:1074F0001059D4F810598E69C6F312063543C4F8F2 +:10750000105904F510640D79012DB9D1256925F0C4 +:10751000C0452561256945F000552561B0E74A69F8 +:107520001AB100EB4314C4F814290A79012A08D0CF +:1075300000EB4313D3F8002942F00442C3F80029BA +:1075400083E7D0F8082812F4807F08D100EB4311BC +:10755000D1F8002942F00052C1F80029E8E700EB19 +:107560004311D1F8002942F08052C1F80029DFE729 +:10757000D0F8084814F4807F0CD1D3F8004944F0C7 +:107580000054C3F8004900920B8B0A780969FFF791 +:107590000EFF5AE7D3F8004944F08054C3F800497D +:1075A000F1E7CD682C44013CB4FBF5F4A4B204FB34 +:1075B00005F5CD61DCF81050144E06EAC4442C43A6 +:1075C000CCF81040DCF81040CD69C5F312052C430F +:1075D000CCF810402CE70A69002A3FF42CAFCCF815 +:1075E000142028E7D0F8082812F4807F06D1D3F8B9 +:1075F000002B42F00052C3F8002B20E7D3F8002BF9 +:1076000042F08052C3F8002B19E700BF0000F81FBA +:1076100000B583B0844608464FEA920E02F003029A +:10762000002305E00CF58051096840F8041B013384 +:107630007345F7D39AB10CF5805CDCF80030019308 +:107640004FF0000C5FFA8CF3D900019BCB4000F89F +:10765000013B0CF1010C013A92B2002AF2D103B0C5 +:107660005DF804FB0B784A78012A14D000EB431034 +:10767000D0F8002B002A06DB2BB1D0F8003B23F01A +:107680008043C0F8003BD0F8003B43F40013C0F83F +:10769000003B0020704700EB4310D0F80029002A7F +:1076A00006DB2BB1D0F8003923F08043C0F8003955 +:1076B000D0F8003943F40013C0F80039E9E70B783B +:1076C0004A78012A0ED000EB4310D0F8003B23F497 +:1076D0000013C0F8003B0B79023BDBB2012B15D93C +:1076E0000020704700EB4310D0F8003923F400135A +:1076F000C0F800390B79023BDBB2012BF0D8D0F88F +:10770000003943F08053C0F80039E9E7D0F8003B76 +:1077100043F08053C0F8003BE2E7D0F8003823F490 +:10772000FE63C0F80038D0F80038090101F4FE61AA +:107730001943C0F8001800207047D0F8003E23F02D +:107740000303C0F8003ED0F8043823F00203C0F869 +:10775000043800207047D0F8003E23F00303C0F83F +:10776000003ED0F8043843F00203C0F8043800208B +:1077700070474269806910407047D0F8183800F5AA +:107780000060C0691840000C7047D0F8183800F548 +:107790000060C069184080B2704700EB4111D1F819 +:1077A000082B00F5006040691040704710B4D0F815 +:1077B0001048D0F8343801F00F02D340DB01DBB2BF +:1077C000234300EB411000F51060806818405DF81D +:1077D000044B7047406900F00100704738B505461A +:1077E000C36823F0C043C360012913D019BBC36829 +:1077F00043F08043C36000240120F9F763FE0134A5 +:107800002846FFF7E7FF08B1312CF5D9322C14D008 +:10781000002038BDC36843F00053C360002401203A +:10782000F9F750FE01342846FFF7D4FF0128EDD0C8 +:10783000312CF4D9EAE70120EBE70120E9E7D0F8A1 +:10784000003923F4FF6323F00703C0F80039D0F8B0 +:10785000043843F48073C0F80438002070470000F7 +:1078600010B4046C154B9C4203D9D0F8003B002B9C +:1078700016DB0024C0F8104BD0F8104B44F4002461 +:10788000C0F8104BD0F8104B44F01804C0F8104B5F +:10789000D0F8104B44F0C044C0F8104B012903D07D +:1078A00000205DF8044B7047C0F8142BD0F8003B63 +:1078B00043F08023C0F8003BF2E700BF0A30544F8A +:1078C00010B5D0F8D43203F1B00250F822408CB198 +:1078D00000EB820043687BB194F80002FF280DD0D2 +:1078E0009B6894F8012221469847FF2384F80032D0 +:1078F000002010BD0320FCE70020FAE70020F8E795 +:107900000A2303800048704784000020F8B506462B +:107910000F4F8221384600F03CFC054601213846D5 +:1079200000F037FC04468121384600F032FC0DB1EE +:107930001022AA711CB1402222710022627118B17A +:107940004022027100224271432333800048F8BD77 +:1079500040000020F8B506460F4F8221384600F05F +:1079600018FC05460121384600F013FC044681212D +:10797000384600F00EFC0DB11022AA711CB1402255 +:1079800022710022627118B14022027100224271FC +:10799000432333800048F8BD40000020F8B5064678 +:1079A0000F4F8221384600F0F4FB0546012138468E +:1079B00000F0EFFB04468121384600F0EAFB0DB1F0 +:1079C0001022AA711CB1002222710222627118B128 +:1079D0000022027102224271432333800048F8BD25 +:1079E0004000002038B5D0F8D432B03350F82350DE +:1079F00095B1044604F063F9C5F80C02D4F8D4320A +:107A0000B03304EB83046368DB6805F50371D5F8D4 +:107A100004029847002038BD0320FCE738B5D0F8B1 +:107A2000C852D0F8D432B03350F8234084B301F0B8 +:107A30000F0303EB830200EB820292694AB103EB6E +:107A4000C30C05EB8C05AD6CB2FBF5FC05FB1C22F1 +:107A500092B10023C4F81432D0F8D432B03300EB22 +:107A6000830043681B69ABB10A4604F50471D4F87E +:107A700008029847002038BD03EB830300EB830323 +:107A800000249C612346224604F062F92046F2E776 +:107A90000320F0E70020EEE7F0B583B0D0F8D43251 +:107AA00003F1B00250F8227000228DF80720ADF8E3 +:107AB0000420002F7BD004460D46097811F06006A3 +:107AC00034D0202E6CD1EA882AB311F0800F07D170 +:107AD0006B7887F80032EA883F2A13D8D2B212E0D6 +:107AE000B03300EB83035B689B683946687898473E +:107AF000EA88072A28BF07223946204600F0FAFE06 +:107B0000002651E0402287F801223946204600F045 +:107B100006FF002648E0B03300EB830463689B68EF +:107B2000002229466878984700263DE06F780B2FA1 +:107B300031D8DFE807F006393030303030303030BF +:107B4000162690F89C32DBB2032B04D0294600F0B5 +:107B50005DFB032628E0022201A900F0CBFE3E4691 +:107B600022E090F89C32DBB2032B04D0294600F0CF +:107B70004DFB032618E001220DF1070100F0BAFECB +:107B800012E090F89C32DBB2032B0DD0294600F0B6 +:107B90003DFB032608E0294600F038FB032603E0FE +:107BA000294600F033FB0326304603B0F0BD032620 +:107BB000FAE738B50446812104F0AAF800252587A4 +:107BC0000121204604F0A4F8A4F87851822120462F +:107BD00004F09EF8A4F84C50A4F84E50D4F8D432D7 +:107BE00003F1B00254F822209AB1B03304EB8303BE +:107BF0005B685B689847D4F8D432B03354F82300FC +:107C000004F068F8D4F8D432B03344F82350C4F800 +:107C1000BC52002038BD70B504464FF4077004F024 +:107C200055F8002849D005464FF4077200210DF0A1 +:107C3000A5F9D4F8D432B03344F82350C4F8BC5278 +:107C4000237C002B41D14FF4007302228121204676 +:107C500004F053F8012626874FF4007302223146C0 +:107C6000204604F04AF8A4F878611023A4F84E30B6 +:107C7000082303228221204604F03FF80123A4F8C0 +:107C80004C300026C5F80462D4F8D432B03304EB8B +:107C900083035B681B689847C5F81462C5F81862CF +:107CA000D5F8042262B3257C1DBB4FF4007301217B +:107CB000204604F055F8284670BDD4F8D432B033CD +:107CC000002244F823200225F5E7402302228121E7 +:107CD000204604F012F8012626874023022231466E +:107CE000204604F00AF8A4F878611023A4F84E3076 +:107CF000BEE740230121204604F032F80025DAE7F0 +:107D00000225D8E739B1D0F8D432B03300EB830084 +:107D100041600020704703207047D0F8D432B03360 +:107D200050F823302BB1C3F80812C3F810220020FA +:107D3000704703207047D0F8D432B03350F8233066 +:107D40001BB1C3F80412002070470320704708B528 +:107D5000D0F8D432B03350F823209AB1D2F814328C +:107D60000BB1012008BD0123C2F81432D2F8103241 +:107D7000C362D2F81032D2F80822812103F0E8FF62 +:107D80000020EFE70320EDE710B5D0F8D432B03390 +:107D900050F8232092B1047C44B94FF40073D2F818 +:107DA0000422012103F0DCFF204610BD4023D2F85D +:107DB0000422012103F0D4FF0024F5E70324F3E7B4 +:107DC00098B108B503460020C3F8B802C3F8C4024E +:107DD000C3F8D00209B1C3F8B412012183F89C1290 +:107DE0001A70184603F020FF08BD0320704710B535 +:107DF00082B00023ADF8063089B10446C0F8B8124D +:107E0000CB6A23B10DF106009847C4F8D002D4F82C +:107E1000D8320133C4F8D832002002B010BD03209C +:107E2000FBE708B503F061FF08BD08B5D0F8B8322C +:107E300013B11B68984708BD0020FCE708B5D0F8CF +:107E4000B8325B68984700B908BD0320FCE738B535 +:107E5000044600F2AA25284600F0C4F90123C4F81C +:107E60009432B4F8B032C4F8983294F8AA1201F0FF +:107E70001F03012B0DD0022B10D02BB101F080017C +:107E8000204603F04DFF03E02946204600F080FB2A +:107E900038BD2946204600F0B6FBF9E729462046C2 +:107EA00000F0F3FBF4E7F8B50446012380F89C32B8 +:107EB0000023C0F894324360C0F8A43280F8A032A6 +:107EC000D0F8B832DBB15B68DBB1002198470746D8 +:107ED000C8B9402300221146204603F00EFF0126B8 +:107EE000A4F864614025C4F860512B46002280212B +:107EF000204603F002FFA68425623846F8BD00271D +:107F0000E7E70027E5E70327E3E701740020704770 +:107F100090F89C32DBB280F89D32042380F89C32CA +:107F20000020704790F89C32DBB2042B01D0002077 +:107F3000704790F89D32DBB280F89C32F7E708B5C5 +:107F400090F89C32DBB2032B01D0002008BDD0F8A2 +:107F5000B832002BF9D0DB69002BF6D09847F4E754 +:107F600008B5D0F8D432AE3350F823205AB190F887 +:107F70009C32DBB2032B01D0002008BD136A23B171 +:107F800098470020F9E70320F7E70020F5E708B558 +:107F9000D0F8D432AE3350F823205AB190F89C3246 +:107FA000DBB2032B01D0002008BD536A23B19847F0 +:107FB0000020F9E70320F7E70020F5E700207047ED +:107FC00008B5012380F89C32D0F8B83223B15B6841 +:107FD0000179984710B908BD0020FCE70320FAE7B3 +:107FE000002070470020704738B504460D46002930 +:107FF00043D11346D0F89422032A01D0084638BD55 +:10800000D0F85C11D0F86021914212D890F8AA32D1 +:1080100003F01F03012B17D0022B1CD0284694F825 +:108020009C32DBB2032B1BD0204600F08FFC28468D +:10803000E5E7891AC0F85C118A4228BF0A4619464A +:1080400000F07CFC2846DAE790F8AE12FFF7C8FF94 +:108050000028E9D1E3E790F8AE12FFF7C3FFF7E796 +:1080600000F1AE0354F823301A69002ADCD0C4F8BA +:10807000D4021B6920469847D6E701F07F01FFF73D +:10808000B1FF90B994F89C32DBB2032BB7D100F169 +:10809000AE0354F823309A69002AB0D0C4F8D40251 +:1080A0009B69294620469847A9E70020A7E738B5ED +:1080B00004460D4600294BD11346D0F89422022ADB +:1080C00007D094F8A00218B1002384F8A032284603 +:1080D00038BDC269016A8A420ED88A4218D094F823 +:1080E0009C32DBB2032B27D08021204603F018FE00 +:1080F000204600F036FCE4E7521AC261194600F04F +:1081000006FC00231A461946204603F029FED8E74C +:1081100083699942E3D8D0F898229342DFD20022B3 +:10812000114600F0F4FB0021C4F898120B460A46F1 +:10813000204603F015FEC4E7D4F8B832DA68002A06 +:10814000D2D00022C4F8D422DB6820469847CBE77F +:1081500041F08001FFF746FF90B994F89C32DBB202 +:10816000032BB5D100F1AE0354F823305A69002A2D +:10817000AED0C4F8D4025B69294620469847A7E7E9 +:108180000020A5E703780A8813440B80037818447D +:108190007047428803789A4218D930B583B00446B4 +:1081A0000D46ADF806306288BDF806309A420AD90D +:1081B0000DF10601FFF7E6FF4378052BF3D1837835 +:1081C000AB42F0D100E0002003B030BD002070478A +:1081D0000346002002E00130C0B201331A78002AC1 +:1081E000F9D170470B7803704B7843708B78CA785D +:1081F00043EA022343800B794A7943EA02238380CE +:108200008B79CA7943EA0223C380704710B50446CC +:10821000802103F085FD0021204603F081FD10BD83 +:1082200030B583B004460D460023ADF806304A88C9 +:10823000130A013B062B00F2AB80DFE803F0041FBA +:1082400033A9A98D9A00D0F8B4321B680DF106014C +:10825000007C9847EA88002A00F0A380BDF8063029 +:10826000002B00F099809A4228BF1A46ADF80620EC +:108270000146204600F03EFB03B030BD037C43B90D +:10828000D0F8B8329B6A0DF106009847022343707C +:10829000E0E7D0F8B832DB6A0DF106009847022318 +:1082A0004370D7E7D2B2052A52D8DFE802F00310B4 +:1082B0001D2A3744D0F8B4325B6823B10DF10601B2 +:1082C000007C9847C6E72946FFF7A0FFD4E7D0F81F +:1082D000B4329B6823B10DF10601007C9847B9E7E1 +:1082E0002946FFF793FFC7E7D0F8B432DB6823B124 +:1082F0000DF10601007C9847ACE72946FFF786FFA1 +:10830000BAE7D0F8B4321B6923B10DF10601007C45 +:1083100098479FE72946FFF779FFADE7D0F8B432D9 +:108320005B6923B10DF10601007C984792E729466D +:10833000FFF76CFFA0E7D0F8B4329B6923B10DF1D1 +:108340000601007C984785E72946FFF75FFF93E722 +:108350002946FFF75BFF8FE7037C33B9D0F8B832CB +:108360005B6B0DF10600984774E72946FFF74EFF57 +:1083700082E7037C43B9D0F8B8321B6B0DF10600DD +:1083800098470723437065E72946FFF73FFF73E7E8 +:108390002946FFF73BFF6FE729462046FFF736FFE8 +:1083A0006AE7204600F0D2FA66E738B504468B88C3 +:1083B000FBB9CB88EBB94B887F2B1AD803F07F052C +:1083C00090F89C32DBB2032B0CD080F89E522946E9 +:1083D00003F0B6FC204600F0B9FA35B1022384F868 +:1083E0009C3209E0FFF712FF06E0012384F89C327B +:1083F00002E02046FFF70AFF38BD000070B50446D2 +:108400000E468D782F4B1D70012D10D890F89C32A0 +:10841000DBB2022B0FD0032B26D0FFF7F7FE294B40 +:1084200019782046FFF70AFD0325284670BDFFF79F +:10843000EDFE0325F9E7A5B145602946FFF7F5FCF8 +:10844000054638B131462046FFF7E0FE022384F8A6 +:108450009C32EAE7204600F079FA032384F89C3244 +:10846000E3E700F073FAE0E7CDB141688D4225D033 +:10847000C9B2FFF7E3FC134B197861602046FFF7A0 +:10848000D4FC0546B0B131462046FFF7BFFE217946 +:108490002046FFF7D3FC022384F89C32C5E7022371 +:1084A00080F89C3245602946FFF7C8FC204600F062 +:1084B0004DFABAE7204600F049FAB6E700F046FA6E +:1084C0000025B2E74010002008B5CB88012B0BD166 +:1084D00090F89C32DBB2022B09D9032B09D101227F +:1084E000011D00F007FA01E0FFF790FE08BD5BB246 +:1084F00013B9FFF78BFEF9E70146002341F8083F67 +:10850000012200F0F7F9F1E708B590F89C32013B41 +:10851000022B12D8CB88022B0CD10123C360D0F8D8 +:10852000A4320BB10323C360022200F10C0100F05E +:10853000E1F908BDFFF76AFEFBE7FFF767FEF8E722 +:1085400008B54B88012B04D0022B07D0FFF75EFE45 +:1085500008BDC0F8A43200F0F9F9F9E78B881B0ACE +:1085600080F8A03200F0F2F9F2E708B590F89C32FA +:10857000013B022B09D84B88012B00D008BD0023FA +:10858000C0F8A43200F0E2F9F8E7FFF73FFEF5E7A4 +:1085900038B50C7804F06004202C06D0402C04D0B0 +:1085A0006CB1FFF733FE002407E0D0F8D432AE33CD +:1085B00050F823309B6898470446204638BD4D78D4 +:1085C000092D1DD8DFE805F012191C161C08051C22 +:1085D0000F0BFFF725FEF0E7FFF7E7FEEDE7FFF7EC +:1085E0000DFF0446E9E7FFF76FFFE6E7FFF78CFFB3 +:1085F0002C46E2E7FFF7A4FFDFE7FFF7B6FFDCE773 +:10860000FFF704FED9E770B505460C460B7803F07A +:108610006003202B07D0402B05D023B1FFF7F6FDD8 +:108620000026304670BD95F89C32013B022B26D8BF +:108630002179012905D921462846FFF7E7FD0026C3 +:10864000EFE72846FFF7CCFC68B900F1AE0255F819 +:108650002220916889B1C5F8D40293682146284642 +:108660009847064600E00326E388002BD9D1002E68 +:10867000D7D1284600F06AF9D3E70326F4E721466C +:108680002846FFF7C3FD0026CBE72DE9F04106465B +:108690000D468B88DFB20C7804F06004202C08D0E3 +:1086A000402C06D0DCB1FFF7B1FD00242046BDE828 +:1086B000F08139463046FFF795FC0446002840F02B +:1086C000F880C6F8D40200F1AE0356F823309B6858 +:1086D000002BEBD02946304698470446E6E791F850 +:1086E0000180B8F1010F31D0B8F1030F05D0B8F116 +:1086F000000F67D0FFF78AFDD8E790F89C32DBB215 +:10870000022B04D0032B12D0FFF780FDCEE70FB170 +:10871000802F04D129463046FFF778FDC6E7394659 +:1087200003F0FEFA8021304603F0FAFABEE74B88E8 +:1087300023B91FB1802F01D0CB881BB1304600F088 +:1087400005F9B3E7394603F0EBFAF7E790F89C3206 +:10875000DBB2022B04D0032B12D0FFF757FDA5E7A5 +:108760000FB1802F04D129463046FFF74FFD9DE71A +:10877000394603F0D5FA8021304603F0D1FA95E767 +:108780004B88002B92D117F07F0F17D1304600F0A5 +:10879000DDF839463046FFF725FC002886D1C6F8BB +:1087A000D40200F1AE0256F822209268002A00F0AE +:1087B0008280294630469047044677E7394603F0E1 +:1087C000B7FAE3E790F89C22D2B2022A05D0032A36 +:1087D00027D0FFF71BFD444668E70FB1802F13D168 +:1087E00013F0800F14D107F07F0707EB8707B9005C +:1087F00001F5A8713144043100230B600222304698 +:1088000000F078F8444651E7FFF700FD44464DE795 +:1088100007F07F0707EB8707B900103131440431B7 +:10882000EAE75BB2002B1FDB07F00F0202EB8202CC +:1088300000EB8202B2F864211AB3002B25DB07F0AB +:108840007F0303EB83039C0004F5A87434440434D1 +:108850000FB1802F22D1002323600222214630460F +:1088600000F048F8444621E707F00F0202EB8202CD +:1088700000EB8202928C002ADFD1FFF7C7FC44464E +:1088800014E7FFF7C3FC444610E707F07F0303EB50 +:1088900083039C00103434440434D9E7394630460D +:1088A00003F0F6F910B101232360D6E7002323601B +:1088B000D3E70024FAE60446F8E6D0B170B50D46D9 +:1088C00016460446FFF784FC431C5B009BB23380D2 +:1088D0002B7003236B70022307E0EA5401345A1C07 +:1088E000D2B20021A9540233DBB22278002AF4D19B +:1088F00070BD704708B513460222C0F89422836108 +:10890000C3610A46002103F023FA002008BD08B520 +:1089100013460A46002103F01BFA002008BD08B5E3 +:1089200013460322C0F89422C0F85831C0F85C31D5 +:108930000A46002103F014FA002008BD08B51346CA +:108940000A46002103F00CFA002008BD08B50422F5 +:10895000C0F8942200231A46194603F0F9F90020C2 +:1089600008BD08B50522C0F8942200231A4619460E +:1089700003F0F6F9002008BD842801D003307047C9 +:108980000020704708B500F0A7FD002008BD2DE9C4 +:10899000F04387B004460F464569BDB18669AEB164 +:1089A000D0F80480D0F80090B0F90800FFF7E4FF99 +:1089B0000296019500903B4622694946404600F0E8 +:1089C000ABFC0590059807B0BDE8F08365682668A4 +:1089D000D4F81080B4F90800FFF7CEFF05AB01937F +:1089E00000903B461FFA88F23146284600F0CFFC43 +:1089F0000128E7D00020E6E708B500B9012000F023 +:108A0000B5FE002008BD00F1080343604FF0FF32BF +:108A10008260C36003610023036070470023036129 +:108A2000704743684B609A688A605160996008613A +:108A3000036801330360704730B40D68B5F1FF3F40 +:108A400011D000F108031C465B681A68AA42FAD9E3 +:108A500063684B6099608C606160086103680133F2 +:108A6000036030BC70470469F2E7036941688268BB +:108A70008A60416851605A68824206D000220261D1 +:108A80001A68013A1A601868704782685A60F5E7F8 +:108A900082B0002301930D4B1B68B3F1FF3F08D058 +:108AA0004FF0500383F31188BFF36F8FBFF34F8FE5 +:108AB000FEE74FF0500383F31188BFF36F8FBFF3CE +:108AC0004F8F019B002BFCD002B07047900000201C +:108AD00008480068006880F308884FF0000080F3C1 +:108AE000148862B661B6BFF34F8FBFF36F8F00DF9C +:108AF00000BF000008ED00E0DFF80C00016841F461 +:108B0000700101607047000088ED00E04FF0807355 +:108B100040F8043C21F0010140F8081C054B40F8E6 +:108B20000C3C40F8202C6FF0020340F8243C443801 +:108B3000704700BF918A000800000000000000009C +:108B4000074B19680868B0E8F04F80F30988BFF355 +:108B50006F8F4FF0000080F311887047AFF30080F3 +:108B6000885E00204FF0500383F31188BFF36F8FAE +:108B7000BFF34F8F0B4A136801331360012B00D0F2 +:108B800070474FF0E023D3F8043D13F0FF0FF7D008 +:108B90004FF0500383F31188BFF36F8FBFF34F8FF4 +:108BA000FEE700BF90000020094B1B6843B94FF05F +:108BB000500383F31188BFF36F8FBFF34F8FFEE72E +:108BC000013B034A13600BB983F31188704700BF60 +:108BD00090000020000000000000000000000000E5 +:108BE000EFF30980BFF36F8F154B1A681EF0100F5B +:108BF00008BF20ED108A20E9F04F10602DE9090030 +:108C00004FF0500080F31188BFF34F8FBFF36F8F89 +:108C100000F0D2FD4FF0000080F3118809BC196804 +:108C20000868B0E8F04F1EF0100F08BFB0EC108AD3 +:108C300080F30988BFF36F8F704700BFAFF30080E8 +:108C4000885E002008B54FF0500383F31188BFF30E +:108C50006F8FBFF34F8F00F081FC28B14FF0E023FE +:108C60004FF08052C3F8042D002383F3118808BD10 +:108C70004FF0E022002313619361054B1B68054907 +:108C8000A1FB03139B09013B536107231361704749 +:108C900094000020D34D62104FF0E023D3F8002D54 +:108CA0003D4B9A421CD04FF0E023D3F8002D3B4BB4 +:108CB0009A421ED030B583B0394B1A78D2B20192A5 +:108CC000FF221A701B78DBB28DF803309DF8033059 +:108CD00003F05003334A1370334B07221A601BE032 +:108CE0004FF0500383F31188BFF36F8FBFF34F8FA3 +:108CF000FEE74FF0500383F31188BFF36F8FBFF38C +:108D00004F8FFEE7284A1368013B13609DF803303C +:108D10005B00DBB28DF803309DF8033013F0800F59 +:108D2000F0D1214B1B68032B08D04FF0500383F385 +:108D30001188BFF36F8FBFF34F8FFEE71B021A4AF4 +:108D4000136003F4E0631360019BDBB2144A1370F9 +:108D50004FF0E024D4F8203D43F47003C4F8203DE4 +:108D6000D4F8203D43F07043C4F8203DFFF780FF66 +:108D700000250E4B1D60FFF7BFFED4F8343F43F0D3 +:108D80004043C4F8343FFFF7A3FE00F015FDFFF7A2 +:108D90007FFE284603B030BD71C20F4170C20F4143 +:108DA00000E400E04110002044100020900000206A +:108DB000134A12F0070F1FD0D11D21F00701C1F592 +:108DC0009C43203313440A460E4802600021416050 +:108DD0001344083B23F007030B48036059601960F4 +:108DE000991A51601360094B1960094B1960094BBE +:108DF0004FF000421A60704744F62063E4E700BF7A +:108E00004C100020805E002048100020745E00207E +:108E1000705E00206C5E0020164B1A461B68834271 +:108E2000FBD3516802EB010C844509D0416800EB8B +:108E3000010C634509D00360904219D0106070475F +:108E40004068014451601046F0E710B40A4C2468B1 +:108E5000A3420BD05B681944416013681B68036030 +:108E6000904200D010605DF8044B70470460F7E753 +:108E7000704700BF805E00204810002070B5054696 +:108E800000F064FB364B1B68A3B1364B1B681D42D8 +:108E90004ED135B1083515F0070F02D025F0070582 +:108EA0000835002D46D0304B1B68AB4251D32F4ABA +:108EB000146804E0FFF77CFFE7E722461C4663687E +:108EC000AB4202D22368002BF7D1254B1B68A3428B +:108ED00041D0166808362368136063685B1B102B4B +:108EE00010D9601910F0070F08D04FF0500383F32A +:108EF0001188BFF36F8FBFF34F8FFEE7436065604C +:108F0000FFF78AFF626818490B689B1A0B601849C3 +:108F100009688B4201D216490B60124B1B68134340 +:108F2000636000232360134A13680133136002E077 +:108F3000002600E0002600F09DFB16F0070F0CD085 +:108F40004FF0500383F31188BFF36F8FBFF34F8F40 +:108F5000FEE70026EFE70026EDE7304670BD00BFD4 +:108F6000481000206C5E0020705E0020805E0020B3 +:108F7000745E0020785E0020002834D038B50446A6 +:108F8000A0F1080550F8043C174A1268134208D1B2 +:108F90004FF0500383F31188BFF36F8FBFF34F8FF0 +:108FA000FEE750F8081C41B14FF0500383F31188DD +:108FB000BFF36F8FBFF34F8FFEE723EA020340F842 +:108FC000043C00F0C3FA54F8041C084A13680B442C +:108FD00013602846FFF720FF054A1368013313602A +:108FE00000F048FB38BD70476C5E0020705E0020CA +:108FF0007C5E0020084B1B681B6823B9074B4FF0B1 +:10900000FF321A607047044B1B68DB68DB685A68E4 +:10901000024B1A60704700BF8C5E0020605F00202A +:109020002DE9F04707469846089DDDF824900A9CF4 +:10903000266B02F18042013A06EB820626F0070613 +:1090400000293AD08E464FF0000CBCF11F0F0BD810 +:109050001EF80C2004EB0C0383F834201EF80C30AF +:1090600013B10CF1010CF0E7002384F85330062D06 +:1090700000D90625E56265654FF0000AC4F858A0DE +:10908000201DFFF7CBFC04F11800FFF7C7FC24619B +:10909000C5F10705A5616462C4F85CA084F860A00E +:1090A000424639463046FFF731FD2060B9F1000FE6 +:1090B00001D0C9F80040BDE8F087002384F83430BF +:1090C000D5E7000038B5002407E004EB84029300E4 +:1090D0000E481844FFF797FC0134062CF5D90C4DC7 +:1090E0002846FFF790FC0B4C2046FFF78CFC0A4803 +:1090F000FFF789FC0948FFF786FC0948FFF783FC66 +:10910000084B1D60084B1C6038BD00BF945E0020FA +:10911000345F0020485F00206C5F0020985F0020D3 +:10912000845F00208C5E0020905E002010B5044615 +:10913000FFF718FD214A136801331360204B1B68A9 +:109140005BB1204B1B686BB91D4B1B68DA6AE36A85 +:109150009A4207D81A4B1C6004E0194B1C60136834 +:10916000012B28D0184A136801331360E06A0123E9 +:109170008340164A11680B43136000EB8000211DE9 +:10918000134B03EB8000FFF74CFCFFF70DFD0D4B7D +:109190001B687BB10A4B1B68DA6AE36A9A4209D200 +:1091A0004FF0E0234FF08052C3F8042DBFF34F8FF0 +:1091B000BFF36F8F10BDFFF785FFD3E7205F00205F +:1091C000885E0020805F00202C5F0020305F002040 +:1091D000945E002010B5044690F8613063B1012B15 +:1091E00011D0022B0ED04FF0500383F31188BFF340 +:1091F0006F8FBFF34F8FFEE7006BFFF7BDFE20467A +:10920000FFF7BAFE10BDFFF7B7FEFBE70F4B1B6879 +:10921000D3B110B5FFF7A6FC0D4BDB68DC68201D51 +:10922000FFF723FC0B4A1368013B1360074A1368DE +:10923000013B1360FFF7B8FC2046FFF7CBFF034B61 +:109240001B68002BE6D110BD704700BF245F0020D3 +:10925000985F0020205F002008B5FFF7D7FF074B7D +:109260001B68012BF9D94FF0E0234FF08052C3F86F +:10927000042DBFF34F8FBFF36F8FEEE7945E002096 +:1092800070B504460D461D4B1E681D4B1868043012 +:10929000FFF7EBFB50B91A4B1B68DA6A012303FA9C +:1092A00002F218490B6823EA02030B60B4F1FF3F96 +:1092B0000DD03444124B1B685C60A64210D9124B8F +:1092C00018680F4B19680431FFF7B6FB70BD002D0D +:1092D000EFD00B4B196804310C48FFF7A2FBF5E700 +:1092E0000B4B1868064B19680431FFF7A5FB094BB7 +:1092F0001B68A342EAD9074B1C60E7E7AC5F00207C +:10930000885E0020305F0020905E0020845F002097 +:109310008C5E0020605F002030B587B00B9C7CB174 +:109320000C9DB5B164250495049D642D1AD04FF0B1 +:10933000500383F31188BFF36F8FBFF34F8FFEE7A6 +:109340004FF0500383F31188BFF36F8FBFF34F8F3C +:10935000FEE74FF0500383F31188BFF36F8FBFF325 +:109360004F8FFEE7049D0C9D2C63022485F861401D +:1093700000240394029505AC01940A9C0094FFF725 +:109380004FFE0C98FFF7D2FE059807B030BD2DE9CF +:10939000F04385B00746884614461E469000FFF706 +:1093A0006DFD00B381466420FFF768FD0546B0B14E +:1093B000C0F83090E5B1002385F861300393029541 +:1093C0000D9B01930C9B0093334622464146384641 +:1093D000FFF726FE2846FFF7A9FE012005E04846D4 +:1093E000FFF7CAFDE6E74FF0FF3005B0BDE8F083B8 +:1093F0004FF0FF30F9E7000038B50446FFF7B2FB45 +:10940000002C33D0251D2846FFF72FFB68B9E26AF0 +:1094100002EB82039B002749CB5833B901239340C9 +:1094200025490A6822EA03020A60A36A1BB104F113 +:109430001800FFF71AFB214A136801331360204B11 +:109440001B68A34215D01F4A1368013B13602046D6 +:10945000FFF7C0FEFFF7CEFDFFF7A6FB1A4B1B6818 +:109460001BB1174B1B68A3420CD038BD144B1C68B2 +:10947000C8E729461548FFF7D4FA154A136801339F +:109480001360E9E7134B1B6843B14FF0500383F3BC +:109490001188BFF36F8FBFF34F8FFEE74FF0E023CC +:1094A0004FF08052C3F8042DBFF34F8FBFF36F8F7F +:1094B000DBE700BF945E0020305F00202C5F0020BF +:1094C000885E0020205F0020805F0020985F0020E1 +:1094D000245F0020285F002010B588B00024059488 +:1094E000069407AA06A905A800F006FF059B0293AB +:1094F000069B019300942346079A0E490E48FFF7F6 +:109500000BFF0E4B186090B14FF0500383F311889E +:10951000BFF36F8FBFF34F8F094B4FF0FF321A60CD +:10952000084B01221A60084B1C60FFF7B5FB08B01E +:1095300010BD00BF5CE20108599200085C5F00208A +:10954000605F0020805F0020AC5F0020024A13684B +:1095500001331360704700BF285F0020F8B53A4B15 +:109560001B68002B69D1394B1D6801351D60C5B9D9 +:10957000374B1B681B6843B14FF0500383F31188CE +:10958000BFF36F8FBFF34F8FFEE7314A1168314B46 +:10959000186810601960304A136801331360FFF7D0 +:1095A00029FD2E4B1B68AB423DD900272C4B1B6875 +:1095B000DB6A03EB83039A002A4B9B58012B00D9EB +:1095C0000127294B1B68002B3CD001273AE00127DB +:1095D0001F4B1B681B6843B31D4B1B68DB68DC68B3 +:1095E00063689D4226D3261D3046FFF73EFAA36AE4 +:1095F0001BB104F11800FFF738FAE36A01229A4020 +:109600001A49086802430A6003EB83039A00314653 +:1096100014481044FFF705FAE26A114B1B68DB6A35 +:109620009A42D4D2D4E70027D2E70C4B4FF0FF3256 +:109630001A60BBE7094A1360B8E70D4A13680133A3 +:10964000136000273846F8BD285F0020AC5F00207B +:109650008C5E0020905E0020645F0020605F002030 +:10966000885E0020945E0020B05F0020305F002004 +:10967000685F002038B5354B1B6843B94FF0500385 +:1096800083F31188BFF36F8FBFF34F8FFEE7FFF7B0 +:1096900069FA2E4B1A68013A1A601B68002B4FD1E9 +:1096A0002B4B1B680BB900244BE00024294B1B6893 +:1096B0001BB3284BDB68DC6804F11800FFF7D5F911 +:1096C000251D2846FFF7D1F9E06A01238340224A8D +:1096D00011680B43136000EB800029461F4B03EB1E +:1096E0008000FFF79EF9E26A1D4B1B68DB6A9A4215 +:1096F000DCD31C4B01221A60D8E70CB1FFF77AFCCF +:10970000194B1C6884B9174B1C68D4B14FF0E02387 +:109710004FF08052C3F8042DBFF34F8FBFF36F8F0C +:1097200001240EE0013C07D0FFF718FF0028F9D014 +:109730000C4B01221A60F5E70B4B00221A60E2E79E +:109740000024FFF731FA204638BD00BF285F002013 +:10975000205F00206C5F0020305F0020945E0020BE +:10976000885E0020B05F0020685F002010B5A8B1BF +:109770000446104B1B6843B14FF0500383F311882C +:10978000BFF36F8FBFF34F8FFEE7FFF7DFFE0021C0 +:109790002046FFF775FDFFF76DFF48B94FF0E02356 +:1097A0004FF08052C3F8042DBFF34F8FBFF36F8F7C +:1097B00010BD00BF285F0020204B1B681BB1204B51 +:1097C00001221A6070471E4B00221A601D4B1B6855 +:1097D000B3FA83F3DBB2C3F11F0303EB83018A0007 +:1097E00019498A5842B94FF0500383F31188BFF3E7 +:1097F0006F8FBFF34F8FFEE7134903EB83008200A7 +:109800000A4450684068506003EB830C4FEA8C02B6 +:1098100008321144884209D003EB83039A000A4BB3 +:1098200013445B68DA68094B1A6070474068624607 +:109830009100054A0A445060EEE700BF285F00200F +:10984000B05F0020305F0020945E0020885E002022 +:109850000369C268934204D88068801A0344581E82 +:1098600070479B1A581E70472DE9F84304468846F6 +:109870001646C5688768A7EB0509914509D9406870 +:109880002844F7F70DFBBFF35F8F3544E560BDE873 +:10989000F88340684A462844F7F702FBED1B35443D +:1098A0002A4608EB09016068F7F7FAFABFF35F8F01 +:1098B000E560ECE72DE9F843064688461746C5689B +:1098C0004FF000091AE0641B621EB3685C1B9442EF +:1098D00028BF1446BC4228BF3C4670682246414619 +:1098E0002844F7F7DDFAA144A0443F1B2544B368A0 +:1098F000AB420BD0BFF35F8FF5604FB13469A54227 +:10990000E1D3B268641B1444621EDEE70025F1E770 +:109910004846BDE8F883000010B5154CA822002188 +:1099200020460BF02BFB032323616361114AA261E4 +:10993000114BE3614FF4806323620023A3626362EF +:10994000E36222660D4A62661022A2662367E3661E +:109950006367BFF35F8F06E0C3F10F020849895CBC +:10996000034AD15401330F2BF6D9BFF35F8F10BDDB +:10997000B45F002064E201086C6000205C6000209D +:1099800070E20108F8B50F461646184B451C05EB6A +:10999000450503EBC50500EB400003EBC000C46ABE +:1099A000012C11D0022C1CD014B100242046F8BD8B +:1099B0002846FFF74DFF8642F8D8324639462846FA +:1099C000FFF752FF3446F1E72846FFF741FF3446E0 +:1099D000864228BF0446224639462846FFF744FF00 +:1099E000E4E72846FFF766FF0446DFE7B45F0020A0 +:1099F000F8B504460D461646094B1B786BB1EFF3DC +:109A000011874FF0200181F3118832462946204604 +:109A1000FFF7B8FF87F31188F8BDFFF77DFFEEE78A +:109A2000B45F002008B5FFF777FF08BD10B5044606 +:109A30008268531C4068834205D820688154A36023 +:109A4000E3680133E360A26863689A4200D010BD06 +:109A500021682069FFF7CCFFA368984203D04FF03C +:109A6000FF33E360F3E70023A360F0E72DE9F84F4D +:109A700081460F4615461E46DDF828A00B9A0B4678 +:109A80004FF0010803E0B3FBF5F308F10108AB4226 +:109A9000F9D2B04500D2B04612F0010B18D1BAF19C +:109AA000000F15D012F0020F02D0BEB1202400E04A +:109AB0002024BAF1000F0BD0C24509D90AF1FF3AB0 +:109AC00021464846FFF7B2FFD9F80C30002BF0DAF8 +:109AD000D9F80C30002B25DB012404E03024E8E722 +:109AE000013E05FB04F4012EFAD8B7FBF4F39D42C6 +:109AF000F7D900E01C46B7FBF4F304FB1377124AD6 +:109B0000D15C4846FFF792FFD9F80C30002B03DBFD +:109B1000B4FBF5F3AC42EDD2BBF1000F02D0BAF1C9 +:109B2000000F01D1BDE8F88FBAF1000FFAD0C2459D +:109B3000F8D90AF1FF3A20214846FFF777FFD9F814 +:109B40000C30002BF0DAEDE784E201082DE9F04754 +:109B500082B007468846154699460A9EDDF82CA035 +:109B600081EAE17CACEBE17C012402E09CFBF5FCAA +:109B700001346545FADD4C4500D24C4636B1B8F1AA +:109B8000000F02DB1AF0040F00D0013E1AF0020FA2 +:109B900002D0B9F1000F03D01AF0010F00D1AEB915 +:109BA000FB68002B0FDBB8F1000F1CDB1AF0040F71 +:109BB00020D1FB68002B06DB0AF00303022B1ED02A +:109BC000FB68002B2DDA02B0BDE8F087002EE7D04D +:109BD000A642E5D9013E20213846FFF727FFFB6862 +:109BE000002BF3DADCE7C8F100082D213846FFF737 +:109BF0001DFFDEE72B213846FFF718FFD9E7B9F143 +:109C0000000FDDD1002EDBD0002ED9D0A642D7D94F +:109C1000013E30213846FFF709FFFB68002BF3DADD +:109C2000CEE7CDF804A000964B462A46414638467A +:109C3000FFF71CFFC7E70000F0B599B006460C46D9 +:109C4000154603AB139340231493002315931790E9 +:109C500016938AE00020012211E040F00100013457 +:109C60000CE040F00200013408E040F00400013450 +:109C700004E040F00800013400E0002212B3237831 +:109C8000233B0D2BF9D801A151F823F0739C000858 +:109C90007B9C00087B9C00087B9C00087B9C000848 +:109CA0007B9C00087B9C00087B9C00086B9C000848 +:109CB0007B9C00085B9C00087B9C00087B9C000848 +:109CC000639C00082378A3F13001C9B2092907D8A1 +:109CD000013402EB820203EB4203A3F13002F1E70D +:109CE0002E2B02D00023217813E00134002305E05D +:109CF000013403EB830301EB4303303B2178A1F1F3 +:109D0000300C5FFA8CFCBCF1090FF1D9EBE714F8C9 +:109D1000011F6C29FBD06829F9D025296DD020D3EB +:109D200078291ED858291CD35839202919D8DFE89A +:109D300001F03D18181818181818181818112718B5 +:109D4000181818181818181818185718184818320A +:109D500018183D002B681A1D2A60197813A8FFF700 +:109D600065FE0134169B002B4CDB14F8011B002907 +:109D700048D025293FF46EAF13A8FFF757FEF1E74F +:109D800029680F1D2F600968019000920A2213A80C +:109D9000FFF7DCFEE5E729680F1D2F6009680190D9 +:109DA00000920A2213A8FFF761FEDAE729680F1D67 +:109DB0002F60096801900092102213A8FFF756FE49 +:109DC000CFE72B681A1D2A601F6817F8011B0029AE +:109DD000C7D013A8FFF72AFE169B002BF5DAC0E7C1 +:109DE0002B681A1D2A601968002301930823009329 +:109DF000102213A8FFF73AFEB3E7252113A8FFF7B7 +:109E000015FEAEE7169B002B05DD159A32B9159AA3 +:109E1000169B13441693169819B0F0BD03A930464B +:109E2000FFF7E6FDF3E700BF0EB400B582B003AB69 +:109E300053F8041B019301AAFFF7FEFE02B05DF880 +:109E400004EB03B07047000000B585B00023009319 +:109E50000193029303931548154A02604FF40032B0 +:109E6000426083600361037680F82030C362114A48 +:109E70008262C3600122C26180F830304261F7F72C +:109E8000CFFB68B9102300930123019300230293B1 +:109E900069460648F7F7F0FB28B905B05DF804FB02 +:109EA00000F054FCEEE700F051FCF6E76C64002093 +:109EB000002001400100000F0268184B9A4200D0B8 +:109EC000704710B582B0044600230193144A516CC8 +:109ED00041F480715164526C02F480720192019AD3 +:109EE0001048114A026043608360C3604FF480628F +:109EF00002614FF4006242614FF400528261C3611B +:109F000003624362F8F7AAF920B9064BA3639C6386 +:109F100002B010BD00F01AFCF7E700BF00200140BE +:109F200000380240B46400207064024008B50E4856 +:109F30000E4B03600323436000238360C3604FF430 +:109F4000102202614FF40012426103764376837659 +:109F50000122C27603774277F7F75AFC00B908BDB1 +:109F600000F0F4FBFBE700BF186500200064004030 +:109F700008B50E480E4B0360032343600023836043 +:109F8000C3604FF4102202614FF400124261037665 +:109F9000437683760122C27603774277F7F738FC5F +:109FA00000B908BD00F0D2FBFBE700BF4065002010 +:109FB0000068004010B58AB000230593069307930C +:109FC000089309930368454A934204D0444A934254 +:109FD0003CD00AB010BD434A136801331360012B13 +:109FE00027D000240194404B1A6B42F008021A63F8 +:109FF0001B6B03F008030193019B032305930222CB +:10A00000069208930923099305A93848F8F72CFC10 +:10A01000224605211420F8F70FF81420F8F744F829 +:10A02000224605211520F8F707F81520F8F73CF827 +:10A03000CFE7002300932C4B1A6C42F000721A6495 +:10A040001B6C03F000730093009BCAE7002302938C +:10A05000254B1A6C42F080621A641B6C03F080631B +:10A060000293029B1F4A136801331360012B28D00F +:10A07000002404941C4B1A6B42F002021A631B6BFF +:10A0800003F002030493049B6023059302230693C9 +:10A09000032308930923099305A91548F8F7E4FB5E +:10A0A000224605214020F7F7C7FF4020F7F7FCFFC5 +:10A0B000224605214120F7F7BFFF4120F7F7F4FFC3 +:10A0C00087E700230393084B1A6C42F000721A646E +:10A0D0001B6C03F000730393039BC9E7006400400B +:10A0E000006800401465002000380240000C024067 +:10A0F0000004024008B50548054B0360F7F7E2FF8E +:10A1000000B908BD00F022FBFBE700BF6865002036 +:10A11000003002400268094B9A4200D0704782B07A +:10A1200000230193064B1A6B42F480521A631B6B97 +:10A1300003F480530193019B02B07047003002404A +:10A140000038024000B583B00023009301930C480F +:10A150000C4B0360F7F7C5FF58B900230093019338 +:10A16000102269460648F7F7CEFF28B903B05DF81C +:10A1700004FB00F0EBFAF0E700F0E8FAF6E700BFC6 +:10A18000706500200074004000B589B0002303937F +:10A1900004930593069307930268134B9A4202D0E7 +:10A1A00009B05DF804FB0021019103F5E2331A6C5C +:10A1B00042F000521A641A6C02F000520192019AA5 +:10A1C00002911A6B42F001021A631B6B03F0010348 +:10A1D0000293029B202303930323049303A90348C0 +:10A1E000F8F742FBDCE700BF0074004000000240CB +:10A1F00010B582B0002400943A4B1A6B42F48002EE +:10A200001A631A6B02F480020092009A01941A6B8E +:10A2100042F400121A631B6B03F400130193019BB9 +:10A22000224605210C20F7F707FF0C20F7F73CFF2B +:10A23000224605210D20F7F7FFFE0D20F7F734FF2A +:10A24000224605210E20F7F7F7FE0E20F7F72CFF28 +:10A25000224605210F20F7F7EFFE0F20F7F724FF26 +:10A26000224605212F20F7F7E7FE2F20F7F71CFFE6 +:10A27000224605213820F7F7DFFE3820F7F714FFD4 +:10A28000224605213A20F7F7D7FE3A20F7F70CFFD0 +:10A29000224605213B20F7F7CFFE3B20F7F704FFCE +:10A2A000224605213C20F7F7C7FE3C20F7F7FCFECD +:10A2B000224605214420F7F7BFFE4420F7F7F4FEBD +:10A2C000224605214520F7F7B7FE4520F7F7ECFEBB +:10A2D000224605214620F7F7AFFE4620F7F7E4FEB9 +:10A2E00002B010BD0038024008B501F065FB012046 +:10A2F000FEF782FBFBE70000034B0360034B0B60A0 +:10A3000080231360704700BF8867002088650020A5 +:10A3100010B588B00DF1040C074C0FCCACE80F0061 +:10A3200094E807008CE80700002101A8FEF72FFB46 +:10A33000024B186008B010BD88E101088465002058 +:10A340002DE9F0478EB0002409940A940B940C94E4 +:10A350000D940094684B1A6B42F002021A631A6B58 +:10A3600002F002020092009A01941A6B42F040023D +:10A370001A631A6B02F040020192019A02941A6B5E +:10A3800042F001021A631A6B02F001020292029A71 +:10A3900003941A6B42F008021A631A6B02F0080267 +:10A3A0000392039A04941A6B42F004021A631A6B24 +:10A3B00002F004020492049A05941A6B42F480722B +:10A3C0001A631A6B02F480720592059A06941A6B4E +:10A3D00042F020021A631A6B02F020020692069ADB +:10A3E00007941A6B42F080021A631A6B02F0800223 +:10A3F0000792079A08941A6B42F010021A631B6BBB +:10A4000003F010030893089B3C4F22464021384636 +:10A41000F8F71CFB3A4E012210213046F8F716FBE4 +:10A42000DFF8E080012211464046F8F70FFB402399 +:10A43000099301250A950B940C9409A93846F8F75D +:10A4400013FA082309934FF40419CDF828900B95BB +:10A4500009A93846F8F708FA09950A940B9509A94D +:10A460003046F8F701FA102309930A950B95022755 +:10A470000C9709A93046F8F7F7F94FF4807ACDF830 +:10A4800024A00A950B950C9506F5006609A930469F +:10A49000F8F7EAF92A4651463046F8F7D7FA30235A +:10A4A0000993CDF828900B9409A93046F8F7DCF908 +:10A4B00009950A950B950C9709A94046F8F7D4F928 +:10A4C000224605210920F7F7B7FD0920F7F7ECFD33 +:10A4D000224605210A20F7F7AFFD0A20F7F7E4FD31 +:10A4E000224605211720F7F7A7FD1720F7F7DCFD17 +:10A4F0000EB0BDE8F08700BF0038024000180240EF +:10A50000000002400004024008B50B480B4B0360FA +:10A510000B4B436000238360C3604FF480420261B1 +:10A5200043618361C3610362F8F764FC00B908BD4D +:10A5300000F00CF9FBE700BFAC68002000580040B9 +:10A54000801A060008B50B480B4B03600B4B4360A9 +:10A5500000238360C3604FF48042026143618361E2 +:10A56000C3610362F8F746FC00B908BD00F0EEF8DD +:10A57000FBE700BF00690020005C0040801A060075 +:10A580002DE9F0418AB000230593069307930893C1 +:10A59000099303685D4A934205D05D4A934269D0AE +:10A5A0000AB0BDE8F081044600250095594E336B92 +:10A5B00043F020033363336B03F020030093009BCD +:10A5C000032305931222069208930423099305A9F5 +:10A5D0005148F8F749F90195336C43F4800333642B +:10A5E000336C03F480030193019B4C484C4B036094 +:10A5F0004FF0606343608560C5604FF48063036122 +:10A6000045618561C56105624562F7F727FE58BB64 +:10A61000424BA3639C634348434B03604FF060632A +:10A620004360402383600023C3604FF48062026173 +:10A6300043618361C36103624362F7F70FFEB0B900 +:10A64000384B63639C63002205212120F7F7F4FC5B +:10A650002120F7F729FD002205212220F7F7ECFC45 +:10A660002220F7F721FD9BE700F070F8D0E700F01B +:10A670006DF8E5E700250295264C236B43F00403B3 +:10A680002363236B03F004030293029B0395236B64 +:10A6900043F001032363236B03F001030393039B44 +:10A6A0004FF4007305934FF01208CDF8188003277C +:10A6B00008970426099605A91C48F8F7D5F84FF421 +:10A6C00080730593CDF8188007950897099605A91A +:10A6D0001748F8F7C9F80495236C43F40003236482 +:10A6E000236C03F400030493049B2A4605214820AD +:10A6F000F7F7A2FC4820F7F7D7FC2A4605214920A6 +:10A70000F7F79AFC4920F7F7CFFC49E700580040DB +:10A71000005C00400038024000140240EC6700205A +:10A72000406002404C680020B860024000080240CF +:10A730000000024008B50268034B9A4200D008BDF1 +:10A74000F6F7AEFEFBE700BF0020004072B6FEE762 +:10A7500000B595B03022002108A80AF00FFC0023B4 +:10A76000039304930593069307930193204A116C76 +:10A7700041F080511164126C02F080520192019AF2 +:10A7800002931C4B1A6842F480421A601B6803F45F +:10A7900080430293029B012308934FF48033099373 +:10A7A00002230E934FF480020F9206221092A822E9 +:10A7B000119212930723139308A8FAF779F898B91E +:10A7C0000F23039302230493002305934FF4A05314 +:10A7D00006934FF480530793052103A8FAF7B6FABE +:10A7E00020B915B05DF804FBFFF7B0FFFFF7AEFF2F +:10A7F000003802400070004000B583B0F6F736FE26 +:10A80000FFF7A6FFFFF79CFDFFF7F2FCFFF71CFB2D +:10A81000FFF78CFBFFF7ACFB00F09CF800F08CFD21 +:10A8200000F0E2FD00F024FF00F02EF800F054F8F4 +:10A8300000F0F2FC00F0C8FE00F000FF00F038FF6E +:10A8400000F03CFEFFF760FEFFF77CFE00F0A6F88C +:10A85000FFF750FCFFF776FC02F098FC064B0093E4 +:10A86000064B074A07490020FFF7DEFAFFF750FDC5 +:10A87000FEF788F8FEE700BFE0E20108A0E2010869 +:10A88000A4E20108ACE2010808B50548054B0360E5 +:10A89000FAF7FAFB00B908BDFFF758FFFBE700BF66 +:10A8A00054690020000806500268094B9A4200D003 +:10A8B000704782B000230193064B5A6B42F040026E +:10A8C0005A635B6B03F040030193019B02B0704736 +:10A8D000000806500038024008B50A480A4B0360D9 +:10A8E000002343607C22826040F67F42C2600361A5 +:10A8F00043618361FAF730FC00B908BDFFF726FF1A +:10A90000FBE700BF646900200028004000B585B067 +:10A910000023009301930293039302680A4B9A4227 +:10A9200002D005B05DF804FB02230093074B0393AC +:10A930006846FAF7FFFA20B9054B0122C3F83C2E0E +:10A94000EFE7FFF703FFF7E70028004000031E00D2 +:10A950000000474208B50F480F4B03604FF4827365 +:10A96000436000238360C3600222026101224261CE +:10A970004FF4007282611022C261036243628362FB +:10A980000A23C362FAF7CCFC00B908BDFFF7DEFE6C +:10A99000FBE700BF046B00200030014008B50F4802 +:10A9A0000F4B03604FF48273436000238360C360E6 +:10A9B00002220261012242614FF400728261382258 +:10A9C000C2610362436283620A23C362FAF7A8FC8E +:10A9D00000B908BDFFF7BAFEFBE700BF5C6B0020C3 +:10A9E000003800402DE9F0438BB004460023059366 +:10A9F00006930793089309930368774A934206D016 +:10AA0000764A934200F082800BB0BDE8F0830025C7 +:10AA10000095734B5A6C42F480525A645A6C02F49B +:10AA200080520092009A01951A6B42F002021A635A +:10AA30001A6B02F002020192019A02951A6B42F01F +:10AA400001021A631B6B03F001030293029B18239C +:10AA500005934FF00209CDF818904FF00108CDF89A +:10AA60001C80032608960527099705A95D48F7F776 +:10AA7000FBFE80230593CDF81890CDF81C80089636 +:10AA8000099705A95848F7F7EFFE5848584B036057 +:10AA90004FF0C06343608560C5604FF4806303611D +:10AAA00045618561C5610562042343628662C562B2 +:10AAB0000563F7F7D3FB18BB4C4BE3649C634D482D +:10AAC0004D4B03604FF0C06343604023836000231D +:10AAD000C3604FF48062026143618361C3610362BA +:10AAE0004362F7F7BBFB70B9424BA3649C6300223F +:10AAF00005212320F7F7A0FA2320F7F7D5FA83E7FB +:10AB0000FFF724FED8E7FFF721FEEDE700250395C8 +:10AB1000334B1A6C42F480421A641A6C02F480427D +:10AB20000392039A04951A6B42F002021A631B6B9C +:10AB300003F002030493049B4FF460430593022344 +:10AB40000693032608960523099305A92548F7F7D8 +:10AB50008BFE2A482A4B036045608560C5604FF430 +:10AB60008063036145618561C561056204234362B9 +:10AB70008662C5620563F7F771FB30BB1F4BE36468 +:10AB80009C632048204B0360002343604022826086 +:10AB9000C3604FF48062026143618361C3610362F9 +:10ABA0000422426203228262C3620363F7F756FB08 +:10ABB00070B9144BA3649C63002205212420F7F78D +:10ABC0003BFA2420F7F770FA1EE7FFF7BFFDD5E741 +:10ABD000FFF7BCFDEDE700BF00300140003800404A +:10ABE0000038024000040240000002408469002056 +:10ABF00010640240E469002058640240446A002066 +:10AC000058600240A46A00207060024010B582B013 +:10AC100000240094114B5A6C42F480425A645A6CDE +:10AC200002F480420092009A01941A6C42F0805221 +:10AC30001A641B6C03F080530193019B22460F2181 +:10AC40006FF00100F7F7F8F9224606210420F7F724 +:10AC5000F3F90420F7F728FA02B010BD00380240DB +:10AC600030B589B0044600230193214B1A6C42F49D +:10AC700080721A641B6C03F480730193019B02A918 +:10AC800003A8FAF739F9069BCBB9FAF715F9034689 +:10AC90001848A0FB03239B0C013B1748174A02608E +:10ACA00040F2E732C2604360002303618360836146 +:10ACB000FAF77AFF054630B1284609B030BDFAF7F9 +:10ACC000FBF84300E4E70C48FAF704FE05460028C9 +:10ACD000F2D12D20F7F7E8F90F2C01D90125EBE788 +:10ACE000002221462D20F7F7A7F9054B1C60E3E76A +:10ACF0000038024083DE1B43B46B0020002000407C +:10AD000004000020FEE7FEE7FEE7FEE7FEE77047EF +:10AD100008B5F7F7D5FC08BD08B50820F7F79CFE85 +:10AD200008BD08B51020F7F797FE08BD08B5024822 +:10AD3000F7F78CFB08BD00BF286E002008B502485D +:10AD4000F7F784FB08BD00BFEC67002008B5024898 +:10AD5000F7F77CFB08BD00BF446A002008B5024835 +:10AD6000F7F774FB08BD00BFA46A002008B50248CD +:10AD7000F7F72AF808BD00BF1865002008B502489B +:10AD8000F7F722F808BD00BF1865002008B520209D +:10AD9000F7F762FE08BD000008B50248F8F7ECFDC1 +:10ADA00008BD00BFAC68002008B50248F8F7B4FE43 +:10ADB00008BD00BFAC68002008B50248FAF72CFCBB +:10ADC00008BD00BF046B002008B50248FAF724FC58 +:10ADD00008BD00BF5C6B002008B50248FBF7F8FC1B +:10ADE00008BD00BF486F002008B50248FBF7F0FC23 +:10ADF00008BD00BF8C6F002008B50348FAF7B3FD0B +:10AE00000248FAF7B0FD08BD206D0020B46B0020A9 +:10AE100008B50248F7F71AFB08BD00BF4C680020D0 +:10AE200008B50248F7F712FB08BD00BF846900208F +:10AE300008B50248F7F70AFB08BD00BF886E00207E +:10AE400008B50248F7F702FB08BD00BFE46900201F +:10AE500008B50248F7F7FAFA08BD00BFB46400204D +:10AE600008B50248F6F7B0FF08BD00BF40650020F6 +:10AE700008B50248F6F7A8FF08BD00BF40650020EE +:10AE800008B50248F9F706FA08BD00BFF8820020AD +:10AE900008B50248F7F7DAFA08BD00BF686D002070 +:10AEA00008B50248F7F7D2FA08BD00BFE86E0020E7 +:10AEB00008B50248F7F7CAFA08BD00BFC86D002000 +:10AEC00008B50248FBF784FC08BD00BFD06F002026 +:10AED00008B50248F8F750FD08BD00BF0069002022 +:10AEE00008B50248F8F718FE08BD00BF0069002049 +:10AEF0000120704708B509F049FD162303604FF0A3 +:10AF0000FF3008BD08B54FF0FF31FFF7F3FFFEE754 +:10AF100070B50C461646002506E0AFF300802146CA +:10AF200001F8010B01350C46B542F6DB304670BD29 +:10AF300070B50C461646002504E014F8010BAFF37B +:10AF400000800135B542F8DB304670BD4FF0FF3070 +:10AF500070474FF400534B6000207047012070474A +:10AF60000020704710B503460C4A0D490D48006893 +:10AF700040B10C4800680344521A934206D8094A6B +:10AF8000136010BD0748084C0460F2E709F0FEFCAE +:10AF90000C2303604FF0FF30F3E700BF00000220F6 +:10AFA00000500000FC6B0020E89D0020034AD2F80E +:10AFB000883043F47003C2F88830704700ED00E039 +:10AFC00000B587B003682C4A934218D02B4A9342AD +:10AFD00024D02B4A93422ED02A4A934238D02A4A70 +:10AFE000934218D100230593284B5A6C42F4003247 +:10AFF0005A645B6C03F400330593059B0BE000235C +:10B000000193224B5A6C42F001025A645B6C03F0CC +:10B0100001030193019B07B05DF804FB0023029339 +:10B020001A4B1A6C42F004021A641B6C03F00403FE +:10B030000293029BEFE700230393144B1A6C42F038 +:10B0400008021A641B6C03F008030393039BE2E7F6 +:10B05000002204920D4B596C41F0020159645B6C63 +:10B0600003F002030493049B0F212D20F6F7E4FF65 +:10B070002D20F7F719F8CEE7000001400008004046 +:10B08000000C004000040140004401400038024030 +:10B0900070B58CB000230793089309930A930B9320 +:10B0A0000368514A93420DD0504A934222D0504AED +:10B0B00093423AD04F4A934251D04F4A934279D06B +:10B0C0000CB070BD002301934C4B1A6B42F0100280 +:10B0D0001A631B6B03F010030193019B4FF4D443DD +:10B0E00007930223089301230B9307A94448F7F71A +:10B0F000BBFBE5E700230293404B1A6B42F00802CA +:10B100001A631B6B03F008030293029B4FF4804306 +:10B110000793022308930122099203220A920B93B8 +:10B1200007A93848F7F7A0FBCAE700230393334B7E +:10B130001A6B42F080021A631B6B03F080030393C7 +:10B14000039B4FF4E05307930223089301220992D3 +:10B150000A930B9307A92C48F7F786FBB0E7002466 +:10B160000494264B1A6B42F480721A631A6B02F431 +:10B1700080720492049A05941A6B42F004021A63D6 +:10B180001B6B03F004030593059BC0230793022662 +:10B19000089603250B9507A91C48F7F765FB402384 +:10B1A0000793089609940A940B9507A91848F7F78E +:10B1B0005BFB85E700230693104B1A6B42F02002DD +:10B1C0001A631B6B03F020030693069B402307932F +:10B1D00002230893012209920A9303230B9307A9E0 +:10B1E0000C48F7F741FB6BE7000001400008004006 +:10B1F000000C0040000401400044014000380240BF +:10B2000000100240000C0240001C024000200240DE +:10B21000000802400014024010B596B000241294B9 +:10B220001394149415941094119409940A940B9403 +:10B230000C940D940E940F942022214601A809F03D +:10B240009DFE3B483B4B0360A7234360846044F66C +:10B250001F63C360046144618461FAF7A5FC0028A0 +:10B260004BD14FF48053129312A93148FAF702FEE2 +:10B27000002845D12E48FAF7EFFC002843D10023DF +:10B280001093119310A92A48FAF704FF00283DD122 +:10B290006023099300220A920B920C920D920E9257 +:10B2A0000F9209A92248FAF76AFD002831D1042239 +:10B2B00009A91F48FAF763FD70BB082209A91C48B9 +:10B2C000FAF75DFD58BB0C2209A91948FAF757FD9A +:10B2D00040BB0023019302930393049305934FF41F +:10B2E00000520692089301A91148FAF719FFE0B934 +:10B2F0000F48FFF7CDFE16B010BDFFF727FAB0E7F5 +:10B30000FFF724FAB6E7FFF721FAB8E7FFF71EFACE +:10B31000BEE7FFF71BFACAE7FFF718FACDE7FFF71A +:10B3200015FAD0E7FFF712FAD3E7FFF70FFADFE7D6 +:10B33000006C00200000014000B58FB000230A938C +:10B340000B930C930D93089309930193029303932A +:10B3500004930593069307932148224A0260A7228B +:10B36000426083604FF6FF72C26003618361FAF747 +:10B370001BFC28BB4FF480530A930AA91848FAF71C +:10B3800079FD00BB1648FAF767FCF8B9002308936B +:10B39000099308A91248FAF77DFED0B960230193FA +:10B3A0000023029303930593082201A90C48FAF79E +:10B3B000E6FC88B90A48FFF76BFE0FB05DF804FBA6 +:10B3C000FFF7C4F9D6E7FFF7C1F9DBE7FFF7BEF9EE +:10B3D000DCE7FFF7BBF9E1E7FFF7B8F9EAE700BF01 +:10B3E000906C00200008004000B58FB000230A9345 +:10B3F0000B930C930D93089309930193029303937A +:10B4000004930593069307932A482B4A02604360EE +:10B4100083604FF6FF72C26003618361FAF7C4FB79 +:10B42000002831D14FF480530A930AA92148FAF732 +:10B4300021FD60BB1F48FAF70FFC58BB002308939F +:10B44000099308A91B48FAF725FE30BB6023019336 +:10B45000002202920392059201A91648FAF78FFC86 +:10B46000F0B904220DEB02011248FAF788FCD0B9BA +:10B47000082201A90F48FAF782FCB8B90D48FFF776 +:10B4800007FE0FB05DF804FBFFF760F9CAE7FFF7AE +:10B490005DF9CFE7FFF75AF9D0E7FFF757F9D5E79E +:10B4A000FFF754F9DDE7FFF751F9E1E7FFF74EF950 +:10B4B000E4E700BFD86C0020000C004010B596B047 +:10B4C00000241294139414941594109411940994D4 +:10B4D0000A940B940C940D940E940F942022214600 +:10B4E00001A809F04BFD3648364B0360A7234360A3 +:10B4F000846044F61F63C360046144618461FAF7A9 +:10B5000053FB002843D14FF48053129312A92C48C7 +:10B51000FAF7B0FC00283DD12948FAF771FB002862 +:10B520003BD100231093119310A92548FAF7B2FDDF +:10B53000002835D1002209920A920B920C920D92AA +:10B540000E920F9209A91E48FAF7EAFB58BB042293 +:10B5500009A91B48FAF7E4FB40BB082209A91848CF +:10B56000FAF7DEFB28BB00230193029303930493B5 +:10B5700005934FF400520692089301A91048FAF778 +:10B58000CFFDC8B90E48FFF783FD16B010BDFFF719 +:10B59000DDF8B8E7FFF7DAF8BEE7FFF7D7F8C0E75E +:10B5A000FFF7D4F8C6E7FFF7D1F8D0E7FFF7CEF8FA +:10B5B000D3E7FFF7CBF8D6E7FFF7C8F8E2E700BF1D +:10B5C000206D00200004014000B589B000230193E4 +:10B5D0000293039304930593069307931548164A21 +:10B5E0000260A7224260836041F28732C260036139 +:10B5F0008361FAF7D9FAA0B90E48FAF72DFB98B98A +:10B6000060230193002202920392059201A9094846 +:10B61000FAF7B5FB58B90748FFF73AFD09B05DF8EE +:10B6200004FBFFF793F8E7E7FFF790F8E8E7FFF789 +:10B630008DF8F0E7486C00200044014008B50A4846 +:10B640000A4B03604FF46123436000238360C360AF +:10B6500003610C2242618361C361FAF7C7FE00B93E +:10B6600008BDFFF773F8FBE7486F002000100140AA +:10B6700008B50C480C4B03600C4B43604FF48053EF +:10B6800083600023C3604FF4806202610C22426138 +:10B690008361C361FAF7AAFE00B908BDFFF756F847 +:10B6A000FBE700BF8C6F002000480040A08601002F +:10B6B00008B50A480A4B03604FF4E13343600023A6 +:10B6C0008360C36003610C2242618361C361FAF746 +:10B6D0008DFE00B908BDFFF739F8FBE7D06F0020F9 +:10B6E000001401402DE9F0418CB00446002307937B +:10B6F000089309930A930B9303689D4A93420AD0D7 +:10B700009C4A934200F082809B4A934200F0C3809F +:10B710000CB0BDE8F08100250095984B5A6C42F0C2 +:10B7200010025A645A6C02F010020092009A0195BD +:10B730001A6B42F002021A631A6B02F002020192C3 +:10B74000019A02951A6B42F001021A631B6B03F017 +:10B7500001030293029B802307934FF00208CDF868 +:10B76000208003270A9707260B9607A98448F7F736 +:10B770007BF84FF400730793CDF8208009950A9762 +:10B780000B9607A97F48F7F76FF87F487F4B036058 +:10B790004FF00063436040238360C5604FF48063D3 +:10B7A000036145618561C5614FF4403303624562C1 +:10B7B000F6F754FD20BB744B63639C637448754B70 +:10B7C00003604FF00063436000238360C3604FF465 +:10B7D0008062026143618361C3614FF4403202625F +:10B7E0004362F6F73BFD70B9694BA3639C6300228B +:10B7F00005212520F6F720FC2520F6F755FC87E7E4 +:10B80000FEF7A4FFD7E7FEF7A1FFEDE700250395BC +:10B810005A4B1A6C42F480221A641A6C02F4802289 +:10B820000392039A04951A6B42F004021A631B6B8D +:10B8300003F004030493049B4FF440630793022333 +:10B84000089303230A9307230B9307A95248F7F79A +:10B850000BF85248524B03604FF000634360856021 +:10B86000C5604FF48063036145618561C561056210 +:10B870004562F6F7F3FC58B9484BA3639C6300227A +:10B8800005212720F6F7D8FB2720F6F70DFC3FE728 +:10B89000FEF75CFFF0E700250595384B5A6C42F047 +:10B8A00020025A645A6C02F020020592059A06950D +:10B8B0001A6B42F040021A631B6B03F040030693BD +:10B8C000069B4FF4844307930223089303260A96AA +:10B8D00008230B9307A93348F6F7C6FF3248334BCA +:10B8E00003604FF0206343608560C5604FF4806360 +:10B8F000036145618561C5614FF400330362042330 +:10B9000043628662C5620563F6F7A8FC50BB264B0E +:10B91000A3639C632648274B03604FF0206343607A +:10B92000402383600023C3604FF48062026143615F +:10B930008361C3614FF40032026204224262032237 +:10B940008262C3620363F6F789FC70B9184B6363C4 +:10B950009C63002205214720F6F76EFB4720F6F78F +:10B96000A3FBD5E6FEF7F2FED1E7FEF7EFFEEDE72B +:10B97000001001400048004000140140003802401F +:10B980000004024000000240C86D0020B86402407C +:10B99000686D00208864024000080240286E002084 +:10B9A0002860024000180240886E00204064024077 +:10B9B000E86E0020A064024008B500220F4910483C +:10B9C000FCF7FEF970B90F490D48FCF710FA60B9A1 +:10B9D0000D490B48FCF796F950B90948FCF721FAD4 +:10B9E00048B908BDFEF7B2FEEDE7FEF7AFFEEFE7A0 +:10B9F000FEF7ACFEF1E7FEF7A9FEF2E7AC0000208F +:10BA000014700020080000209800002000207047DB +:10BA10000020704708B5034B1B680BB10888984796 +:10BA2000002008BDF482002038B50C46074D0146C1 +:10BA30002846FCF780F92846FCF7A6F9044B1B685A +:10BA40000BB120889847002038BD00BF147000203B +:10BA5000F082002010B5064C002206492046FCF773 +:10BA60005CF905492046FCF766F9002010BD00BFCF +:10BA700014700020F07A0020F0720020094BD3F8F7 +:10BA8000BC32D3F814320BB10120704710B5054C0D +:10BA90000A4601462046FCF740F92046FCF757F9D4 +:10BAA00010BD00BF14700020024B1860024B1960DB +:10BAB00002487047F4820020F0820020F0720020DB +:10BAC00030B589B00023039304930593069307933D +:10BAD0000368B3F1A04F01D009B030BD0025019536 +:10BAE000164C236B43F001032363236B03F0010324 +:10BAF0000193019B4FF4E053039302230493032328 +:10BB000006930A23079303A90D48F6F7ADFE636B6E +:10BB100043F0800363630295636C43F48043636482 +:10BB2000636C03F480430293029B2A460521432061 +:10BB3000F6F782FA4320F6F7B7FACDE7003802406D +:10BB40000000024008B500F2C441D0F80805FCF737 +:10BB50007EF908BD08B501EBC10300EB8303D3F800 +:10BB60008C22D0F80805FCF73FFA08BD08B501EBB8 +:10BB7000C10300EB8303DA6CD0F80805FCF797FAF1 +:10BB800008BD08B5D0F80805FCF7D9F908BD10B50F +:10BB90000446C3683BB1022B01D1012104E0FEF74A +:10BBA000D5FD012100E00021D4F80805FCF7ADF92E +:10BBB000D4F80805FCF777F910BD000010B504466D +:10BBC000D0F80805FCF7A4F92268D2F8003E43F04B +:10BBD0000103C2F8003E236A23B1034A136943F00C +:10BBE0000603136110BD00BF00ED00E008B5D0F8FA +:10BBF0000805FCF797F908BD08B5D0F80805FCF76B +:10BC0000C6F908BD08B5D0F80805FCF7A9F908BDC4 +:10BC100008B5D0F80805FCF7D1F908BD08B5D0F88B +:10BC20000805FCF7CDF908BD02780AB1002070477D +:10BC300010B503461548C0F80835C3F8C8024FF0E0 +:10BC4000A0430360042343600222C2600023036117 +:10BC50008261C36103624362C3620363F8F726F83B +:10BC600080B90A4C80212046F8F71CFE40220021B2 +:10BC70002046F8F7F1FD802201212046F8F7ECFD7F +:10BC8000002010BDFEF762FDEBE700BFF882002048 +:10BC9000D0F8C83211F0800F08D101F07F0101EB1C +:10BCA000C10103EB810191F87E02704701F07F0131 +:10BCB00001EBC10103EB810191F83E00704708B52B +:10BCC000D0F8C802F8F715FA08BD00000048704720 +:10BCD000048800207047032805D8DFE800F0050439 +:10BCE0000205012070470320704708B5D0F8C8024C +:10BCF000F8F773F8FFF7EFFF08BD08B594461A464A +:10BD00006346D0F8C802F8F747F9FFF7E4FF08BD2B +:10BD100008B5D0F8C802F8F784F9FFF7DCFF08BDD2 +:10BD200008B5D0F8C802F8F71CFAFFF7D4FF08BD31 +:10BD300008B5D0F8C802F8F758FAFFF7CCFF08BDED +:10BD400008B5D0F8C802F8F713F9FFF7C4FF08BD2B +:10BD500008B5D0F8C802F8F7D5F9FFF7BCFF08BD61 +:10BD600008B5D0F8C802F8F795F9FFF7B4FF08BD99 +:10BD700012230B8000487047C800002004230B806A +:10BD800000487047DC000020002393421ED200B51B +:10BD900010E00CF1370C01F813C000014FEA430C1E +:10BDA0000CF1010C4FF0000E01F80CE00133DBB296 +:10BDB000934209D24FEA107CB0F1204FE9D20CF146 +:10BDC000300C01F813C0E8E75DF804FB7047000091 +:10BDD00038B50B4BD3F8100AD3F8144AD3F8183AF5 +:10BDE000C01800D138BD074D0822A91CFFF7CCFFB1 +:10BDF000042205F112012046FFF7C6FFF2E700BF5B +:10BE00000070FF1FE000002008B51A230B80FFF729 +:10BE1000DFFF014808BD00BFE000002008B50A466A +:10BE200028B905490548FCF748FD034808BD024903 +:10BE30000248FCF742FDF8E7248A002000E30108ED +:10BE400010B50A46034C21460348FCF736FD204650 +:10BE500010BD00BF248A002014E3010808B50A467B +:10BE600028B905490548FCF728FD034808BD0249E3 +:10BE70000248FCF722FDF8E7248A002024E30108A9 +:10BE800008B50A4628B905490548FCF716FD0348D8 +:10BE900008BD02490248FCF710FDF8E7248A00209B +:10BEA00030E30108DFF834D00D480E490E4A002374 +:10BEB00002E0D458C4500433C4188C42F9D30B4A5E +:10BEC0000B4C002301E013600432A242FBD3FFF7C6 +:10BED0006DF808F061FDFEF78FFC7047000002204E +:10BEE0000000002000100020440202080010002082 +:10BEF000E49D0020FEE700001B4BD3ED027A9FED8E +:10BF00001B7A67EE877A1A4B93ED006A37EE867AD2 +:10BF1000184BD3ED006A77EE665A1748C0ED005A09 +:10BF200077EEC67A37EEE66A144981ED006A76EE5E +:10BF3000A77A134AC2ED007A37EE267A114B83EDC9 +:10BF4000007ADFED116A85EEA65A80ED005AC6EE42 +:10BF5000265AC1ED005A87EEA66A82ED006AC7EE46 +:10BF6000267AC3ED007A7047288C0020CDCCCCBD5A +:10BF7000508C0020548C00207C8C0020788C002079 +:10BF8000708C0020748C00202ACB103EF8B5224E15 +:10BF90003768D7ED687A214C216891ED687A77EEA1 +:10BFA000877A1F4D2A6892ED687A77EE877A1D4B63 +:10BFB000186890ED687A77EE877A9FED1B7A77EEB6 +:10BFC000877A1A4BB3F81530053B07EE103AB8EEF6 +:10BFD000C77AC7EE276AC7ED696AC1ED696AC0ED25 +:10BFE000696AC2ED696A124B93ED000A06F0A4F883 +:10BFF000104B93ED000A306806F09EF80E4B93ED5F +:10C00000000A286806F098F80C4B93ED000A2068A7 +:10C0100006F092F8F8BD00BF688C0020648C002008 +:10C020005C8C0020608C002066666640288C0020B6 +:10C03000748C00207C8C0020708C0020788C002078 +:10C0400030B5B5B0B822002106A808F097FF324BF2 +:10C050000A93324A0B924FF07C530C93304B0D9362 +:10C0600007258DF83C502F4B10932F4915911692B0 +:10C070002E4A17922E4A18928DF868501B9302246C +:10C080008DF8AC408DF8AD4001238DF8B3308DF8BC +:10C09000B440284A2E922F9306A805F0DFFF264BC6 +:10C0A00018602F9400248DF8AE4006A805F0D6FF46 +:10C0B000224B186003232F938DF8AE4006A805F09D +:10C0C000CDFF1F4B186004232F938DF8AE4006A8B8 +:10C0D00005F0C4FF1B4B1860019402940394049470 +:10C0E0000594194B019340F20233029340F201335D +:10C0F000039301A808F082F8144B18601721144824 +:10C1000005F096FD134B18602946134805F060FDB5 +:10C11000124B186035B030BDCDCC0C409A99193F08 +:10C1200000606A4600803B45000088400AD7233CF7 +:10C1300000803B4618650020688C0020608C002041 +:10C140005C8C0020648C002040650020248C002042 +:10C1500040E301084C8C00204CE30108488C00208F +:10C1600038B52DED028B444C2146444B186805F040 +:10C1700080FD237C002B50D1414B186805F066FFF1 +:10C18000404B186805F062FF3F4B186805F05EFFF2 +:10C190003E4B186805F05AFF374B1B7C022B4DD0E5 +:10C1A000032B4FD0012B62D0334C94ED030A9FED4B +:10C1B000388A20EE080A08F09FFB364D85ED000A0C +:10C1C00094ED030A20EE080A08F050FB324B83ED91 +:10C1D000000A94ED006AD5ED007A26EE277AD4EDB8 +:10C1E000016A60EE265A37EE657A2C4B83ED007AB1 +:10C1F00020EE060A67EEA67A30EE270A284B83ED7A +:10C20000000AFFF779FEFFF7C1FE2649264B1868A2 +:10C2100005F046FDBDEC028B38BD194B186805F0E2 +:10C2200019FF184B186805F015FF174B186805F033 +:10C2300011FF164B186805F00DFFADE70E4B0022FD +:10C240009A60B1E70C4B93ED037AF2EE047A67EE55 +:10C25000277AB5EEC07AF1EE10FA05DD67EE877A3F +:10C26000054BC3ED027A9FE7B1EE477AF6E7024B42 +:10C270000E4A9A6098E700BF288C00204C8C002062 +:10C28000608C0020688C00205C8C0020648C002076 +:10C2900035FA8E3C588C00206C8C0020508C00208D +:10C2A000548C0020408C0020488C00200060EA461E +:10C2B0001A4BD3ED0A7A1A4BC3ED007A9FED197A27 +:10C2C000F4EEC77AF1EE10FA05DD77EEC77A164B79 +:10C2D000C3ED037A70479FED137AF4EEC77AF1EE5F +:10C2E00010FA0ED89FED117AF4EEC77AF1EE10FA3B +:10C2F00007DB9FED0C7A77EEC77A0B4BC3ED037A21 +:10C3000070479FED087A77EEC77A9FED097A77EE4E +:10C31000877A054BC3ED037A704700BF4C8D002030 +:10C32000048D00207AE59543108D0020E895EF42BA +:10C330000000B443084B1A7C084B5A70084A127B21 +:10C340009A70084AD17819711278DA70064A126820 +:10C35000B2F84420DA807047108D0020609C0020E5 +:10C36000388D00208C8D0020808D002038B5AA4BA0 +:10C370001B68DA7A022A00F0AA80032A00F0AE8055 +:10C380009A7A032A37D0A54A1268D2F8021007EE2B +:10C39000901AF5EE407AF1EE10FA66D1D2F8061056 +:10C3A00007EE901AF5EE407AF1EE10FA5DD1D2F870 +:10C3B0000A1007EE901AF5EE407AF1EE10FA54D119 +:10C3C000D2F8121007EE901AF5EE407AF1EE10FA5C +:10C3D0004BD1D2F8161007EE901AF5EE407AF1EE36 +:10C3E00010FA42D1D2F81A2007EE902AF5EE407AE0 +:10C3F000F1EE10FA39D18A4A002182F88010B3F99F +:10C40000002007EE902AF8EEE77A9FED867A67EE35 +:10C41000877A854A92ED007A77EE677AC2ED007AE4 +:10C42000B3F9021007EE901AF8EEE77A9FED7F7AE3 +:10C4300067EE877A92ED017A77EE677AC2ED017A3C +:10C44000B3EE047AF4EEC77AF1EE10FA01DB82ED76 +:10C45000017A754A92ED017AFBEE0E7AB4EEE77A34 +:10C46000F1EE10FA01D8C2ED017A9B7A022B3CD092 +:10C47000694B1B68B3F9042007EE102AB8EEC77A9F +:10C48000F2EE006A27EE267A694A82ED007AB3F965 +:10C49000061007EE901AF8EEE77A67EEA67AC2ED7C +:10C4A000017AB3F9083013F1640F80F2AD80614A6C +:10C4B0000121D17013F5FA7F80F2AA805D4B04222E +:10C4C0005A704FF082425B4BC3F8062038BD584A81 +:10C4D00001211174544A0221117351E7544A032176 +:10C4E0001174514A022111734AE7534B534A1A609F +:10C4F0004A4B1A68D2F8023007EE903AF5EE407ACD +:10C50000F1EE10FA35D1D2F8063007EE903AF5EE9A +:10C51000407AF1EE10FA2CD1D2F80A3007EE903AB8 +:10C52000F5EE407AF1EE10FA23D1D2F8123007EE90 +:10C53000903AF5EE407AF1EE10FA1AD1D2F81630B0 +:10C5400007EE903AF5EE407AF1EE10FA11D1D2F8FA +:10C550001A3007EE903AF5EE407AF1EE10FA08D173 +:10C560002F4B002283F88020354A13680133136073 +:10C570007EE7334B00211960324B012119702E4D9B +:10C58000274C2946204603F0C3FF94ED1E1AD4ED34 +:10C590001D0A94ED1C0A05F091FA2B4C94ED090A42 +:10C5A000DFED2A7A80EE270A0EF01CFC95ED157A55 +:10C5B0009FED276A27EE067ADFED266AC7EE267A18 +:10C5C00030EE270A184B83ED000AD5ED167A67EE98 +:10C5D000867A87EEA67A83ED017AD4ED087A30EE7A +:10C5E000670AB0EEC00AF1EE047AB4EEE70AF1EEA3 +:10C5F00010FA04D80A4B012283F8802038E7084B50 +:10C60000002283F8802033E70A4A0021D17051E7E5 +:10C61000084B00225A7054E77C8D0020FC8D0020CE +:10C62000808C00200AD7233B388D00206F12833A7C +:10C63000108D00208C8D0020A08D00200000C841AE +:10C64000788D0020088D00204C8D00200000B44320 +:10C6500000003443DB0F494038B5474B474A1A6066 +:10C66000474B1A68D2F8023007EE903AF5EE407A5E +:10C67000F1EE10FA35D1D2F8063007EE903AF5EE29 +:10C68000407AF1EE10FA2CD1D2F80A3007EE903A47 +:10C69000F5EE407AF1EE10FA23D1D2F8123007EE1F +:10C6A000903AF5EE407AF1EE10FA1AD1D2F816303F +:10C6B00007EE903AF5EE407AF1EE10FA11D1D2F889 +:10C6C0001A3007EE903AF5EE407AF1EE10FA08D102 +:10C6D0002C4B002283F880202B4A1368013313600F +:10C6E00044E0294B00211960284B01211970224D8B +:10C6F000244C2946204603F00BFF94ED1E1AD4ED7E +:10C700001D0A94ED1C0A05F0D9F9214C94ED090A93 +:10C71000DFED207A80EE270A0EF064FB95ED157AA6 +:10C720009FED1D6A27EE067ADFED1C6AC7EE267ABA +:10C7300030EE270A1A4B83ED000AD5ED167A67EE24 +:10C74000867A87EEA67A83ED017AD4ED087A30EE08 +:10C75000670AB0EEC00AF1EE047AB4EEE70AF1EE31 +:10C7600010FA04D8074B012283F8802038BD054B0E +:10C77000002283F88020F9E7A08D00200000C84146 +:10C78000FC8D0020808C0020788D0020088D0020FA +:10C790004C8D00200000B44300003443DB0F4940BF +:10C7A000388D002010B57E4B1968887C00F001029E +:10C7B000C0F34003D21A40F6B83C0CFB02F2794CAD +:10C7C00007EE902AF8EEE77AC4ED017AC0F3C003D1 +:10C7D000C0F380001B1A0CFB03F307EE903AF8EE4F +:10C7E000E77AC4ED007AB1F90C3007EE103AB8EEF2 +:10C7F000C77ADFED6D6AC7EE267AB1EE007A27EED2 +:10C80000877A6A4BD3ED007A77EEC77AC3ED007A68 +:10C81000B1F90E2007EE102AB8EEC77AC7EE267AD5 +:10C82000B1EE087A27EE877AD3ED017A77EE877A30 +:10C83000C3ED017A0B7C5BB14B7C4BB95C4BDB7875 +:10C84000012B0AD15A4B01221A7004225A7004E0BB +:10C850000B8A13B9564B00225A704B7C002B45D0E3 +:10C86000544B1B68D3F8022007EE902AF5EE407A6D +:10C87000F1EE10FA30D1D3F8062007EE902AF5EE4B +:10C88000407AF1EE10FA27D1D3F80A2007EE902A69 +:10C89000F5EE407AF1EE10FA1ED1D3F8122007EE31 +:10C8A000902AF5EE407AF1EE10FA15D1D3F8162061 +:10C8B00007EE902AF5EE407AF1EE10FA0CD1D3F89B +:10C8C0001A3007EE903AF5EE407AF1EE10FA03D105 +:10C8D000374B00225A7009E0FFF7BEFE364B93F843 +:10C8E0008030012B30D0324B00225A702C4B1B6809 +:10C8F00093F8203013F0010F35D1294B1B6893F8C2 +:10C90000263013F0010F38D101224FF480712B48EB +:10C91000F6F79CF8224B1B6893F8212012F0010FC8 +:10C9200032D1234A0021D170DB7F13F0010F30D1C7 +:10C930001C4B03221A741D4B01221A734FF08242C2 +:10C940001B4BC3F8062010BD154B1B681B7C002B2E +:10C95000C9D0174BDB78012BC5D1154B01221A70BA +:10C9600004225A70C2E706F039FE0D4B1A6892F89D +:10C970002030013382F82030BFE700224FF480716D +:10C980000E48F6F763F8C5E7094A01211170D17026 +:10C99000CAE7044B01221A74044B02221A73CDE732 +:10C9A0007C8D0020108D002000002544388D002053 +:10C9B0008C8D0020FC8D0020808C0020000802401F +:10C9C00000B583B0184B1B68B3F90830B3F5967FF8 +:10C9D00002DC164B1B788BB90020144B1870144BDB +:10C9E0001873144B1874144B1870D8705870134B7C +:10C9F0000093134B134A1449FDF716FA0A4B1B68B0 +:10CA0000DB7A012B02D003B05DF804FB074A1370F8 +:10CA1000094A1370094B00930C4B0D4A0D49002035 +:10CA2000FDF702FAEFE700BF7C8D0020848D002027 +:10CA3000388D0020108D00208C8D0020E0E2010850 +:10CA40005CE3010860E3010868E30108A0E2010873 +:10CA5000A4E2010888E3010808B51D4807F086FB39 +:10CA60001C4B18601C4805F039F81C4B18601C4919 +:10CA70001C4806F097FD1C4B18600D211B4805F063 +:10CA8000A7F81B4B18602C211A4805F0D1F81A4B57 +:10CA900018600A21194805F09BF8194B186001210C +:10CAA000184805F0C5F8184B18601721174805F00D +:10CAB0008FF8174B18600721164805F0B9F8164B88 +:10CAC0001860164B00225A60154B01221A7008BDDF +:10CAD0008C6F00207C8D0020486F0020FC8D002092 +:10CAE000609C0020D06F0020808D0020B0E3010802 +:10CAF000348D0020BCE30108488D0020C8E3010804 +:10CB0000888D0020D4E30108988D002040E30108BF +:10CB10000C8D00204CE30108288D0020388D00206A +:10CB2000848D002010B52049204B186805F0A1F82D +:10CB30001F49204B186805F09CF81F491F4B1868C7 +:10CB400005F097F8FFF7F6FBFFF7B2FB1C4B1B68ED +:10CB50009A7A931EDBB2012B20D9012A21D0FFF74C +:10CB60002FFF184C2368187804F090FF2368B3F85F +:10CB700044301549A1F81530144B186805F090F8A9 +:10CB80001349144B186805F08BF81349134B1868B8 +:10CB900005F086F8124804F0C9FF10BDFFF7E6FB68 +:10CBA000DDE7FFF7FFFDDAE72C8D0020288D002060 +:10CBB0009C8D0020988D00204C8D0020488D0020F9 +:10CBC0007C8D0020808D0020108D00200C8D002099 +:10CBD0008C8D0020888D0020388D0020348D002021 +:10CBE000008E00202DE9F04F2DED028BDDB004F01A +:10CBF0009FFC0546484B18604FF0B80B5A46002181 +:10CC00000DEB0B0008F0BAF905F124032E9305F1A2 +:10CC100008032F93414B3D934FF080433F93DFED4B +:10CC2000408ACDED408A07268DF808613D4B43933D +:10CC30004FF07F5348933C4F4A979FED3C8A8DEDD0 +:10CC40004B8A4C978DF83461DFF818A1CDF838A1E4 +:10CC50004FF004098DF84C914FF006088DF84D8186 +:10CC600001248DF850418DF851418DF85441304BDD +:10CC7000569357948DF86C415A460021684608F047 +:10CC80007DF905F1180300934D440195294B039359 +:10CC9000294B0F93294B1193CDED128A8DF85060DB +:10CCA000274B1593274B1A931C978DED1D8A8DF8F2 +:10CCB0007C60CDF880A08DF894908DF895808DF8EB +:10CCC00096408DF897408DF898408DF899408DF8F2 +:10CCD0009A408DF89C401C4B289329948DF8B440C1 +:10CCE0000DEB0B0005F0BAF9184B1860684605F01B +:10CCF000B5F9174B18602C21164804F069FF164B44 +:10CD000018600D21154804F093FF154B18605DB0B5 +:10CD1000BDEC028BBDE8F08F188E002000404E4520 +:10CD200000409C4600009644CDCCCC3D0000FA4328 +:10CD300018650020608E0020004035450AD7233C4E +:10CD400000401C450000204040650020688E002007 +:10CD5000648E0020BCE30108588E0020B0E3010877 +:10CD60005C8E00200000C84270B5494C2146494BFA +:10CD7000186804F07EFF237B012B61D0022B37D093 +:10CD80006BB3454C2368D3ED067AF1EE677A9FEDDD +:10CD9000437A87EE870ADFED427A20EE270A07F012 +:10CDA000ABFDDFED407A20EE270A3F4B83ED000A12 +:10CDB0003E4DAC4624680FCCACE80F000FCCACE87D +:10CDC0000F0094E803008CE80300394B1B685B6894 +:10CDD000AB622946374B186804F062FF70BD344BD4 +:10CDE000186805F033F9344B186805F02FF9C8E7D7 +:10CDF0002F4D286805F02EF92F4C206805F02AF9F0 +:10CE000001220421286805F003F901220221286883 +:10CE100005F0FEF801220421206805F0F9F801224E +:10CE20000221206805F0F4F8194E96ED000A2868F2 +:10CE300005F082F996ED010A206805F07DF9A0E77A +:10CE40001B4D286805F006F91B4C206805F002F917 +:10CE500001220421286805F0DBF80122022128685C +:10CE600005F0D6F801220421206805F0D1F801224E +:10CE70000221206805F0CCF8054E96ED000A2868DE +:10CE800005F05AF996ED010A206805F055F978E7A2 +:10CE90001C8E00205C8E0020188E00200000344381 +:10CEA000DB0F494000409C45608E00202C8E002006 +:10CEB000688E0020588E0020648E002000B583B05C +:10CEC00004F036FB174B0093174B184A1849002003 +:10CED000FCF7AAFF0EE0134B0193164B0093164B81 +:10CEE000164A17490020FCF79FFF04F01FFE01209F +:10CEF000FBF782FD00F0DCFD124C84ED000A04F02B +:10CF0000B9FC00F0D5FDD4ED007A30EE670A094B8C +:10CF100083ED000AF7EE007AB4EEE70AF1EE10FABC +:10CF2000D9DCE2E7E0E20108A0E20108A4E201089E +:10CF300014E401087C8E00205CE3010860E3010832 +:10CF400038E40108808E002000B583B0164B0093B2 +:10CF5000164B174A17490020FCF766FF0CE0124BEE +:10CF60000193154B0093154B154A16490020FCF709 +:10CF70005BFF0120FBF740FD00F09AFD124C84EDB1 +:10CF8000000A05F09BFB00F093FDD4ED007A30EE33 +:10CF9000670A094B83ED000AF7EE007AB4EEE70A60 +:10CFA000F1EE10FADBDCE4E7E0E20108A0E20108C0 +:10CFB000A4E2010870E40108888E00205CE3010807 +:10CFC00060E3010898E401088C8E002000B583B06E +:10CFD00000F0FAFF174B0093174B184A184900202E +:10CFE000FCF722FF0CE0134B0193164B0093164BFA +:10CFF000164A17490020FCF717FF0A20FBF7FCFC34 +:10D0000000F056FD134C84ED000A03F0EFFA00F037 +:10D01000F9FF00F04DFDD4ED007A30EE670A094BC0 +:10D0200083ED000AF2EE047AB4EEE70AF1EE10FAAC +:10D03000D9DCE2E7E0E20108A0E20108A4E201088D +:10D04000D4E40108708E00205CE3010860E301086D +:10D05000FCE40108748E002000B583B00C4D0D4C2B +:10D060000D4E00962B4622460C490020FCF7DCFEB4 +:10D0700006F0B4FA00962B46224609490020FCF738 +:10D08000D3FE06F09FFA0120FBF7B6FCF9E700BFDC +:10D09000A0E20108A4E20108E0E2010838E5010885 +:10D0A0005CE5010808B5A82000F01AFC00F07EFD40 +:10D0B00008BD000010B5A4B02E4C0DF1740CA646AE +:10D0C000BEE80F00ACE80F009EE807008CE8070000 +:10D0D00000211DA8FBF75BFC274B18600DF1580CD5 +:10D0E00004F11C0EBEE80F00ACE80F009EE807003C +:10D0F0008CE80700002116A8FBF749FC1F4B1860BD +:10D100000DF13C0C04F1380EBEE80F00ACE80F0046 +:10D110009EE807008CE8070000210FA8FBF737FC0A +:10D12000174B18600DF1200C04F1540EBEE80F00EF +:10D13000ACE80F009EE807008CE80700002108A873 +:10D14000FBF725FC0F4B18600DF1040E04F1700C79 +:10D15000BCE80F00AEE80F009CE807008EE807006F +:10D16000002101A8FBF713FC074B186005F0CAF972 +:10D1700024B010BDA4E10108788E0020848E002028 +:10D180006C8E0020908E00209C8E002008B572B618 +:10D19000FFF788FFFFF760FCFFF724FD00F052F86F +:10D1A000FEF74EFFFFF786FF62B608BD08B5FFF732 +:10D1B000B9FCFFF7D9FD00F00BF9FEF7D1FF08BD70 +:10D1C00000B583B0164B0093164B174A1749002041 +:10D1D000FCF72AFE0CE0124B0193154B0093154B04 +:10D1E000154A16490020FCF71FFE0520FBF704FC3A +:10D1F00000F05EFC124C84ED000AFFF7D7FF00F050 +:10D2000057FCD4ED007A30EE670A094B83ED000A33 +:10D21000F1EE047AB4EEE70AF1EE10FADBDCE4E7B3 +:10D22000E0E20108A0E20108A4E20108A8E5010883 +:10D23000948E00205CE3010860E30108D4E5010856 +:10D24000988E00202DE9F043DDB04FF0B8094A4632 +:10D2500000210DEB090007F091FE2E4B35930124C0 +:10D260008DF8DC402C4F38974FF07F523D922B4A7F +:10D270003E9240938DF80841439702258DF84C511A +:10D280008DF84D518DF85451DFF8BC80CDF85881A0 +:10D2900057950DEB090004F0E1FE214B18600326C1 +:10D2A00057968DF84E410DEB090004F0D7FE1D4B4B +:10D2B00018604A460021684607F060FE1A4B079343 +:10D2C0008DF824400A93194A0F9212978DF8504016 +:10D2D0001593174B1D938DF894508DF895608DF82C +:10D2E00096408DF89C60CDF8A0802994684604F0A3 +:10D2F000B5FE104B186021460F4804F069FC0F4B37 +:10D3000018600A210E4804F093FC0E4B18605DB0C3 +:10D31000BDE8F08300606A4600401C46CDCC4C3E20 +:10D32000A88E0020AC8E002000409C4500004040AC +:10D3300000004843B88E0020D4E30108CC8E0020C2 +:10D34000C8E30108D08E00204065002038B5184C95 +:10D35000184D2B68236000F0ABFB85ED000AD4ED7F +:10D36000007A30EE670ADFED147AB4EEE70AF1EEE8 +:10D3700010FA03D4114B5B78042B00D038BD104B4E +:10D380001B68D3ED667A20EE270ADFED0E7A20EED9 +:10D39000270AD3ED047A9FED0C7A20EE070AF4EE0B +:10D3A000C07AF1EE10FAE9D5084B01221A70E5E7D0 +:10D3B000B48E0020A48E002000004843BC8E0020C4 +:10D3C000B88E002000007A44CDCC4C3EC88E0020A0 +:10D3D00010B52DED028B674C2146674B186804F0A1 +:10D3E00048FC237823BB654B186804F02FFE644B80 +:10D3F000186804F02BFE634B186804F027FE624B9C +:10D4000093ED008A614BD3ED007A38EE278A00F065 +:10D410004FFBB4EEC08AF1EE10FA39DC554B5B7865 +:10D42000042B00F29680DFE803F0107E364D640096 +:10D43000524B186804F00EFE514B186804F00AFEB7 +:10D44000504B186804F006FED9E74E4C02212068C4 +:10D4500004F070FE9FED4E0A206804F06DFE454B0F +:10D46000DB78012B76D09FED4A8AB0EE480A434B19 +:10D47000186804F061FEB0EE480A414B186804F0E9 +:10D480005BFEFFF763FF4349434B186804F008FC59 +:10D49000BDEC028B10BD3B4C0421206804F04AFE19 +:10D4A000206890ED040ADFED3D7A30EE270A04F0A3 +:10D4B00043FE00F0FDFA344B83ED000A334B384A4B +:10D4C0001A60CCE72F4C0421206804F033FE20685A +:10D4D00090ED040ADFED337A30EE270A04F02CFEDB +:10D4E00000F0E6FA284B83ED000A284B2E4A1A601A +:10D4F000B5E7244C0221206804F01CFE1D4BD3F834 +:10D50000063007EE903A9FED297A67EE877A9FED15 +:10D51000287A67EE877AB4EE000A27EE800A206840 +:10D5200004F00AFE9BE7174C0221206804F002FE7B +:10D530009FED200A206804F0FFFD00F0B9FA124BBD +:10D5400083ED000A114B1C4A1A60124B00221A701C +:10D5500085E7FEE79FED198AB0EE480A074B186889 +:10D5600004F0EAFDB0EE480A054B186804F0E4FD4B +:10D5700087E700BFBC8E0020D08E0020A88E002040 +:10D58000AC8E0020B88E0020B08E0020A08E00202F +:10D5900000000000C88E0020CC8E00200000344225 +:10D5A0000000164300000743000096430000B44308 +:10D5B0000000444200D089460000FA4300D00447EE +:10D5C00010B50C4C2046F4F765FA02212046F4F71A +:10D5D000DEFB10212046F4F7DAFB074C2046F4F777 +:10D5E00059FA02212046F4F7D2FB10212046F4F725 +:10D5F000CEFB10BD186500204065002000B58BB043 +:10D600000123069300230793C36913F0010F0CBF96 +:10D610000123002304930E230993436B5B010193C1 +:10D6200002680B4B9A420DD00A4A1378591C1170AC +:10D6300005930123089369460068F4F78FF90BB04E +:10D640005DF804FB044A1378591C1170F0E700BF21 +:10D6500018650020FA000020D88E002070B582B036 +:10D6600005460E4631462846F4F77EFB48B36B4626 +:10D67000154A31462846F4F7D2FA002400E0013476 +:10D68000124B1B78A342EDD9114B53F824301A6882 +:10D69000AA42F4D10C4A11685A6B9142EFD1D3F8E7 +:10D6A000392072B1084A126983F83820084D1846AB +:10D6B00069462C30F3F7F4FB55F82400D0F83930E4 +:10D6C000984702B070BD00BF208F00201C8F002043 +:10D6D000DC8E002030B585B00446314B1B7873B129 +:10D6E0002F4B93F800C0BCF10F0F2FD92D4B009397 +:10D6F0002D4B2E4A2E490020FCF796FBF6E7FFF74C +:10D700005FFF284B00932B4B2B4A2C490020FCF742 +:10D710008BFBE5E701339C451AD9294A52F82320AF +:10D72000506BA1688842F5D1116822689142F1D10D +:10D730001C4B029304F108030193231D00931A4B21 +:10D740001A4A20490020FCF76FFBF1E70023E2E7CB +:10D75000412007F05BF905464122002107F00EFC4D +:10D7600062686A600023082129756B75AB75EB75DB +:10D7700023682B60EA61A3686B63E368C5F83930FE +:10D780002369C5F83D302846FFF738FF044A13786F +:10D79000591C11700A4A42F82350284605B030BD82 +:10D7A0001C8F0020E0E201085CE3010860E301084F +:10D7B0003CE60108A0E20108A4E2010814E6010821 +:10D7C000DC8E002094E6010810B52DED028B82B0AE +:10D7D0000446F0EE408A00F06BF9B0EE408A206813 +:10D7E000F4F704FAD8B900F063F930EE480AB4EE61 +:10D7F000E80AF1EE10FAF2DD1A4B01931A4C236895 +:10D8000000931A4B1A4A1B490020FCF70DFB2368B2 +:10D8100001332360002002B0BDEC028B10BD00F08C +:10D8200047F930EE488A144B83ED008A214651F8BF +:10D83000040B04F1200304F12402F4F759F908B9A8 +:10D840000120E8E7074B0193074C23680093074B3F +:10D85000074A0A490020FCF7E7FA236801332360EE +:10D860000020D8E7E0E20108D48E0020E0E60108BD +:10D87000E4E60108ECE601083C8F00203CE70108E3 +:10D8800008B50021FFF7EAFE08BD08B50121FFF742 +:10D89000E5FE08BD0E4B1B78C3B982B00C4B0122CC +:10D8A0001A700C4B5B680193019A0B4B1B689A42F0 +:10D8B00003D20A4A136801331360064B5A68064BB9 +:10D8C0001A60034B00221A7002B07047704700BF05 +:10D8D000808F0020001000E0708F0020748F0020E7 +:10D8E00008B5124AD2F8FC3043F08073C2F8FC301D +:10D8F0000F4B002159601A6842F001021A600D4B6B +:10D9000003FB00F00C4B18600C4BA3FB00239B099E +:10D910000B4A13600B4BA3FB0030800C0A4B1860C2 +:10D920000A4B1960FFF7B6FF08BD00BF00ED00E02D +:10D93000001000E040420F00588F0020D34D6210CD +:10D940005C8F002083DE1B43608F0020748F0020DB +:10D9500000B52DED028B83B00D4B5B680193019BED +:10D9600002689B1A07EE903AF8EE677A094B93ED3E +:10D97000007AB8EE477A87EE878A019B0360FFF74B +:10D9800089FFB0EE480A03B0BDEC028B5DF804FBE2 +:10D99000001000E0588F00202DE9F04182B0274BA5 +:10D9A0005B680193FFF776FF254B1C68002665082E +:10D9B000E3071B1B65F10005DB186D411C1945F1E0 +:10D9C0000005019BE41845F100071E4B1C605F60D9 +:10D9D0001D4B1D682A46334620463946F3F7DEF8CC +:10D9E0001A4A10605160A5FB003205FB0125E41ABC +:10D9F00067EB0505164B1C605D60DFF86480C8F8B6 +:10DA00000000144B1F683A46334620462946F3F778 +:10DA1000C5F880B2A8F8040007FB00F0201A65F1F1 +:10DA200000010D4B186059600C4B1A683346F3F730 +:10DA3000B5F8A8F8060002B0BDE8F081001000E0DB +:10DA4000748F0020688F0020588F0020408F0020A6 +:10DA5000488F00205C8F0020508F0020608F0020B6 +:10DA6000788F002008B5FFF797FF0E4B9A8800EEDD +:10DA7000102AB8EEC00ADFED0C7A60EE277A93ED3B +:10DA8000007AB8EE470A30EE270ADB8807EE903AB4 +:10DA9000F8EEE77A9FED057A67EE877A30EE270A8F +:10DAA00008BD00BF788F00206F12833ABD378635DE +:10DAB00008B5FFF771FF0B4A116893884FF47A702D +:10DAC00000FB013300EE103AB8EE400AD38807EEAF +:10DAD000903AF8EEE77A9FED047A67EE877A30EEB7 +:10DAE000270A08BD788F00206F12833A0A4B5A68C4 +:10DAF000094B5B689B1A07EE903AB8EE677A074BC2 +:10DB0000D3ED007AF8EE677A67EE807AB4EEE77AC2 +:10DB1000F1EE10FAECD47047001000E0588F0020AE +:10DB200008B50146002300E00133074A12789A4203 +:10DB300009D9064A52F82300C2888A42F4D1826881 +:10DB4000002AF1D0904708BDAC8F0020848F0020C0 +:10DB50000146002305E0036903B1984710BD013376 +:10DB6000DBB20E4A12789A4217D90D4A52F82300B6 +:10DB700002688A42F3D110B54C6C02799442EAD023 +:10DB80000133DBB2054A12789A42E7D9044A52F8C7 +:10DB9000230002688A42F3D1EEE77047AD8F002080 +:10DBA000B08F002008B5FFF7D3FF08BD08B5FBF71D +:10DBB00039FF08BD08B5036803F14042B2F5005FC4 +:10DBC0000FD903F13F4202F57F02B2F5806F17D9FA +:10DBD000A3F14023A3F58033B3F5006F10D90020E3 +:10DBE00008BDF7F769F90E4B9B68C3F382230D4A12 +:10DBF000D35C1BB9012303FB00F0F1E70223FAE732 +:10DC0000F7F76AF9064B9B68C3F38223054AD35C96 +:10DC10001BB9012303FB00F0E2E70223FAE700BF90 +:10DC200000380240F8E2010808B50146002301E08F +:10DC30000133DBB20B4A12789A4212D90A4A52F8DF +:10DC4000230002688A42F3D191F81CE042684FEA4F +:10DC5000920C012202FA0CF29645E9D1436903B114 +:10DC6000984708BDB88F0020BC8F002083680168EA +:10DC70004A680132B3FBF2F307EE903AF8EE677AA6 +:10DC800067EE807A0B68FCEEE77AC3ED0B7A836867 +:10DC900001684A680132B3FBF2F307EE903AF8EEFE +:10DCA000677A27EE800ABCEEC00A81ED030A70474E +:10DCB000436863B903681B68D3ED0B7AF8EE677AA3 +:10DCC00027EE800ABCEEC00A83ED0D0A7047042BD4 +:10DCD0000ED0082B19D003681B68D3ED0B7AF8EE31 +:10DCE000677A27EE800ABCEEC00A83ED100A7047FF +:10DCF00003681B68D3ED0B7AF8EE677A27EE800A8B +:10DD0000BCEEC00A83ED0E0A704703681B68D3EDB2 +:10DD10000B7AF8EE677A27EE800ABCEEC00A83ED34 +:10DD20000F0A704738B51C4B1B780F2B00D9FEE744 +:10DD300005461C2006F06AFE04460023036043608B +:10DD40008360C360036143618361286820606B68FE +:10DD50006360AB68E360EB6823612B6963616B69A7 +:10DD6000A361FFF727FFA06061682068F8F710F94A +:10DD700094ED030A2046FFF779FF94ED040A20464C +:10DD8000FFF796FF044A1378591C1170034A42F8B2 +:10DD90002340204638BD00BFB88F0020BC8F002034 +:10DDA00010B5044690F800210146D0F80401F8F7B8 +:10DDB000FBFED4F804319B6B1A68136823F0080348 +:10DDC000136010BD70B582B0214B1D78022D1DD996 +:10DDD000204B0093204B214A21490020FCF724F8D6 +:10DDE000F6E70133DBB29D4213D91E4A52F82320D5 +:10DDF000D2F8041162689142F3D1164B0093164B8E +:10DE0000164A19490020FCF70FF8F6E704460023EC +:10DE1000E9E74FF4867006F0F9FD06464FF4867286 +:10DE2000002107F0ABF86368C6F80431237886F860 +:10DE30000031A368C6F808316A1C054B1A70094BFB +:10DE400043F825603046FFF7ABFF304602B070BDA7 +:10DE5000FC8F0020E0E201085CE3010860E30108B8 +:10DE600064E70108009000209CE7010808B5022B38 +:10DE70000AD0032B0DD0012B00D0FEE76423D0F88D +:10DE80000401F8F7E2FA08BDD0F80401F8F749FBFD +:10DE9000F9E7D0F80401F8F76BFBF4E738B50C4666 +:10DEA000002301E00133DBB2154A92F800C09C4523 +:10DEB00025D91D46134A52F82320D2F80411814275 +:10DEC000F0D1D2F808313BB19847224600210D4BE2 +:10DED00053F8250007F052F80A4C54F8251091F831 +:10DEE0000021D1F80401F8F75FFE54F82530D3F88B +:10DEF00004319B6B1A68136823F00803136038BD64 +:10DF0000FC8F00200090002084460023174A1278DE +:10DF10009A422AD910B582B01C46154A52F82310ED +:10DF2000D1F80401604506D00133DBB20F4A127804 +:10DF30009A42F1D817E091F80021F8F735FE0C4B22 +:10DF400053F82430D3F804319B6B1A68136823F01C +:10DF500008031360074B01930094074B074A0849D5 +:10DF60000020FBF761FF02B010BD7047FC8F00205E +:10DF700000900020E0E20108E0E60108E4E6010884 +:10DF8000D8E7010810B584B004AB03E90300FDF73E +:10DF90008BFD064C2060064B0093064B064A074952 +:10DFA0000020FBF741FF206804B010BD0C9000205A +:10DFB000E0E20108A0E20108A4E2010820E801086B +:10DFC00008B5FDF75BFD08BD00B587B000230093E1 +:10DFD00001930293039304930593074B0093082343 +:10DFE0000193064B02936846FFF79CFE044B1860B2 +:10DFF00007B05DF804FB00BF906C00206F12833AFD +:10E000001090002038B5002440E095ED000A284B20 +:10E010001868FFF74DFE2B79062B0BD8DFE803F0CD +:10E02000040B121920272E009FED220A204B18689E +:10E03000FFF71CFE38BD9FED200A1D4B1868FFF747 +:10E0400015FEF7E79FED1D0A194B1868FFF70EFE46 +:10E05000F0E79FED1B0A164B1868FFF707FEE9E78C +:10E060009FED180A124B1868FFF700FEE2E79FEDDC +:10E07000160A0F4B1868FFF7F9FDDBE79FED130A4F +:10E080000B4B1868FFF7F2FDD4E70134042CD1D80C +:10E090000F4B53F824506B79042BF6D8AB79002B37 +:10E0A000B3D19FED0C0A024B1868FFF701FEECE7B5 +:10E0B000109000209D9DFA3A934ADF3A32E5C63A25 +:10E0C00041C8BB3A052FA73A09F2943AFAA9843A13 +:10E0D0001490002000000000F6EE007A60EE277A2F +:10E0E00010EE103A074AA2EB630307EE103A67EE10 +:10E0F000277A67EE277AB7EE080A30EE670A27EE2E +:10E10000000A7047865A375F10B52DED048B044620 +:10E11000D0F8EC3093ED009A5C4A82ED009A93EDD2 +:10E12000018A5B4A82ED008AD3ED028A594AC2ED28 +:10E13000008AD3ED039A584BC3ED009A69EE097A31 +:10E1400028EE080A77EE807A28EEA80A77EE807A21 +:10E1500029EEA90A37EE800AFFF7BEFF4F4B83ED89 +:10E16000000A00230BE0D4F8EC2002EB8302D2ED8E +:10E17000007A67EE807AC2ED007A0133DBB2032BBE +:10E18000F1D9474B93ED6F7A28EE077AD4F8002146 +:10E19000F6EE007A27EE277A82ED047A93ED6F7A15 +:10E1A00028EE877AD4F8002127EE277A82ED057AC7 +:10E1B00093ED6F7A29EE477AD4F8002127EE277A7B +:10E1C00082ED0A7A93ED6F7A29EE877AD4F80021EE +:10E1D00027EE277A82ED0B7A93ED6F7A69EEC79A74 +:10E1E000D4F8002169EEA79AC2ED109A93ED6F7AE8 +:10E1F00029EE479AD4F8002129EE279A82ED119A48 +:10E2000093ED6F7A68EE878AD4F8002168EEA78ACA +:10E21000C2ED168A93ED6F7A28EE478AD4F8002172 +:10E2200028EE278A82ED178AD4F8F82093ED747AC5 +:10E23000D2ED1C6AC6EE877AC2ED1C7AD4F8F820BB +:10E2400093ED747AD2ED236AC6EE877AC2ED237A13 +:10E25000D4F8F83093ED1C7ADFED127AB4EEE77A59 +:10E26000F1EE10FA01DDC3ED1C7AD4F8F83093ED2D +:10E27000237ADFED0C7AB4EEE77AF1EE10FA01DDE5 +:10E28000C3ED237ABDEC048B10BD00BFBC9200200F +:10E29000C4920020CC920020D4920020D89200207A +:10E2A000B890002000401C4638B504469022D0F8B3 +:10E2B000F8100848F2F7F4FD48252A46D4F81C1156 +:10E2C0000548F2F7EDFD2A46D4F80C110348F2F7A1 +:10E2D000E7FD38BDFC000020709000202890002051 +:10E2E0002DE9F84F044600F1780500F18007394622 +:10E2F000284605F0E1FF84F8C800B4F87830A4F8A7 +:10E30000A830B4F85A30A4F8AA3004F1580A04F13D +:10E31000A80842465146284606F094F884F8C800FA +:10E32000B4F8A830A4F8B030B4F88230A4F8B23011 +:10E3300004F1B0094A463946404606F083F884F8AD +:10E34000C800B4F89030A4F8A030B4F89230A4F823 +:10E35000A23004F1A0052A4604F19001484606F0D7 +:10E360001BFA84F8C8004946284606F00BF984F8E1 +:10E37000C800D4F8EC30D3ED007AC44AC2ED007A7C +:10E3800093ED016AC24A82ED006AD3ED026AC14A86 +:10E39000C2ED006A93ED037ABF4B83ED007AB4F8C7 +:10E3A0007830A4F8B8300123A4F8BA3066EE075AE2 +:10E3B00027EEA65A75EEC55AD4F82C3175EEA55A3B +:10E3C000C3ED005A67EE865A26EE875A75EE855AD7 +:10E3D000D4F82C3175EEA55AC3ED015A67EEA77A31 +:10E3E00026EE066A77EEC67A66EEA66A77EEE67ADB +:10E3F00027EE077AD4F82C3177EE877AC3ED027ACC +:10E40000002512E0D4F82C3103EB850393ED000ACC +:10E41000B0EEC00A0CF04AFD05F160029F4B03EB21 +:10E42000820383ED010A0135EDB2022DEAD9B4F879 +:10E430004830A4F8C0304FF0010BA4F8C2B004F18A +:10E44000B80504F1C0063246294604F1480005F03B +:10E450008FFF84F8C800B4F8C030A4F8A830A4F83E +:10E46000AAB042463146484605F0ECFF84F8C800A1 +:10E47000A4F8B8B0B4F8C030A4F8BA302946304691 +:10E4800005F01AFF84F8C800DFF810B20BF5E0724F +:10E490004146284605F0D6FF84F8C8009BED727A05 +:10E4A000DBED737AF6EE006A67EEA66AB4EEE67A02 +:10E4B000F1EE10FA02D501228BF83821B4EEE77A9A +:10E4C000F1EE10FA45DD754B93F83831002B40D052 +:10E4D000724B93F83931DBB1704AD2F84031D2F83F +:10E4E0004411013341F10001C2F84031C2F8441136 +:10E4F0006A4BD3F84021D3F84431332A73F1000337 +:10E500000CD30023654A82F8383184F82C3046E079 +:10E51000624B00200021C3E95001E9E7227B604DF6 +:10E520002B8803FB02F2D4F8EC10D4F8E800F2F7E1 +:10E53000B7FC227B2B8802FB03F303FB02F2D4F827 +:10E54000FC10D4F8F800F2F7ABFC012384F82C306F +:10E550009AE0DFED546A67EEA66AB4EEE67AF1EE71 +:10E5600010FA0FDD4D4B93F838315BB137EEC77AB7 +:10E57000DFED4D6A67EEA67AC7EE276A474BC3ED1B +:10E58000676A04E0454B4FF07E52C3F89C21434B31 +:10E5900000200021C3E95001002384F82C30B4F896 +:10E5A0005830A4F8A830B4F88230A4F8AA30424613 +:10E5B0003946504605F046FF84F8C80004F1980734 +:10E5C0003A464946404605F03DFF84F8C80000231E +:10E5D0000EE0D4F81C2102EB8302304991ED677AFA +:10E5E000D2ED007A67EE877AC2ED007A0133DBB2B2 +:10E5F000B4F89820B4F89A1001FB02F29342E8DBD9 +:10E60000042201E00132D2B2052A1DD80023022BD8 +:10E61000F8D8D4F81C1102EB4200184401EB800139 +:10E6200002F15C0C1D4800EB8C00D0ED016ADFEDBF +:10E630001F7A86EEA77AD1ED007A67EE877AC1ED70 +:10E64000007A0133DBB2E2E7B4F89830A4F8B830CE +:10E650000123A4F8BA302A463146384605F0F2FEC6 +:10E6600084F8C8000D4B93F83831002B4DD1D4F805 +:10E67000BC300022DA6004F13002294604F138008F +:10E6800006F08AF884F8C800BDE8F88FB892002038 +:10E69000C0920020C8920020D0920020B8900020A4 +:10E6A000E6920020CDCCCC3D6666663FDA0FC93FCE +:10E6B0000133DBB2052BDAD8D4F8BC10980001EB9B +:10E6C000830191ED007A124AD2ED6F7ADFED116A83 +:10E6D00067EEA67AB4EEE77AF1EE10FA01DDC1ED4D +:10E6E000007AD4F8BC20024492ED007A0849D1EDBA +:10E6F0006F7ADFED096A67EEA67AB4EEE77AF1EE9B +:10E7000010FAD5D5C2ED007AD2E70423D2E700BFD4 +:10E71000B89000200AD7233C0AD723BC10B52DEDB2 +:10E72000048B0446D0F8EC3093ED009A39EE099A48 +:10E730002E4A82ED009A93ED018A38EE088A2C4A1F +:10E7400082ED008AD3ED029A79EEA99A294AC2EDA8 +:10E75000009AD3ED038A78EEA88A274BC3ED008A8E +:10E76000827B264B1B8802FB03F3027B03FB02F236 +:10E770000021D0F80C0106F001FCD4F80C31F1EEC8 +:10E78000697AC3ED007AD4F80C31C3ED018AD4F86C +:10E790000C31B1EE497A83ED027AD4F80C3183ED75 +:10E7A000038AD4F80C3183ED068AD4F80C3183ED5A +:10E7B000079AD4F80C31C3ED088AD4F80C31C3EDB4 +:10E7C000099AD4F80C3183ED0C9AD4F80C31B1EEDF +:10E7D000488A83ED0D8AD4F80C31C3ED0E7AD4F853 +:10E7E0000C31C3ED0F8ABDEC048B10BD9C92002050 +:10E7F000A0920020A4920020A8920020E69200207F +:10E8000038B504462F4B01221A7083ED6C0AC3ED14 +:10E810006D0A83ED6E1A2C4AC3F8CC21002283F8CE +:10E82000382100200021C3E95001C3E95201F7EE6D +:10E83000007AF4EEE71AF1EE10FA01DDF0EE671A55 +:10E84000204DC5ED741A85ED642A032300220621AC +:10E85000281D00F029FD05F5E4730122114605F598 +:10E86000E07005F095FF002309E0164AD2F8EC208D +:10E8700002EB830204EB8301096811600133032B6F +:10E88000F3DD104C114BC4F8D030114BC4F8D43028 +:10E89000104BC4F8D830104BC4F8DC30012384F896 +:10E8A0002E3084F82F3090252A460C49D4F80401E4 +:10E8B000F2F7F6FA2A460A49D4F8FC00F2F7F0FA21 +:10E8C00038BD00BFB890002077CC2B32A9E20008F9 +:10E8D00009E100081DE70008E1E200083CE8010842 +:10E8E000FC00002010B52DED068BF0EE61AAB0EE15 +:10E8F00042AAF0EE629A804C84ED6F3A94ED589AF9 +:10E9000030EE490A84ED5B0A94ED598A70EEC80A2C +:10E91000C4ED5C0AD4ED5A8A31EE681A84ED5D1AB2 +:10E92000F6EE008A20EE280A20EE039A734B83ED60 +:10E93000009A60EEA80A20EE838A714B83ED008A6C +:10E9400021EE281A61EE038A6E4BC3ED008A9022F5 +:10E950006D49D4F80401F2F7A3FAD4F80431F1EECA +:10E96000497AC3ED017AD4F80431F1EE486AC3ED77 +:10E97000026AD4F80431B1EE687A83ED037AD4F8F0 +:10E98000043183ED069AD4F80431C3ED088AD4F833 +:10E990000431C3ED096AD4F8043183ED0C8AD4F84C +:10E9A000043183ED0D7AD4F8043183ED0F9AD4F855 +:10E9B0000431C3ED128AD4F8043183ED138AD4F8FC +:10E9C0000431C3ED147AD4F84821D4F84C31134300 +:10E9D00005D1C4ED5EAA84ED5FAAC4ED609A464BF2 +:10E9E00093ED5E7AD3ED647A27EE277A93ED6F6A22 +:10E9F00077EE866A87EE260A66EE2AAA8AEEA67A5D +:10EA000030EE070A83ED5E0AD3ED5F5A67EEA55A32 +:10EA100085EEA67A26EE0AAACAEE265A37EE257A9F +:10EA200083ED5F7AD3ED605A67EEA55AC5EEA67AFC +:10EA300026EE296AC6EE265A77EEA57AC3ED607AED +:10EA400020EE000A27EE077A30EE070A67EEA77A73 +:10EA500030EE270AFFF740FBB0EE408A2B4B83EDE8 +:10EA6000000A00230FE0244903F15E0201EB820259 +:10EA7000D2ED007A8A6802EB830268EE277AC2ED53 +:10EA8000007A0133DBB2022BEDD91B4C94ED5B0A0B +:10EA900020EE000AD4ED5C7A67EEA77A30EE270A02 +:10EAA000D4ED5D7A67EEA77A30EE270AFFF714FB04 +:10EAB000B7EE007AC7EE007AC4ED657AC7EE086A51 +:10EAC000C4ED666A9FED127AF4EEC77AF1EE10FAA1 +:10EAD00024D5DFED107AF4EEE76AF1EE10FA1DDDD1 +:10EAE000DFED0D7AF4EEE76AF1EE10FA16D50122A9 +:10EAF00084F8392116E000BFB8900020AC920020C5 +:10EB0000B0920020B49200203CE8010898920020C6 +:10EB10009A99993ECDCC1441CDCC24417E4B002214 +:10EB200083F839217C4CD4ED6C7A94ED6F7AD4F86B +:10EB3000183167EE877AC3ED007AD4ED6C7A94EDE4 +:10EB40006F7AD4F8183167EE877AC3ED077AD4ED7F +:10EB50006C7A94ED6F7AD4F8183167EE877AC3ED4A +:10EB60000E7AD4ED6C7A94ED6F7AD4F8183167EEA2 +:10EB7000877AC3ED157AD4ED6D7A94ED6F7AD4F877 +:10EB8000183167EE877AC3ED1C7AD4ED6D7A94ED77 +:10EB90006F7AD4F8183167EE877AC3ED237AD4F808 +:10EBA0001C21D4F8B8311360D4F81C211361D4F8B7 +:10EBB0001C31D4F8B8211A62201D00F0F9FE6368F8 +:10EBC000D3ED000AC4ED540AD3ED017AC4ED557AB1 +:10EBD00093ED027A84ED567A93ED030A84ED570A99 +:10EBE0001A69C4F860215B69C4F864310023C4F871 +:10EBF000683120EE800A27EE877A30EE070A60EE51 +:10EC0000A00A67EEA77A70EEA70A70EEA00AF7EEE8 +:10EC1000008A70EEE80A30EE000A0CF09FF99FEDD2 +:10EC20003F8A20EE080A84ED6A0AD4ED540A94ED76 +:10EC3000550A20EE800A94ED567AD4ED577A27EEE5 +:10EC4000277A30EE070A60EEA00A67EEA77A70EE28 +:10EC5000A70A70EEA00A70EEE80A30EE000A0CF087 +:10EC60007DF920EE080A84ED690AD4ED557A94ED19 +:10EC7000570A67EE807A94ED540A94ED567A20EEA6 +:10EC8000070A77EEC07AB8EE000A27EE800A0CF089 +:10EC900039F920EE080A84ED680A94ED6A7AD4ED19 +:10ECA000767A77EE677ADFED1E6AF4EEE67AF1EEB9 +:10ECB00010FA23DDB4F9D431013BA4F8D431164B5A +:10ECC000B3F9D42107EE902AF8EEE77ADFED156A62 +:10ECD00067EEA67A77EE277AC3ED6B7A83ED767AC4 +:10ECE000D3F84821D3F84C11013241F10001C3F8A7 +:10ECF0004821C3F84C11BDEC068B10BDDFED0A6A4C +:10ED0000F4EEE67AF1EE10FAD9D5034AB2F9D4312D +:10ED10000133A2F8D431D2E7B8900020E12E654249 +:10ED2000000034430000B443000034C3D0ED017A46 +:10ED300090ED0D7AD0ED0E6A37EE267AF6EE006A87 +:10ED400027EE267A67EE877A90ED197A67EE877A52 +:10ED5000C0ED137A7047D0ED0D7A90ED117A27EE61 +:10ED6000877AB5EEC07AF1EE10FA26DDF5EEC07ABC +:10ED7000F1EE10FA1CDD90ED087AB4EEE77AF1EED0 +:10ED800010FA1ADAD0ED076A37EE266AB4EEE76AAF +:10ED9000F1EE10FA0FDB76EEE77A77EE277A87EE60 +:10EDA000A67AD0ED137A67EE877AC0ED137A7047B2 +:10EDB000F1EE677ADFE70023C3647047D0ED116A94 +:10EDC00090ED137A36EE877A1F4B83ED007AD0ED03 +:10EDD000107A76EEA77A90ED126A77EE867A1B4B60 +:10EDE000C3ED007AF5EEC07AF1EE10FA28DD90ED71 +:10EDF000036AB4EEE76AF1EE10FA0AD5D0ED0D7AA7 +:10EE000066EEA76AF5EEC06AF1EE10FA01DD0023A6 +:10EE1000C364D0ED067AB4EEE77AF1EE10FA03DDC2 +:10EE20000023C364C0ED117AF1EE677AB4EEE77A9D +:10EE3000F1EE10FA03D50023C364C0ED117A7047D8 +:10EE4000F1EE677AD3E700BFDC920020E092002069 +:10EE5000D0ED027A90ED0C7AD0ED0B6A37EE667A3F +:10EE600067EE877AD0ED196A87EEA67A80ED127A7E +:10EE7000704790ED126AD0ED197A26EE276A90ED70 +:10EE80000A7A77EE877AC6EE276A90ED166A27EE41 +:10EE9000067A87EE276A76EE867AC0ED127A704798 +:10EEA00090ED146AD0ED197A26EE276A90ED097A72 +:10EEB00077EE877AC6EE276A90ED156A27EE067A16 +:10EEC00087EE276A76EE867AC0ED147A704790ED69 +:10EED000147AD0ED037AB4EEE77AF1EE10FA01DDA0 +:10EEE000C0ED147A90ED147AF1EE677AB4EEE77A19 +:10EEF000F1EE10FA01D5C0ED147A704790ED147A56 +:10EF0000B0EEC77AD0ED037ADFED1D6A67EEA67A20 +:10EF1000B4EEE77AF1EE10FA2BD4D0ED177AB0EE1A +:10EF2000E77ADFED186AB4EEE67AF1EE10FA20D453 +:10EF3000D0ED0B6A77EEE67AF0EEE77AC7EE876AF5 +:10EF4000DFED117AF4EEE76AF1EE10FA12DD836E6E +:10EF5000C26E013342F100028366C266816EC36EE7 +:10EF600040F2F512914273F1000302D3012380F8BD +:10EF70007030704700220023C0E91A23EEE700BF7B +:10EF80006F12833A17B7D1383333733F38B505461C +:10EF90000C467822002105F0F1FF23462A46203452 +:10EFA000D3F800E0D3F804C09868D968C2F800E04C +:10EFB000C2F804C09060D16010331032A342EFD188 +:10EFC000186859689B6810605160936005F1600093 +:10EFD000FEF7BEFC38BD10B52DED028B0446F0EEF9 +:10EFE000408AB0EE608A90F91430002B71DB04F196 +:10EFF0006000FEF7ADFC84ED190AC4ED0B8A84EDC8 +:10F00000178A78EE680AC4ED0D0AF5EEC00AF1EE33 +:10F0100010FA61DDF0EE607A94ED047AB4EEE77AEE +:10F02000F1EE10FA73D5D4ED007A60EEA77AC4ED54 +:10F03000107AD4ED017A60EEA77A60EE277AC4EDFB +:10F04000137AD4ED027A94ED0E7A70EEC70A67EE69 +:10F05000A00AC0EE807AC4ED127A237D13F0040F6B +:10F060003DD1237D13F0200F3DD1237D13F0020FFE +:10F070003DD1237D13F0400F3DD1237D13F0010FCF +:10F080003DD1D4ED137A94ED117A77EE877AC4ED01 +:10F09000117A94ED107A77EE877A94ED127A77EE02 +:10F0A000877AC4ED147A237D13F0100F2BD12046FC +:10F0B000FFF70DFFE36A236394ED140A84ED150A4C +:10F0C000A36CA365636BA363E36CE363BDEC028B8A +:10F0D00010BDFFF713FF8AE7F1EE607A9CE7204648 +:10F0E000FFF724FEBDE72046FFF735FEBDE72046CB +:10F0F000FFF7AEFEBDE72046FFF7BBFEBDE72046AB +:10F10000FFF75CFEBDE72046FFF7CAFECFE700230E +:10F110002365E364CEE70000034690B14FF6FF702D +:10F1200009E013F8012B4240D2B2074931F812200E +:10F1300082EA102061464A1E1FFA82FC0029F0D1A3 +:10F1400070474FF6FF7070478C010020D8B138B57A +:10F150000C460546022918D9023989B2FFF7DCFFAF +:10F160002B19C2B213F8023C9A4201D0002038BDDC +:10F17000C0F30F202C4414F8013C984201D0002029 +:10F18000F5E70120F3E7002070470020EFE70000DB +:10F1900070B5044600250574827B424E338803FB1C +:10F1A00002F24168D0F8F400F1F77AFEA27B3388CE +:10F1B00003FB02F22946606805F0E0FEA27B33887B +:10F1C00002FB03F303FB02F22946D4F8180105F011 +:10F1D000D5FE227B338802FB03F3A27B03FB02F202 +:10F1E0002946D4F80C0105F0C9FE294601E0013199 +:10F1F000C9B2A37B8B422AD9D4F8F4304FEA810CF0 +:10F2000003EB8102D2ED007AF5EE407AF1EE10FACE +:10F21000EDD0227C03EB8203C3ED007A626A237C8B +:10F22000D154A069D4F80C2194F80CE0257C6369D2 +:10F230005B5C05FB0E3303F18043013B02EB830370 +:10F24000604402681A60237C01332374CFE70023F3 +:10F250000FE0E069616A11F803C0D4F8181102FBED +:10F26000033201EB820200EB8C0001681160013374 +:10F27000DBB2227C9A42ECD892B2A4F87820237BAD +:10F28000A4F87A30A4F88030A4F88220A4F8902062 +:10F29000A4F89220A4F89830A4F89A20A4F8482062 +:10F2A00070BD00BFE69200202DE9F04704460D46F0 +:10F2B00091461E46DFF8B8830423A8F80030EB4BD4 +:10F2C00008221A80017380F80D9086730027077456 +:10F2D000304605F09BFB60613246394605F04EFE34 +:10F2E000B8F800A006FB0AFA504605F08FFBA061B3 +:10F2F0005246394605F042FEB8F800A006FB0AFA6D +:10F30000504605F083FBE0615246394605F036FE73 +:10F31000B8F800A005FB0AFA504605F077FB20621A +:10F320005246394605F02AFE304605F06FFB606212 +:10F330003246394605F022FEB8F8000005FB00F021 +:10F3400005F064FB2060B8F8002005FB02F23946A6 +:10F3500005F014FEB8F800A006FB0AFA504605F0C6 +:10F3600055FB60605246394605F008FEB8F800A02B +:10F3700009FB0AFA504605F049FBA060524639469F +:10F3800005F0FCFDB8F800A005FB0AFA504605F0B0 +:10F390003DFBC4F8E8005246394605F0EFFDD4F8CD +:10F3A000E8300122217B04F1300005F0F1F9B8F8D2 +:10F3B000008005FB08F8404605F028FBC4F8EC0087 +:10F3C0004246394605F0DAFDD4F8EC300122217BC3 +:10F3D00004F1380005F0DCF9B9F1000F40F04A8182 +:10F3E000DFF88C82B8F8007006FB07F7384605F0A6 +:10F3F0000DFBC4F8F4003A46002105F0BFFDD4F837 +:10F40000F4300122A17B04F1480005F0C1F9B8F8FD +:10F41000007005FB07F705FB07F7384605F0F6FA1D +:10F42000C4F8F8003A46002105F0A8FD217BD4F885 +:10F43000F8300A4604F1500005F0AAF9B8F8007057 +:10F4400005FB07F705FB07F7384605F0DFFAC4F8B8 +:10F45000FC003A46002105F091FD217BD4F8FC30F8 +:10F460000A4604F1580005F093F9B8F8007005FB5E +:10F4700007F705FB07F7384605F0C8FA8246C4F8D7 +:10F480000001384605F0C2FAC4F804013A460021EA +:10F49000504605F073FDB8F8002005FB02F205FBAD +:10F4A00002F20021D4F8040105F068FD217BD4F8B4 +:10F4B00000310A4604F1600005F06AF9217BD4F8B6 +:10F4C00004310A4604F1680005F062F9B9F1000F51 +:10F4D00040F0E680664FB7F800A00AFB06F909FB8A +:10F4E00005F9484605F092FA8046C4F80C010AFB7B +:10F4F00005F006FB00F005F089FAC4F810014A4651 +:10F500000021404605F03AFD3A8805FB02F206FB71 +:10F5100002F20021D4F8100105F030FDD4F80C31CE +:10F52000227BA17B04F1780005F032F9D4F8103188 +:10F53000A27B217B04F1800005F02AF9B7F8008056 +:10F5400005FB08F808FB05F8404605F05FFAC4F82B +:10F5500014014246002105F011FD217BD4F814313D +:10F560000A4604F1880005F013F9B7F8008006FB9D +:10F5700008F808FB06F8404605F048FAC4F81801F8 +:10F580004246002105F0FAFCA17BD4F818310A4666 +:10F5900004F1900005F0FCF8398801FB05F505FB46 +:10F5A00006F6304605F032FAC4F81C013246002156 +:10F5B00005F0E4FCD4F81C31A27B217B04F1980017 +:10F5C00005F0E6F8267B3F8806FB07F707FB06F504 +:10F5D000284605F01BFA8046C4F82001284605F0AD +:10F5E00015FAC4F82401284605F010FAC4F82801D9 +:10F5F000384605F00BFAC4F82C01384605F006FA37 +:10F60000C4F83001B1B243460A4604F1A00005F047 +:10F61000BFF8217BD4F824310A4604F1A80005F094 +:10F62000B7F8217BD4F828310A4604F1B00005F080 +:10F63000AFF8D4F82C310122217B04F1B80005F099 +:10F64000A7F8D4F830310122217B04F1C00005F085 +:10F650009FF8002384F8283084F8293084F82A3071 +:10F6600084F82B3084F82C30BDE8F087E492002039 +:10F67000E6920020164B1F8809FB07F7384605F075 +:10F68000C5F9C4F8F0003A46002105F077FCD4F83B +:10F69000F0300122617B04F1400005F079F89FE62B +:10F6A000B8F8002005FB02F202FB09F9484605F014 +:10F6B000ADF9C4F808014A46002105F05FFCD4F812 +:10F6C0000831627B217B04F1700005F061F801E7ED +:10F6D000E692002038B50446C37B63B1FFF758FDBE +:10F6E000627B0E4B1B8803FB02F2A168D4F8F0008A +:10F6F000F1F7D6FB38BD827B084D2B8803FB02F265 +:10F700004168D0F8F400F1F7CBFBA27B2B8803FB18 +:10F7100002F20021606805F031FCE1E7E69200208A +:10F7200090F82830B3BB70B50446437B43B3037BEA +:10F73000A0F8B8300126A0F8BA6000F1B8052A4652 +:10F7400000F13001603004F07DFE84F8C800237BB6 +:10F75000A4F8C030A4F8C26004F1C006324604F137 +:10F76000400104F1700004F06DFE84F8C80004F15B +:10F7700038023146284605F00FF884F8C80070BDFD +:10F7800000F1380200F13001603004F05BFE84F8D3 +:10F79000C800F4E77047F8B590F8293003B1F8BD18 +:10F7A000044600F1600600F168073946304604F06F +:10F7B00083FD84F8C80004F158052A4604F150017D +:10F7C000304604F03FFE84F8C800B4F85830A4F87E +:10F7D000A830B4F86A30A4F8AA3004F1A80632467A +:10F7E0003946284604F02EFE84F8C8002A4604F163 +:10F7F0008801304604F0D0FF84F8C800CFE72DE937 +:10F80000F84390F82A300BB1BDE8F883044600F1C4 +:10F81000780600F180073946304604F04DFD84F843 +:10F82000C800B4F87830A4F8A830B4F85A30A4F876 +:10F83000AA3004F1580804F1A8052A46414630468A +:10F8400004F000FE84F8C800B4F8A830A4F8B03082 +:10F85000B4F88230A4F8B23004F1B006324639462A +:10F86000284604F0EFFD84F8C800B4F89030A4F8FE +:10F87000A030B4F89230A4F8A23004F1A0094A46AE +:10F8800004F19001304604F087FF84F8C800314647 +:10F89000484604F077FE84F8C800B4F85830A4F85D +:10F8A000A830B4F88230A4F8AA302A463946404637 +:10F8B00004F0C8FD84F8C80004F1980231462846D7 +:10F8C00004F0C0FD84F8C8009EE790F82B3003B127 +:10F8D00070472DE9F0410446B0F87830A0F8B83010 +:10F8E0000126A0F8BA6000F1380700F1B8052A46F1 +:10F8F0003946783004F0A6FD84F8C800B4F84830E2 +:10F90000A4F8C030A4F8C26004F1C00842462946F9 +:10F9100004F1480004F02CFD84F8C800B4F89830D5 +:10F92000A4F8B830A4F8BA602A46414604F1980019 +:10F9300004F088FD84F8C80004F1300229463846F6 +:10F9400004F02AFF84F8C800BDE8F081F8B590F80B +:10F950002C3003B1F8BD0446B0F89830A0F8A830B8 +:10F96000B0F87A20A0F8AA20A0F8B030B0F85A3049 +:10F97000A0F8B23000F1A8073A4600F178019830BB +:10F9800004F060FD84F8C80004F1580504F1B006E5 +:10F9900032462946384604F055FD84F8C80004F183 +:10F9A00050023146284604F0E3FC84F8C800D1E751 +:10F9B00038B50446FFF78EFED4F8CC300BB12046A4 +:10F9C00098472046FFF7ACFED4F8D0300BB1204664 +:10F9D00098472046FFF7DFFED4F8D4300BB120461D +:10F9E0009847237C0BB9E37BCBB92046FFF707FF91 +:10F9F000D4F8D8300BB1204698472046FFF765FF72 +:10FA0000D4F8DC300BB1204698472046FFF79EFF24 +:10FA1000D4F8E0300BB120469847002319E0227B50 +:10FA2000204D2B8803FB02F2D4F8EC10D4F8E80048 +:10FA3000F1F736FA227B2B8802FB03F303FB02F279 +:10FA4000D4F8FC10D4F8F800F1F72AFAE0E7013313 +:10FA5000DBB2227B9A4214D9D4F8F81002FB0332AD +:10FA600001EB820292ED007A216A01EB8301D1ED74 +:10FA7000007AB4EEE77AF1EE10FAE8D5C2ED007A3A +:10FA8000E5E7084B1B8803FB02F2D4F8E810206876 +:10FA9000F1F706FAD4F8E4300BB120469847206815 +:10FAA00038BD00BFE6920020F0EE405AB5EEC00A25 +:10FAB000F1EE10FA1ED9F6EE007A20EE270A9FED3D +:10FAC0000F6A25EE866A60EE007A77EEE57A70EED0 +:10FAD000006A87EEA67A30EE470AB4EEE76AF1EEE6 +:10FAE00010FAF0D4B1EE467AB4EEE77AF1EE10FAFD +:10FAF000E9DC70479FED020A704700BF6F12833A3E +:10FB000000000000B4EEE00AF1EE10FA07D4B4EE03 +:10FB1000C10AF1EE10FA04DDB0EE410A7047B0EE12 +:10FB2000600A7047FDEEC07A0C4BC3ED007AB8EE68 +:10FB3000E77A30EE470A0A4B83ED000AB6EE007A08 +:10FB4000B4EEC70AF1EE10FA04DD17EE903A013375 +:10FB5000024A1360014B1868704700BFEC92002006 +:10FB6000E892002010B52DED048B044690ED009A2C +:10FB700069EE097AD0ED018A28EEA80A77EE807A3C +:10FB800090ED028A28EE080A37EE800AFFF78CFF14 +:10FB9000C9EE007AC4ED007AC8EE807AC4ED017A2D +:10FBA000C8EE007AC4ED027A2046BDEC048B10BD8D +:10FBB000D0ED017A91ED027A67EE877A90ED027AC4 +:10FBC000D1ED016A27EE267A77EEC77AC2ED007A88 +:10FBD000D0ED027A91ED007A67EE877A90ED007AA7 +:10FBE000D1ED026A27EE267A77EEC77AC2ED017A66 +:10FBF000D0ED007A91ED017A67EE877A90ED017A87 +:10FC0000D1ED006A27EE267A77EEC77AC2ED027A46 +:10FC10007047D0ED007A91ED000A67EE807A90EDA2 +:10FC2000010A91ED017A20EE070A77EE807A90EDD5 +:10FC3000020A91ED027A20EE070A37EE800A704739 +:10FC40002DE9F04F2DED068B85B0044691ED0A8A23 +:10FC5000D1ED0C7A38EE278A80ED1F8AD0ED078A25 +:10FC600028EE288AD0ED037A38EE278A80ED038AC1 +:10FC700090F82D30022B05D0032B00F00D810025CC +:10FC80000127CEE10025012D34DCD4ED038A07EEF7 +:10FC9000905AB8EEE78ADFEDDA7A28EE278A78EE16 +:10FCA000888A94ED08AAD4ED009AB0EE680A04F0B0 +:10FCB00023FE20EE0A0A79EEC09AEE1C04EB06162B +:10FCC000C6ED009A94ED019AB0EE680A04F0CEFDFC +:10FCD00020EE0A0A39EE409A86ED019AA26804EBFA +:10FCE00005139A63D4ED037A38EE278A83ED0F8AE1 +:10FCF0000135C8E7F0EE000A94ED0C0A0BF030F97C +:10FD0000F0EE408AF0EE000A94ED0D0A0BF028F9AF +:10FD100078EE808AF0EE000A94ED100A0BF020F9DC +:10FD2000B0EE408AF0EE000A94ED110A0BF018F9DB +:10FD300038EE008AF4EEC88AF1EE10FA00F38682FB +:10FD4000002558E218EE100AF0F7BEFB06460F46F3 +:10FD50002846F0F7A7FBA8A3D3E90023F0F70CFC93 +:10FD600002460B4630463946F0F750FAF0F7C6FE29 +:10FD7000834644E0666A46E0D4ED027A94ED0A7A5E +:10FD800077EE877A04EB0518C8ED0E7A18EE100AA4 +:10FD9000F0F79AFB06460F462846F0F783FB96A33A +:10FDA000D3E90023F0F7E8FB02460B46304639461C +:10FDB000F0F72CFAF0F7A2FEC8F83C008AF0010A2E +:10FDC0000135022D6CDCF5EEC08AF1EE10FAB9D9DE +:10FDD00018EE100AF0F778FB06460F462846F0F7B3 +:10FDE00061FB85A3D3E90023F0F7C6FB02460B466F +:10FDF00030463946F0F708FAF0F780FE8346BAF14C +:10FE0000000FB7D0266A2068F0F75EFB804689466F +:10FE10003046F0F759FB06460F465846F0F754FBBC +:10FE200041EC190B41EC100B0AF0DAFE53EC102BED +:10FE300030463946F0F7A0FB02460B46404649469D +:10FE4000F0F7E2F9F0F75AFE05F1030B04EB0B1B98 +:10FE5000CBF800006068F0F737FB80468946B0EECB +:10FE6000490AF0EE690A0AF003FF53EC102B304602 +:10FE70003946F0F781FB02460B4640464946F0F70B +:10FE8000C3F9F0F73BFECBF80400BAF1000F3FF4E2 +:10FE900073AFD4ED027A75E700254FF0010A90E7C1 +:10FEA000002518E0EE1C04EB0616F0EE000A96EDB5 +:10FEB000000A0BF055F8B0EE408AF0EE000A96ED1D +:10FEC000010A0BF04DF838EE008A04AB03EB850312 +:10FED00003ED048A0135022DE4DD00252E460123C1 +:10FEE00002E035461E460133022B1ADC04AA02EB5F +:10FEF000830252ED047A04AA02EB860212ED047A20 +:10FF0000F4EEC77AF1EE10FAEBD404AA02EB850204 +:10FF100012ED047AF4EEC77AF1EE10FAE3D51D463D +:10FF2000E1E7F0EE000A94ED000A0BF019F8B0EEEC +:10FF3000408AF0EE000A94ED010A0BF011F838EE59 +:10FF4000000A0BF06BF8F0EE408AF71C04EB071781 +:10FF500097ED000A94ED008A20EE088AD7ED017A29 +:10FF600094ED017A67EE877A38EE278AF0EE000A80 +:10FF70000AF0F6FFB0EE409AF0EE000A97ED010AA3 +:10FF80000AF0EEFF39EE000A0BF048F820EE280ADE +:10FF9000C8EE009AEF1C04EB071797ED000A94EDEA +:10FFA000008A20EE088AD7ED017A94ED017A67EE97 +:10FFB000877A38EE278AF0EE000A0AF0D1FFB0EE19 +:10FFC000409AF0EE000A97ED010A0AF0C9FF39EEF7 +:10FFD000000A0BF023F860EE288AC8EE287AF4EEC7 +:10FFE000E79AF1EE10FA40F30681354603E1D4EDCD +:10FFF000099A3BE0AFF300800000004052C100408E +:020000040801F1 +:10000000DB0F4940D4ED027A94ED0A7A77EE877AD5 +:1000100004EB0513C3ED0E7A83ED0F8A87F0010719 +:100020000135032D42DCE068F0F74EFA8046894640 +:1000300007EE905AF8EEE77A1FED0F7A67EE877AAF +:1000400017EE900AF0F740FA0022814BF0F794FA8D +:1000500002460B4640464946F0F7D8F8F0F74EFD09 +:1000600008EE100A002FC2D0D4ED089A94ED009A41 +:10007000B0EE480A04F040FC20EE290A39EE409A1E +:10008000EE1C04EB061686ED009AD4ED018AB0EE64 +:10009000480A04F0EBFB20EE290A78EEC08AC6ED90 +:1000A000018A002FAED0D4ED027AB1E7002518E026 +:1000B000EE1C04EB0616F0EE000A96ED000A0AF0BC +:1000C0004FFFB0EE408AF0EE000A96ED010A0AF00A +:1000D00047FF38EE008A04AB03EB850303ED048A87 +:1000E0000135032DE4DD00252E46012302E03546CF +:1000F0001E460133032B1ADC04AA02EB830252EDE5 +:10010000047A04AA02EB860212ED047AF4EEC77AAE +:10011000F1EE10FAEBD404AA02EB850212ED047A98 +:10012000F4EEC77AF1EE10FAE3D51D46E1E7F0EE02 +:10013000000A94ED000A0AF013FFB0EE408AF0EED8 +:10014000000A94ED010A0AF00BFF38EE000A0AF0EB +:1001500065FFF0EE408AF71C04EB071797ED000AE5 +:1001600094ED008A20EE088AD7ED017A94ED017AA9 +:1001700067EE877A38EE278AF0EE000A0AF0F0FE82 +:10018000B0EE409AF0EE000A97ED010A0AF0E8FEA0 +:1001900039EE000A0AF042FF20EE280AC8EE009A63 +:1001A000EF1C04EB071797ED000A94ED008A20EE90 +:1001B000088AD7ED017A94ED017A67EE877A38EEF6 +:1001C000278AF0EE000A0AF0CBFEB0EE409AF0EE7D +:1001D000000A97ED010A0AF0C3FE39EE000A0AF0A0 +:1001E0001DFF60EE288AC8EE287AF4EEE79AF1EE59 +:1001F00010FA00DD3546EB1C04EB031393ED007A97 +:10020000D4ED046AD4ED1F7A66EEA76A37EE267A3B +:1002100084ED1C7A93ED017AD4ED056A67EEA66A47 +:1002200037EE267A84ED1D7A04EB051393ED0E7AF2 +:10023000D4ED066A67EEA67A77EE277AC4ED1E7AC9 +:10024000284605B0BDEC068BBDE8F08F0125D2E74E +:100250000000E03F00000000F8B52DED048B10EE2B +:10026000107AF0EE609AB0EE419A0026DFED268A11 +:100270003EE09FED268A29EE088A28EE288AF7EECE +:10028000007A38EE278A18EE100AF0F71DF941ECD3 +:10029000100B0AF0C9FD51EC100B19A3D3E9002390 +:1002A000F0F794FA04460D463846F0F70DF9024689 +:1002B0000B4620462946EFF7A7FF04460D4668EE99 +:1002C000A97A17EE900AF0F7FFF802460B4620468F +:1002D0002946EFF799FFF0F711FC06EE900AC9EEF8 +:1002E000087A77EEE97A86EEA77A78EEC78A013641 +:1002F000042EBEDDB0EE680ABDEC048BF8BD00BF75 +:10030000000000204A7BB33F0000000051DA9B3D13 +:100310002DE9D0432DED028B044600F1400202216D +:100320001C3003F083FF94ED100AB5EEC00AF1EE25 +:1003300010FAC0F2D7800AF071FE84ED0F0AE06B6C +:10034000F0F7C2F86AA3D3E90023EFF75DFFF0F7F7 +:10035000D5FB00EE900AE06394ED090A0AF0FEFD79 +:1003600084ED0D0AD4ED070A94ED080A0AF0F6FDB3 +:1003700084ED060A94ED018A04F0BEFA28EE008AA4 +:10038000D4ED028A94ED060A04F070FA68EE808AD1 +:1003900038EE288A84ED048A94ED018AB1EE488A09 +:1003A00094ED060A04F062FA28EE008AD4ED028A7F +:1003B00094ED060A04F0A0FA68EE808A38EE288AE6 +:1003C00084ED058A94ED008A94ED0D0A04F094FA08 +:1003D00028EE008A94ED0D0A04F048FAB0EE481AAF +:1003E000D4ED040A94ED0F0AFFF736FF20462830BB +:1003F00080ED000A04F12C02012103F017FFD4ED77 +:10040000097A94ED037AD4ED0A6A27EE267A77EE1C +:10041000877AC4ED147A636BA363002384F84830B1 +:1004200094F84830092B4FD894ED008A94ED0E0AC9 +:1004300004F01CFA28EE008AD4ED0A7A67EE887A76 +:1004400017EE900AF0F740F806460F46E06AF0F71C +:100450003BF829A3D3E90023F0F78EF802460B46B8 +:1004600030463946EFF7D0FEF0F748FB07EE100AAA +:10047000E064D4ED147A77EEC77AC4ED117A17EE02 +:10048000900AF0F721F806460F461DA3D3E9002392 +:10049000F0F772F880468946A06BF0F715F84246EF +:1004A0004B46EFF7B3FEF0F729FBA06394F8483012 +:1004B000013384F8483014A3D3E900233046394689 +:1004C000F0F7CCFA0028ABD0D4ED070A94ED080A77 +:1004D0000AF044FD84ED150AA36BA365BDEC028B05 +:1004E000BDE8D0830023E36329E700BFAFF30080BA +:1004F0009A9999999999C93F9A9999999999134073 +:100500009A9999999999B93F7B14AE47E17A743FCA +:1005100070B504460D46204B0B635378C3F342037A +:1005200080F82C305378C3F3021380F82D30D2F8C2 +:1005300002300360D2F806304360D2F80A3083609C +:10054000D2F812300361D2F816304361D2F81A3073 +:100550008361D2F80E30C360D2F81E30C361D2F886 +:1005600022300362D2F826304362D2F82A30836206 +:10057000FFF766FB0646236FEB61636F2B62A36F89 +:100580006B6223696B606369AB60A369EB602846AB +:10059000FFF7BEFE304670BD295C0F3D10B5044626 +:1005A000102004F033FA0023036043608360C360CB +:1005B000A368C360238803B964230380636843602E +:1005C000638803B96423038123880381034A137872 +:1005D000591C1170024A42F8230010BDF09300200C +:1005E000F0920020038803817047000010B50024BA +:1005F00004E053680BB1D06898470134064B1B7870 +:10060000A34208D9054B53F824201389002BF0D0BE +:10061000013B1381F1E710BDF0930020F092002020 +:1006200008B5002210210248F2F710FA08BD00BFF9 +:100630000000024008B5012210210248F2F706FA34 +:1006400008BD00BF0000024008B500220121024899 +:10065000F2F7FCF908BD00BF0004024008B5012212 +:1006600011460248F2F7F2F908BD00BF000402404B +:1006700000B587B08DF80F004FF47A730093012313 +:100680000DF117020DF10F0104480068F4F7A7FE01 +:100690009DF8170007B05DF804FB00BFF49300203D +:1006A00038B50D46144640F08000FFF7E1FF06E044 +:1006B0005520FFF7DDFF05F8010B013CE4B2002CEB +:1006C000F6D138BD10B50C46FFF7D2FF2046FFF734 +:1006D000CFFF10BD10B50C4640F08000FFF7C8FFFB +:1006E0005520FFF7C5FF207010BD000030B52DED7F +:1006F000048B8BB00446CB4B93E803000890ADF815 +:100700002410090C8DF8261000238DF82730FDF7F2 +:10071000A9F9C54B83ED000AFDF7A4F9C24BD3ED4F +:10072000007A30EE670AF2EE087AB4EEE70AF1EEEC +:1007300010FA0ADC9FEDBD0AFDF7D8F90023236308 +:100740006362A362E3620025E1E0B94B6362B94BE7 +:10075000A362E362B84B2363B84BA361B84B009329 +:10076000B84BB94AB9490020F9F75EFB94ED0C7A11 +:10077000DFEDB76AC6EE877AC4ED087A0BB0BDEC40 +:10078000048B30BD9DF823301B021BB29DF8222044 +:10079000134307EE103AAF4BD3ED006AB8EEC77AB9 +:1007A00027EE267A84ED037AD4ED097A37EE877A3C +:1007B00084ED097A9DF825301B021BB29DF8242098 +:1007C000134307EE103AB8EEC77A27EE267A84ED87 +:1007D000047AD4ED0A7A37EE877A84ED0A7A9DF8A6 +:1007E00027301B021BB29DF82620134307EE903AD8 +:1007F000F8EEE77A67EEA67AC4ED057A94ED0B7A07 +:1008000077EE277AC4ED0B7AE5E00023022B0DD8B2 +:100810009A1C04EB820251680AAA02EB830242F896 +:10082000141C42F8201C0133DBB2EFE7B0EE688AFB +:1008300078EEC86A884BC3ED006A00233BE00133C1 +:10084000DBB2022B24D819469A1C04EB8202D2EDAB +:10085000017A0AAA02EB830212ED057AF4EEC77A56 +:10086000F1EE10FA04DD0AAA02EB830242ED057AEA +:100870000AAA02EB810212ED087AF4EEC77AF1EED1 +:1008800010FADCD50AAA02EB810141ED087AD6E71D +:10089000F0EE498ACCE70AAA02EB830252ED057A10 +:1008A00012ED087A77EEC77A6C4A02EB8302C2ED4A +:1008B000007A0133DBB2022BEDD9F6EE007AF4EECA +:1008C000E76AF1EE10FA00F39980644B93ED007A39 +:1008D000DFED637AB4EEE77AF1EE10FA00F38E8082 +:1008E00093ED017AB4EEE77AF1EE10FA00F3868028 +:1008F00093ED027AB4EEE77AF1EE10FA7EDC9FED2A +:10090000590AFDF7F3F80135ADB2B0EE689A41F23D +:100910006F739D427CD8FFF783FE9220FFF7A8FEFD +:10092000062208A91220FFF7BBFEFFF783FE9DF801 +:1009300021301B021BB29DF82020134300EE103A19 +:10094000B8EEC00A484AD2ED007A20EE270A84EDBC +:10095000000A9DF823301B021BB29DF822100B43A6 +:1009600007EE103AD2ED006AB8EEC77A27EE267A83 +:1009700084ED017A9DF825301B021BB29DF82420DE +:10098000134307EE903AF8EEE77A67EEA67AC4EDE5 +:10099000027A20EE000A27EE077A30EE070A67EEA9 +:1009A000A77A30EE270A0AF039FBF0EE408AD4ED40 +:1009B0000C7A77EE807AC4ED0C7AFFF745FE0822B8 +:1009C00008A90020FFF76CFEFFF748FE9DF82030D5 +:1009D0000F2B3FF4D7AE002D3FF417AFB4EEE89ADB +:1009E000F1EE10FA01D5B0EE689AB4EEE88AF1EEB5 +:1009F00010FA01DDB0EE688A002322E7104B009365 +:100A00001A4B1B4A1B490020F9F70EFAB0EE689A00 +:100A1000D4ED0C6A9FED187AC6EE877AC4ED0C7A95 +:100A2000002339E030E20108509400200AD7A33BAC +:100A3000AC38223BB016CE393F161B410000204295 +:100A4000E0E201085CE3010860E30108CCE801088A +:100A5000C3F51C41900300203C94002040940020EA +:100A60009A99193E6F12033A8C030020E0E60108C0 +:100A7000E4E6010804E901080080BB4503F108022F +:100A800004EB8202D2ED016A1FED057AC6EE877A89 +:100A9000C2ED017A0133DBB2022BEFD9FFF7C0FDC3 +:100AA000A220FFF7E5FD022208A92220FFF7F8FDAA +:100AB000FFF7C0FD9DF820209DF821305B0943EA37 +:100AC000C203B3F5806F01DBA3F5006307EE903A34 +:100AD000F8EEE77AB4EE007A67EE877AB3EE077A3B +:100AE00077EE877AC4ED067A2D4A13880133138096 +:100AF0002C4B93ED007AF6EE007AB4EEE77AF1EE45 +:100B000010FA3FF709AED4ED0C7A9FED277A77EE15 +:100B1000C77AF0EEE77AB6EE007AF4EEC77AF1EE35 +:100B200010FA3FF7F9AD214B93ED007ADFED207A13 +:100B3000B4EEE77AF1EE10FA3FF7EEAD93ED017AFD +:100B4000B4EEE77AF1EE10FA3FF7E6AD93ED027AF4 +:100B5000B4EEE77AF1EE10FA3FF7DEADD4ED097AA4 +:100B6000F0EEE77A9FED137AF4EEC77AF1EE10FA21 +:100B70003FF7D2ADD4ED0A7AF0EEE77AF4EEC77A19 +:100B8000F1EE10FA3FF7C8ADD4ED0B7AF0EEE77A4C +:100B9000F4EEC77AF1EE10FA3FF7BEADE6E500BF1E +:100BA000389400203C940020CDCC1C41409400207F +:100BB0009A99193E0AD7233C70B52DED028B82B06D +:100BC000FFF72EFD8020FFF753FD5520FFF750FD66 +:100BD0005520FFF74DFD514C2070FFF72BFD9FED89 +:100BE000508AB0EE480AFCF781FFFFF719FD80201C +:100BF000FFF73EFD5520FFF73BFD5520FFF738FD81 +:100C00002070FFF717FDB0EE480AFCF76FFFFFF703 +:100C100007FDB6217E20FFF755FDFFF70BFD9FED89 +:100C2000410AFCF763FFFFF7FBFC8020FFF720FD84 +:100C30005520FFF71DFD5520FFF71AFD2070FFF727 +:100C4000F9FCB0EE480AFCF751FFFFF7E9FC802001 +:100C5000FFF70EFD5520FFF70BFD5520FFF708FDB0 +:100C60002070FFF7E7FCB0EE480AFCF73FFF23785F +:100C70001E2B03D12C4B00221A7011E02B4B00933A +:100C80002B4B2C4A2C490020F9F7CEF8FF2041E0ED +:100C9000A2782A49087802430A700133224A137065 +:100CA000214B1B78052B34D8FFF7BAFC1E4D2B784F +:100CB000234C03EB4303E2185178E05CFFF702FD9D +:100CC000FFF7B8FC9FED168AB0EE480AFCF70EFF5E +:100CD000FFF7A6FC2B7803EB4303E05C40F08000B9 +:100CE000FFF7C6FC5520FFF7C3FC5520FFF7C0FCFB +:100CF0000A4E3070FFF79EFCB0EE480AFCF7F6FE95 +:100D00002B7803EB43021444617832789142BFD1CF +:100D1000C3E7002002B0BDEC028B70BD4C940020F4 +:100D20006F12833A0AD7A33D54940020E0E20108F1 +:100D30005CE3010860E3010834E901083A9400200B +:100D40009CE9010870B52DED028B82B0FFF77CFCA9 +:100D5000494C21460020FFF7BDFCFFF77FFC9FEDCB +:100D6000478AB0EE480AFCF7C1FEFFF76DFC21464A +:100D70000020FFF7AFFCFFF771FCB0EE480AFCF76C +:100D8000B5FEFFF761FCB6211420FFF79BFCFFF7CF +:100D900065FC9FED3B0AFCF7A9FEFFF755FC2146D9 +:100DA0000020FFF797FCFFF759FCB0EE480AFCF76C +:100DB0009DFEFFF749FC21460020FFF78BFCFFF763 +:100DC0004DFCB0EE480AFCF791FE23780F2B03D1BF +:100DD0002C4B00221A7019E02B4B00932B4B2C4A02 +:100DE0002C490020F9F720F8FF2041E0013BDBB25D +:100DF0002B7003EB4303284A13449B78274A11784E +:100E00000B4313701F4A1378013313701D4B1B786B +:100E1000052B2CD8FFF718FC1A4D2B78204C03EB30 +:100E20004303E2185178E05CFFF74CFCFFF716FC37 +:100E30009FED128AB0EE480AFCF758FEFFF704FC5B +:100E40000D4E2B7803EB43033146E05CFFF742FC89 +:100E5000FFF704FCB0EE480AFCF748FE2B7803EBE2 +:100E600043021444617832789142BFD1CAE700202E +:100E700002B0BDEC028B70BD4C9400206F12833A1F +:100E80000AD7A33D54940020E0E201085CE3010886 +:100E900060E3010868E901089CE901083A94002030 +:100EA000B0E9010838B50D46114B1860114C00230C +:100EB0002370FFF781FE237818432070FFF742FF6D +:100EC00023781843207075B90B4B0C4A5A620C4AB0 +:100ED0009A62DA620B4A1A630B4A1A620B4A9A61E7 +:100EE000044B187838BD0448FFF700FCF8E700BF52 +:100EF000F49300203A940020F8930020AC38223B71 +:100F0000B016CE393F161B41C48B813F00002042F2 +:100F100038B50546FFF784FB9220FFF7A9FB734C19 +:100F2000062221461220FFF7BBFBFFF783FB637805 +:100F30001B021BB2227813436D4A138007EE903ACE +:100F4000F8EEE77A6B4991ED007A67EE877A95EDD6 +:100F5000087A67EE877AC5ED007AE3781B021BB248 +:100F6000A07803431380D1ED006A07EE903AF8EEC3 +:100F7000E77A67EEA67A67EE277AC5ED017A63799C +:100F80001B021BB221790B43138007EE903AF8EE57 +:100F9000E77A67EEA67A67EE277AC5ED027AFFF761 +:100FA00053FB082221460020FFF77AFBFFF756FB90 +:100FB00023780F2B2BD0FFF733FBA220FFF758FB32 +:100FC0004A4C022221462220FFF76AFBFFF732FB40 +:100FD000227863785B0943EAC203454A1380B3F57C +:100FE000806F02DBA3F500631380414BB3F900303F +:100FF00007EE903AF8EEE77AB4EE007A67EE877A79 +:10100000B3EE077A77EE877AC5ED077A38BD3A4BAB +:101010001B78002B3AD0E3781B021BB2A1780B435C +:1010200033490B803548D0ED006A07EE903AB8EEB0 +:10103000E77A27EE267AD5ED097A37EE677A85EDDD +:10104000037A63791B021BB2207903430B8007EEFE +:10105000903AB8EEE77A27EE267AD5ED0A7A37EE9F +:10106000677A85ED047AE3791B021BB2A2791343F8 +:101070000B8007EE903AF8EEE77A67EEA67A95EDE8 +:101080000B7A77EEC77AC5ED057A94E7174AD378DD +:101090001B021BB291780B4315490B801748D0ED0A +:1010A000006A07EE903AB8EEE77A27EE267A85EDE9 +:1010B000037A53791B021BB2107903430B8007EEAE +:1010C000903AB8EEE77A27EE267A85ED047AD3795E +:1010D0001B021BB2927913430B8007EE903AF8EE95 +:1010E000E77A67EEA67AC5ED057A64E730940020CA +:1010F0002C9400208C0300209403002090030020F7 +:10110000014B1B6858637047486C002070B52DED8B +:10111000028B8AB0064600240794089409940023A1 +:10112000049305934FF07E53069301940294039425 +:1011300021E0354D2846FFF7EBFE95ED007ADDED19 +:10114000077A77EE877ACDED077A95ED017ADDEDB6 +:10115000087A77EE877ACDED087A95ED027ADDEDA3 +:10116000097A77EE877ACDED097A9FED280AFCF7A8 +:10117000BDFC0134E4B2632CDBD900230CE00AAAE5 +:1011800002EB830252ED036A9FED217AC6EE877A65 +:1011900042ED037A0133DBB2022BF0D907A8FEF748 +:1011A000E1FC04A907A8FEF734FD09F07FFEB0EECC +:1011B000408A01AA04A907A8FEF7FAFC01A8FEF7D5 +:1011C000D1FCF6EE007A28EE278AB0EE480A09F044 +:1011D00097FD86ED000A002410E00AAB03EB8403C0 +:1011E00053ED098AB0EE480A09F0C2FD013406EB5E +:1011F000840368EE808AC3ED008AE4B2012CECD946 +:101200000AB0BDEC028B70BDF89300206F12833AD8 +:101210000000C84270B52DED068B86B004460D4621 +:10122000164690ED040A9F4BD3ED007A70EE677A74 +:10123000F0EEE77A9FED9C7AF4EEC77AF1EE10FAC1 +:1012400022DCD0ED057A994B93ED007A77EEC77AE0 +:10125000F0EEE77A9FED947AF4EEC77AF1EE10FAA9 +:1012600012DCD0ED067A924B93ED007A77EEC77AD6 +:10127000F0EEE77A9FED8C7AF4EEC77AF1EE10FA91 +:1012800002DC0378002B6ED09FED8AAA80EE0A0A5A +:1012900003F032FBB0EE409A94ED050A80EE0A0AA4 +:1012A00003F02AFBF0EE408A94ED060A80EE0A0A6B +:1012B00003F022FBF0EE40AA94ED040A80EE0A0A45 +:1012C00003F0D4FAB0EE408A94ED050A80EE0A0AE3 +:1012D00003F0CCFAF0EE409A94ED060A80EE0A0A8A +:1012E00003F0C4FA69EE2A6A28EE297A27EE007A1A +:1012F00036EE877A704B83ED007A28EE887A6F4B52 +:1013000083ED007A29EE006A6AEE885A25EEA97A02 +:1013100036EE476A6A4B83ED006A29EE297A27EE9A +:10132000007A37EE657A674B83ED007A29EE289ACA +:10133000654B83ED009A28EE408A66EEA96A38EE86 +:10134000668A624B83ED008A68EEC07A604BC3ED1B +:10135000007A604BC3ED009A68EEAA8A5E4BC3ED3B +:10136000008A00232370002310E005EB8302D2EDF6 +:10137000007A04EB830292ED017A67EE877A06AA7F +:1013800002EB830242ED037A0133DBB2022BECD98C +:10139000DDED037A484B93ED006A27EE867A9DEDEA +:1013A000045A464BD3ED002A65EE226A37EE267AC0 +:1013B000DDED055A424B93ED003A65EE836A37EE58 +:1013C000267A85ED007A3F4BD3ED006A27EEA67AA8 +:1013D0003D4BD3ED003A65EE234A37EE247A3B4B82 +:1013E00093ED004A65EE844A37EE247A85ED017A62 +:1013F000374B93ED007A67EE877A364BD3ED004A90 +:1014000025EE245A77EE857A334B93ED005A65EE3C +:10141000855A77EEA57AC5ED027A002309E006EB3E +:101420008302116806AA02EB830242F8181C0133FA +:10143000DBB2022BF3D99DED002A26EE026ADDED28 +:10144000015A62EEA52A36EE226ADDED027A23EE1B +:10145000273A36EE036A86ED006A66EE826A63EE2C +:10146000A53A76EEA36A24EE274A76EE846AC6EDA4 +:10147000016A27EE027A64EEA54A37EE247A25EE59 +:10148000275A37EE057A86ED027A2269054B1A60F3 +:101490006269064B1A60A269054B1A6006B0BDEC82 +:1014A000068B70BDA49500206F12833A9C95002096 +:1014B000A0950020E12E65427095002074950020D3 +:1014C000789500207C950020809500208495002050 +:1014D000889500208C9500209095002010B50F4C29 +:1014E000DFED0F0A0F4B93ED070A2046FDF773FD62 +:1014F00094ED140AFEF716FB00EE100A9FED0A1A8F +:10150000DFED0A0AB8EEC00AFEF7FCFABCEEC00A2C +:1015100010EE103A98B2FFF7F3FD10BDF8940020DA +:1015200000002042F89300200000804F00000000DF +:101530002E4B93F878300BB12D48704730B52DED18 +:10154000028B91B0294B012283F878200021294891 +:10155000F4F71EFD01212848FFF7A4FC0028F9D16B +:10156000264BB7EE008A83ED018A83ED028A83ED74 +:10157000038ADFED238AC3ED048AC3ED058AC3ED38 +:10158000068A01251D7000240C940D940E940F946E +:101590000CA8FFF7BBFDB0EE682AF0EE481A9FEDED +:1015A000191ADFED190AB2EE040A0CA8FDF728F9A2 +:1015B0002C22214601A803F0E1FC144B0193144BAB +:1015C0000293144B04938DF81850134B079301A901 +:1015D0001248FDF7DBFC054B114A9A621148FCF7F3 +:1015E000B7F9034811B0BDEC028B30BD74940020F4 +:1015F000C4940020486C0020046B00205894002004 +:1016000000000000002474496F12833A00007A44FD +:101610000000A0410000FA4400009643F894002026 +:1016200096430B3CF094002092ED026A66EE067A37 +:10163000F6EE006A76EEE77A92ED037A67EE075AE5 +:1016400077EEE57AD0ED005A67EEA57AD2ED014A41 +:1016500066EE245A92ED005A27EE054A75EEC45AFA +:1016600090ED014A65EE845A77EEA57A27EE247A4A +:1016700026EE056A37EE067A90ED026A27EE067AC4 +:1016800077EE877A77EEA77AC1ED007AD2ED015A2C +:10169000D2ED027A25EEA77AD2ED004A92ED035AF6 +:1016A00024EE856A37EE067A90ED006A27EE067A18 +:1016B00025EEA56A36EEC66A25EE054A36EE446A80 +:1016C00090ED014A26EE046A37EE067A67EE857AD7 +:1016D00065EEA45A77EEE57A90ED026A67EE867AB7 +:1016E00037EE277A37EE077A81ED017AD2ED015A8B +:1016F00092ED037A65EE877A92ED005A92ED026AD6 +:1017000065EE064A77EEE47AD0ED004A67EEA47AF9 +:1017100027EE067A25EE855A37EE057A90ED015AC6 +:1017200027EE057A77EE877A65EEA55A76EEE56ABA +:1017300026EE066A76EEC66A90ED027A66EE876A53 +:1017400077EEA67A77EEA77AC1ED027A704792ED2E +:10175000026A66EE067AF6EE006A76EEE77A92EDB7 +:10176000037A67EE075A77EEE57AD0ED005A67EE16 +:10177000A57AD2ED014A66EE245A92ED005A27EE80 +:10178000054A75EE845A90ED014A65EE845A77EE6B +:10179000A57A27EE247A26EE056A37EE467A90ED92 +:1017A000026A27EE067A77EE877A77EEA77AC1ED9E +:1017B000007AD2ED015AD2ED027A25EEA77AD2ED67 +:1017C000004A92ED035A24EE856A37EE467A90ED90 +:1017D000006A27EE067A25EEA56A36EEC66A25EE81 +:1017E000054A36EE446A90ED014A26EE046A37EE69 +:1017F000067A67EE857A65EEA45A77EEA57A90EDC3 +:10180000026A67EE867A37EE277A37EE077A81ED3D +:10181000017AD2ED015A92ED037A65EE877A92ED64 +:10182000005A92ED026A65EE064A77EEA47AD0ED90 +:10183000004A67EEA47A27EE067A25EE855A37EE3F +:10184000457A90ED015A27EE057A77EE877A65EEB4 +:10185000A55A76EEE56A26EE066A76EEC66A90ED41 +:10186000027A66EE876A77EEA67A77EEA77AC1EDFE +:10187000027A704770B586B0002303930493584BE7 +:1018800005935848FCF764F8574E86ED000A574B0D +:10189000D3ED007A37EE800A83ED000A544D2846D6 +:1018A000FFF736FB2B68534CE3656B682366AB6828 +:1018B0006366EB6823652B6963656B69A36504F157 +:1018C0005C0204F150014C48FFF7A4FC96ED003A8D +:1018D000D4ED192A94ED182AD4ED171A94ED161A9E +:1018E000D4ED150A94ED140AFCF7FCFF434B0FCB23 +:1018F00084E80F00224604F12C014148FFF794FED2 +:10190000224604F138013F48FFF78EFE224604F1DB +:1019100044013D48FFF788FE2246694603A8FFF7C9 +:1019200016FF002327E0334A03F1160102EB810181 +:1019300091ED017A06A901EB830151ED067A37EEAC +:10194000677A2949D1ED007A27EE277AD2ED0A6A23 +:1019500077EEA67A87EE276A191D02EB810292EDD7 +:10196000007A66EE876A86EEA77A76EE077AC2ED8F +:10197000007A0133DBB2022BD5D91E4C224604F18A +:101980001C0104F11000FFF74FFE204B93ED6A0A93 +:1019900084ED1C0AD3F8A421E266D3ED680AC4EDF5 +:1019A0001A0AD3F8AC316367DFED197A20EE270A03 +:1019B00060EEA70ADFED177AC0EEA70A80EE270ACD +:1019C00000F070F8144B1B6813F0010F05D0124A99 +:1019D00013680133136006B070BDFFF77FFDF6E7B3 +:1019E000C3F51C41F094002098950020A895002094 +:1019F000F89300207494002058940020089200204E +:101A0000C4E90108D0E90108DCE90108B890002028 +:101A1000DB0F4940000034439495002000B583B0AB +:101A2000054B0093054B064A06490020F8F7FCF9E0 +:101A300003B05DF804FB00BFE0E20108E0E6010846 +:101A4000E4E60108E8E9010838B50E4B18680378A8 +:101A5000A52B00D038BD3021FDF778FB0028F9D048 +:101A6000084B1C68084D04F1300EAC4620686168D4 +:101A7000A268E368ACE80F00103465467445F4D101 +:101A8000E8E700BF0C960020AC950020044B5A7884 +:101A900060F300025A70D2B26FF347025A70704777 +:101AA000F4950020044A10EE103AC2F8063010EE09 +:101AB000903AC2F802307047F4950020064B10EEC1 +:101AC000102AC3F80A2010EE902AC3F80E2011EE57 +:101AD000102AC3F812207047F495002010B586B084 +:101AE00004AB0024049405940B4A059293E8030088 +:101AF000FCF748FA094B18600194029403940523FB +:101B0000ADF80430064B029301A8FEF747FD054BE4 +:101B10001860054806B010BD491A01080C9600204F +:101B20001D1A010810960020AC95002038B50C4C09 +:101B30005A23237016212046FDF7EEFAE082094D64 +:101B4000AE46A446BCE80F00AEE80F009CE80300D8 +:101B50008EE8030018212846FCF732FA38BD00BF92 +:101B6000F4950020DC95002010B582B004462121B8 +:101B700003F0F2FA1F2801D802B010BD044B019304 +:101B80000094044B044A05490020F8F74DF9FEE79C +:101B9000E0E201085CE3010860E3010824EA0108CF +:101BA000884200D1704700B585B0054B0293019182 +:101BB0000090044B044A05490020F8F735F9FEE788 +:101BC000E0E201085CE3010860E3010848EA01087B +:101BD000F8B505460F46FFF7C7FF144C2646A46A22 +:101BE00074B129462046EFF7FFF90028F6D194F8A2 +:101BF00021103846FFF7D4FF012384F82C3012E07F +:101C0000302002F003FFB0623022002103F0B6F969 +:101C1000B36A83F821702946B06A03F03FFA0123C2 +:101C200086F82C30B46A2046F8BD00BF9803002027 +:101C3000F8B50E46FFF7CCFF07460C2002F0E6FE93 +:101C400005460024046044608460067144B17B6AE8 +:101C50006BB11A469B68002BFBD195602846F8BDF6 +:101C6000304602F0D3FE45F824000134EEE77D62F1 +:101C7000F4E710B50446C07900B910BD0B46617990 +:101C8000227954F821101846EFF70AF963790133E5 +:101C9000637100236371E379013BE3710120ECE799 +:101CA00070B505460E46426A0F4B1A600FE0A379E5 +:101CB00095F82120314654F82300EFF7F1F800237E +:101CC000A371E3790133E371A268074B1A60064BF5 +:101CD0001C683CB1E379012BE9D100226271013B20 +:101CE000E371E4E7012070BD1496002000B585B0D3 +:101CF000D0F8A83119680A4A91420ED00222094947 +:101D00000291DB6901930092074B084A08490020C1 +:101D1000F8F78AF805B05DF804FB0122EFE700BF91 +:101D200018650020E0E20108E0E60108E4E60108A9 +:101D30006CEA010830B585B00C4609794A1ED2B26A +:101D400090F8AE31012B57D05DB2002D00F0BC8071 +:101D5000023BDBB2012B00F2B780032A14D82168C2 +:101D60005F4B99420DD01346042102F20122A2607A +:101D70005C4A0125555480F8AD3180F8AC11002340 +:101D80000FE013460121F0E74B1FDBB225685449F1 +:101D90008D4201D00321E8E70021E6E701251FE09D +:101DA0000133514A12789A4240F297804F4A52F8D2 +:101DB0002320D2F8A821106821688842F0D1516B05 +:101DC000A2689142ECD14A4B00934A4B4A4A4B4994 +:101DD0000020F8F729F82268414B9A42DED002250C +:101DE000434B02930195A3680093424B424A4449F6 +:101DF0000020F8F719F8F3E790F8AF31012B13D072 +:101E0000032A2AD82168364B994223D0134603214E +:101E100002F20522A260334A0125555480F8AD3103 +:101E200080F8AC11002325E0032A09D821682C4B47 +:101E3000994202D013460821EAE713460621E7E754 +:101E40004B1FDBB2256826498D4201D00921DFE70F +:101E50000721DDE713460021DAE74B1FDBB22568D7 +:101E60001F498D4201D00521D2E70221D0E701258B +:101E70001EE001331C4A12789A422ED91B4A52F8AE +:101E80002320D2F8A821106821688842F1D1516B33 +:101E9000A2689142EDD1164B0093164B164A174992 +:101EA0000020F7F7C1FF22680D4B9A42DFD00225D0 +:101EB0000F4B02930195A36800930E4B0E4A1049F5 +:101EC0000020F7F7B1FFF3E7094B0093094B0A4AEB +:101ED0000C490020F7F7A8FFF6E705B030BD00BFBA +:101EE000186500204C960020489600201896002087 +:101EF000E0E201085CE3010860E30108A8EA0108E8 +:101F000018EB010844EB010838B50546D0F83D4010 +:101F1000D4F8B401FEF766FB04F5DC70FBF718FD9E +:101F200084ED6F0A6188218095F82C3095F82D207A +:101F300042EA0322628007EE902AF8EE677ADFED2C +:101F40002F6A67EEA66AC4ED016AD4ED027A9FEDAE +:101F50002C7A27EE877A95F82E0095F82F3043EAF1 +:101F600000231BB207EE903AF8EEE77A9FED256A60 +:101F700067EE867A77EE277AC4ED027AB4F90C30F0 +:101F800007EE903AF8EEE77A9FED1F7A27EE877A10 +:101F900095F8300095F8313043EA00231BB207EE84 +:101FA000903AF8EEE77A9FED196A67EE867A77EE57 +:101FB000277AFDEEE77A17EE903AA38195F8323052 +:101FC000A373521AB2F5805F10DD6369013B636150 +:101FD00063694FF4B47202FB03F307EE903AF8EE34 +:101FE000E77A77EEA67AC4ED047A38BD12F5805F01 +:101FF000EEDA636901336361EAE700BFACFF333DAA +:102000009899193E3433A340D0CCCC3D6666663FE8 +:10201000042903D0022903D1427770470277704721 +:1020200000B583B0054B0093054B064A06490020D6 +:10203000F7F7FAFE03B05DF804FB00BFE0E2010829 +:102040005CE3010860E3010898EB0108002380F8D5 +:10205000B0317047012380F8B031704770B584B05B +:1020600005464FF4E07002F0D1FC04464FF4E072F4 +:10207000002102F083FF95F89C3084F8AE3104F122 +:10208000180305F1940292E8030083E8030095F831 +:10209000B43084F8AF3105F1100104F13000FCF7E1 +:1020A00075FF05F13C0104F1A800FCF76FFF05F195 +:1020B000680104F59070FCF769FF2B6823626B6878 +:1020C0006362EB68E362AB68A36205F1A006314688 +:1020D0002046FFF72FFE134BC5F8AC30C5F8B040D3 +:1020E0003046FBF7F7FAC4F8A801002301930293E6 +:1020F00003930223ADF804300B4B0293039401A821 +:10210000FEF74CFAC4F8B4012046FFF7A3FF074AD4 +:102110001378591C1170064A42F82340204604B037 +:1021200070BD00BF091F0108ED1C01084896002082 +:10213000189600200176704780ED660A704700000F +:1021400070B52DED028B002555E0B1EE400A5FE041 +:10215000237F012B0AD0D4ED047AF0EE400AB0EED2 +:10216000670A04F59070FCF736FF58E0236AD3ED58 +:10217000007AF2E7637F012B63D0D4ED027AF0EEB0 +:10218000400AB0EE670A04F1A800FCF724FFA37F21 +:1021900013F0010F04D0E36AD3ED007A30EE270A82 +:1021A000E37E012B51D0E37F012B51D09FED6B1AC1 +:1021B000DFED6B0AFDF7A6FCFDEEC07A17EE902A64 +:1021C00094F8AC1194F8ADC14FEA4C00C2F3072665 +:1021D00001EB811E634B734403EB4C0E8EF82460BD +:1021E00000F1010E734483F8242094F8B031002BE1 +:1021F00000F0918001355C4B1B78AB4240F2998036 +:102200005A4B53F8254094ED660AA37E012B9CD0CF +:10221000637E13F0040F02D0237E042B98D0637EDC +:1022200013F0020FB3D0237E13F0060FAFD0A37FBD +:1022300013F0020F9ED0A36AD3ED007A30EE270A86 +:1022400098E7636AD3ED007A99E7B1EE400AAAE70E +:1022500094ED027AF1EE087A87EE276ADFED447A90 +:1022600060EE277A67EE867A9FED427A26EE077A4D +:1022700027EE067A77EE877ADFED3F6A60EE266A10 +:1022800066EE806A77EEA67AC4ED687AD4ED696A64 +:10229000F7EE005AF4EEE56AF1EE10FA86DAF5EEA2 +:1022A000C07AF1EE10FA81D4F4EEE56AF1EE10FA9C +:1022B0007FF57CAF67EEA67A9FED2D8A26EE088A21 +:1022C00077EE677AB5EEC00AF1EE10FA10D428EE78 +:1022D000080A9FED2A7A67EE877A30EE670A08F0DF +:1022E0009DFE30EE486ADFED267A86EE270A5DE72E +:1022F000F1EE488A28EE088A9FED207A67EE877A09 +:1023000038EE670A08F08AFE78EEC08ADFED1C7AA4 +:1023100088EEA70A4AE701EB81112031114B1944DD +:1023200004310844002341F81C3043608360C360DB +:1023300060E7002400E00134092C0CD8114B1B5D30 +:10234000002BF8D004EB8413B7EE000A05481844BC +:10235000FBF73AFAEFE7BDEC028B70BD0000804658 +:10236000000080C6C8030020489600201896002070 +:10237000CFC9DA35635A1A35D6D98A34D6D98A35CF +:10238000D6D90A354C96002031EE601A30EE600A3C +:1023900001238340013B07EE903AF8EEE77A60EEC6 +:1023A000277A87EE817AFCEEC77A17EE903A98B2D8 +:1023B0007047000008B50446D0F8B85148E094F8DA +:1023C0003030012B0CD094ED007AF0EE400A9FEDF6 +:1023D0004B0A27EE000A04F59470FCF7FCFD42E07E +:1023E000D4F8A03193ED007AEFE7D4F8A43193ED5F +:1023F000007A53E0F0EE400A94ED080A04F1380048 +:10240000FCF7E9FD64E0B1EE400A65E0BBEE020ACC +:102410000C20B3EE021AFBEE020AFFF7B5FF94F8A8 +:10242000B43143B90C20B3EE021AFBEE020A9FED61 +:10243000340AFFF7A9FF030A85F82A3085F82B0034 +:10244000B6EE000A2846FBF7BFF90120F6F7D4FAEA +:1024500094ED6C0A94F82D3013F0040F03D094F827 +:102460002C30042BABD094F82D3013F0020F1FD07A +:1024700094F82C3013F0060F1AD094F8323013F081 +:10248000020F05D0D4F8A831D3ED007A30EE270A38 +:1024900094F83030012BA8D094ED027AF0EE400A87 +:1024A0009FED160A27EE000A04F1B000FCF793FD39 +:1024B00094F8323013F0010F05D0D4F8AC31D3EDDD +:1024C000007A30EE270A94F82D3013F0010F91D1E5 +:1024D00094F82E30012B96D0FBEE027AB4EEE70A88 +:1024E000F1EE10FA92D9F3EE027AB4EEE70AF1EEC9 +:1024F00010FA8DDBB0EE670A8AE700BFE12E654275 +:102500000000000030B58BB047F268430893002309 +:102510008DF82430154B1B782BB300251FE00023CA +:10252000ADF800300A226946284602F059FA694699 +:1025300008A802F093FD0DF1040C0D4C0FCCACE893 +:102540000F0094E807008CE807000A4B53F82510A9 +:1025500001A8F6F71CFA084B43F825000135034B98 +:102560001B78AB42DBD80BB030BD00BF74960020A7 +:1025700038E20108549600206496002038B5002502 +:102580003FE094F82430012B16D0B4F90C3000EE63 +:10259000103AB8EEC00A04F59470FCF71CFDF0EE9A +:1025A000400A94F8263013F0020F3CD0236BD3ED91 +:1025B000007A70EE270A36E0A36A93ED000AEAE794 +:1025C000E36A93ED000A3EE094F8213013F0010F26 +:1025D0004AD1FDEEE00A10EE903A1BB294F82220A8 +:1025E000012A4ED0314A12682432D4F8A811C969A0 +:1025F000A1F5207122F8113094F8A431002B43D0BA +:1026000001352B4B1B78AB4247D92A4B53F8254059 +:10261000D4ED680A94F8213013F0040F03D094F835 +:102620002030042BADD094F8213013F0020FCBD022 +:1026300094F8203013F0060FC6D094F82430012B04 +:10264000BED094ED020A04F59470FCF7C4FCF0EEE1 +:10265000400A94F8263013F0010FB5D0636BD3ED28 +:10266000007A70EE270AAFE7B4F90C3000EE103AAA +:10267000B8EEC00A04F13800FCF7ADFCF0EE400AF9 +:10268000A7E75B421BB2ADE7D4F8A831DB69A3F53D +:102690002073002122F81310B2E703B938BD9FED73 +:1026A000060A024B1868FBF78FF8F7E788960020B8 +:1026B0007596002078960020CDCC4C3E08B5FFF7EB +:1026C0003FFDFFF75BFF00F001F808BD38B50025BE +:1026D00074E0B4F902304FF47A7000FB03F38C48D5 +:1026E00080FB03201844DB17C3EBA010EDF7DAFEE4 +:1026F0000022884BEDF78AFDEEF7D8F9864B23F8D8 +:10270000150070E0B4F904304FF47A7000FB03F365 +:102710007F4880FB03201844DB17C3EBA010EDF7C4 +:10272000C1FE00227B4BEDF771FDEEF7BFF97A4B4E +:1027300023F815005AE0042B08D0082B0DD0E368CD +:102740001B68754A32F915201A6436E0E3681B6885 +:10275000714A32F915209A632FE0E3681B686E4ACC +:1027600032F91520DA6328E02378012B62D0237830 +:10277000022B78D02378BBB9B4F906304FF47A70C5 +:1027800000FB03F3654880FB03201844DB17C3EB11 +:10279000E010EDF787FE00225E4BEDF737FDEEF718 +:1027A00085F95D4B23F815002369002B74D1E3688C +:1027B0001B68594A32F915205A630135584B1B786A +:1027C000AB4240F2A380574B53F82540002CF4D085 +:1027D000A37A012BC8D0022B77D0002BEDD1237820 +:1027E000012B3FF476AF2378022B8BD02378BBB933 +:1027F000B4F906304FF47A7000FB03F3444880FBD1 +:1028000003201844DB17C3EBA010EDF74BFE0022AA +:10281000404BEDF7FBFCEEF749F93F4B23F8150071 +:102820002369002B87D1E3681B683B4A32F91520E6 +:102830005A63C2E7B4F902304FF47A7000FB03F335 +:10284000364880FB03201844DB17C3EBE010EDF79C +:1028500029FE00222F4BEDF7D9FCEEF727F92E4B7E +:1028600023F8150083E7B4F904304FF47A7000FBC5 +:1028700003F32A4880FB03201844DB17C3EBE01066 +:10288000EDF710FE0022234BEDF7C0FCEEF70EF93A +:10289000214B23F815006DE7042B08D0082B0DD031 +:1028A000E3681B681C4A32F915201A6485E7E3685F +:1028B0001B68194A32F915209A637EE7E3681B68A2 +:1028C000154A32F91520DA6377E7238903EB83038E +:1028D0009B009BB203F5FA731BB20F4A22F8153026 +:1028E00022691AB9E2681268536366E7042A05D0C0 +:1028F000082A07D0E268126813645EE7E26812688B +:1029000093635AE7E2681268D36356E738BD00BFA5 +:10291000B7600BB600407F408C96002049D6B9F2D4 +:102920009A9600209C9600200346104605E013F876 +:10293000011B4140044A505C614601F1FF3C1FFA13 +:102940008CFC0029F3D17047F4EB010888B138B54D +:102950000C46054602290ED90139FF2289B2FFF73C +:10296000E3FF2C4414F8013C834214BF00200120F3 +:1029700038BD002070470020FAE70000034698B1F8 +:10298000481E99B110B413F8011B5140C9B2084C4C +:1029900034F8111081EA1222014601380029F2D1DF +:1029A00010465DF8044B70474FF6FF7210467047B3 +:1029B000F4EC0108D8B170B50C460646022918D9C6 +:1029C0008D1E0D4B1A882946FFF7D8FFC2B2735DE2 +:1029D0009A4201D0002070BDC0F30F20344414F897 +:1029E000013C984201D00020F5E70120F3E70020E8 +:1029F00070470020EFE700BF5206002080B170B59D +:102A00000C46054602290AD98E1E064B1A88314605 +:102A1000FFF7B4FFA855013CC0F30720285570BD4F +:102A2000704700BF520600202DE9F843054688464E +:102A300017461A4CA52323704FF000090823637032 +:102A400084F80290164E3378E370FF22042120466A +:102A5000FFF76AFF2071012363710322A27184F8DA +:102A600007902372B5F80330A4F80B30B5F80130A5 +:102A7000A4F8093084F80D80A7734FF6FF720F2178 +:102A80002046FFF77BFFA4F80F001121204601F03C +:102A90006BFA337801333370BDE8F883F496002085 +:102AA000489900202DE9F0439146DDF820E0099A8D +:102AB0000A9F0B9E0C9D4FF0000C05E0CCF1020824 +:102AC00000F808400CF1010CBCF1020F03DC11F816 +:102AD0000C40002CF2D1C17869F30201C170C9B277 +:102AE0006FF3C501C17003F00304C9B201F03F01E7 +:102AF00041EA8411C170C3F38103017921F003011C +:102B00000B430371DBB2079961F385030371DBB2F9 +:102B100003F03F030371437923F07F034371DBB27A +:102B200003F07F0343710021817180F807E0CEF349 +:102B3000012E037A23F0030343EA0E03037202F02B +:102B40003F04DBB203F0030343EA84030372C2F3DE +:102B50008413427A22F01F021A43427207F00703DD +:102B6000D2B202F01F0242EA43124272C7F3C70711 +:102B70008772C172037B23F00303037306F03F03E4 +:102B8000027B02F0030242EA83020273C6F3841658 +:102B9000437B23F01F033343437305F00702DBB28B +:102BA00003F01F0343EA42134373C5F3C70585735C +:102BB000BDE8F0832DE9F0439146DDF820E0099A65 +:102BC0000A9F0B9E0C9D4FF0000C05E0CCF1020813 +:102BD00000F808400CF1010CBCF1020F03DC11F805 +:102BE0000C40002CF2D1C178012464F3C501C170FE +:102BF000C9B269F30201C17003F00304C9B201F064 +:102C00003F0141EA8411C170C3F38103017921F0CE +:102C100003010B430371DBB2079961F38503037171 +:102C2000DBB203F03F030371437923F07F03437169 +:102C3000DBB203F07F0343710021817180F807E06C +:102C4000CEF3012E037A23F0030343EA0E0303724B +:102C500002F03F04DBB203F0030343EA8403037290 +:102C6000C2F38413427A22F01F021A43427207F021 +:102C70000703D2B202F01F0242EA43124272C7F3C4 +:102C8000C7078772C172037B23F00303037306F047 +:102C90003F03027B02F0030242EA83020273C6F39F +:102CA0008416437B23F01F033343437305F007026D +:102CB000DBB203F01F0343EA42134373C5F3C705B6 +:102CC0008573BDE8F0832DE9F04788469246099F59 +:102CD0000A9EDDF82CE00C9A0D990E9C4FF0000C2A +:102CE00005E0CCF1020900F809500CF1010CBCF12F +:102CF000020F03DC18F80C50002DF2D1C5784FF00C +:102D0000050C6CF3C505C570EDB26AF30205C5701C +:102D100003F0030CEDB205F03F0545EA8C15C570D4 +:102D2000C3F38103057925F003052B430371DDB25D +:102D3000089B63F38505057180F807E0CEF3012E4B +:102D4000037A23F0030343EA0E03037202F03F0504 +:102D5000DBB203F0030343EA85030372C2F3841377 +:102D6000427A22F01F021A43427201F00703D2B2E4 +:102D700002F01F0242EA43124272C1F3C70181729C +:102D800007F00303027902F03F0242EA8312027164 +:102D9000C7F38607437923F07F033B43437106F073 +:102DA0000102DBB203F07F0343EAC2134371C6F3AF +:102DB00047068671C472C4F30122037B23F0030328 +:102DC00013430373C4F38522DBB203F0030343EA26 +:102DD00082030373C4F30442437B23F01F031343B2 +:102DE0004373C4F34252DBB203F01F0343EA4213BE +:102DF0004373240E8473BDE8F0872DE9F04182B05F +:102E000004469046099EDDF828C00B9A0C9F0020CE +:102E100004E0C0F1020E04F80E500130022802DC7A +:102E20000D5C002DF5D1E17841F03801E170C9B2B7 +:102E300068F30201E17003F00300C9B201F03F0141 +:102E400041EA8011E170C3F38103217921F003018C +:102E50000B432371DBB2089961F3850323710021D1 +:102E600084F807C0CCF3012C237A23F0030343EA50 +:102E70000C03237202F03F00DBB203F0030343EACA +:102E800080032372C2F38413627A22F01F021A4372 +:102E9000627207F00703D2B202F01F0242EA431245 +:102EA0006272C7F3C707A77206F00303227902F024 +:102EB0003F0242EA83122271C6F38606637923F049 +:102EC0007F0333436371E172237B23F00303237396 +:102ED000DBB203F003032373637B23F01F036373ED +:102EE000DBB203F01F036373A1730EAA019204F116 +:102EF0000F050D99284603F0F7FE2846EEF7E0F996 +:102F000000F00102637903F07F0343EAC2136371A7 +:102F1000C0F34700A07102B0BDE8F0810EB4F0B577 +:102F20008AB004460FAB53F8045B6E1CC6EB061662 +:102F3000F6B20193A5238DF81830C5EB05130633BF +:102F4000ADF819303B4B1B788DF81B30FF22042164 +:102F500006A8FFF7E9FC8DF81C0001238DF81D3051 +:102F600003238DF81E306B1E062B0AD8DFE803F012 +:102F7000041A09092109280001238DF81F308DF852 +:102F80002030B4F80330ADF82330B4F80130ADF898 +:102F90002130294C0AAB13E90F0007C423704FF00E +:102FA000000C36E002238DF81F3001238DF820300D +:102FB000E7E703238DF81F3001238DF82030E0E789 +:102FC00004238DF81F3001238DF82030D9E7019CB0 +:102FD00004F11003019302AB20686168A26807C383 +:102FE000A189A27B19809A70CCEB0C1E0EF10D0EFC +:102FF000114F07EB0E0402AB07CB47F80E006160E0 +:10300000A2601A889B78A281A3730CF1010C5FFA6D +:103010008CFCAC45DBDB084C31462046FFF7EEFC70 +:103020003146204600F0A0FF0AB0BDE8F04003B0F2 +:10303000704700BF489900200897002084B070B501 +:10304000064605AD85E80E00234CA52323703323E7 +:1030500063700023A370214B1B78E370FF220421CF +:103060002046FFF761FC2071012363710322A271E6 +:103070001022E2712372B6F80330A4F80B30B6F8D0 +:103080000130A4F80930AC460D340DAE65460FCDC5 +:1030900020606160A260E360AC461034B542F5D1B7 +:1030A0002B4607CB20606160A2601B7823730A4C1B +:1030B0004FF6FF723A212046FFF760FC60873C2103 +:1030C000204600F051FF054A137801331370BDE824 +:1030D000704004B0704700BFB896002048990020A7 +:1030E000094B1B6893F83A20072A94BF002101215D +:1030F0001970A3F8012002F58072A3F803200022C2 +:103100005A719A71704700BF5C9C00204378827AA4 +:10311000934204D0027842F00102027083728378F5 +:10312000C27A934204D0027842F002020270C37263 +:10313000C378027B934204D0027842F0040202700A +:1031400003730379427B934204D0027842F0100269 +:10315000027043734379827B934204D0027842F039 +:10316000080202708373C38899B2B0F811209142AB +:1031700005D0027842F020020270A0F811307047AA +:103180002DE9F0478AB006460C460846FFF7BEFF19 +:10319000237813F0010F31D06378032B18D8DFE8C0 +:1031A00013F004001A012E014201BD4B059340F2B9 +:1031B000EE2304934FF487730393022202920F23AA +:1031C0000193002300930823B649B748FFF715FE83 +:1031D000B54F6D4607F10C0CBCE80F000FC5BCE8FD +:1031E0000F000FC5DCF800302B7097E80E0030465A +:1031F000FFF724FF23786FF300032370237813F085 +:10320000020F2CD0A378012B00F03581022B00F0A7 +:103210006381002B00F01B81A34FD7F82DA0D7F8B6 +:103220003190D7F8358007F13905EE465937F44625 +:1032300028686968AA68EB68ACE80F001035E646B4 +:10324000BD42F4D12B788CF8003051464A464346B3 +:103250003046FFF7F3FE23786FF3410323702378A2 +:1032600013F0040F3AD0E378012B00F049818F4B23 +:103270008D4F059340F28A2304934FF48773039391 +:10328000022202920F230193052300930823884909 +:1032900007F15A00FFF7B1FDD7F85AA0D7F85E90B2 +:1032A000D7F8628007F16605EE468637F44628684F +:1032B0006968AA68EB68ACE80F001035E646BD42C5 +:1032C000F4D12B788CF8003051464A4643463046BC +:1032D000FFF7B4FE23786FF382032370237813F093 +:1032E000100F3AD02379012B00F00C816F4B6E4FF9 +:1032F00005934FF4167304934FF4877303930222DC +:1033000002920F230193052300930823694907F1D3 +:103310008700FFF772FDD7F887A0D7F88B90D7F812 +:103320008F8007F19305EE46B337F4462868696845 +:10333000AA68EB68ACE80F001035E646BD42F4D150 +:103340002B788CF8003051464A4643463046FFF70A +:1033500075FE23786FF304132370237813F0080F9E +:1033600031D06379002B40F0CF80534B4E4D05F1A7 +:10337000B407059340F2262304934FF48773039315 +:10338000022202920F2301930523009308234B4945 +:103390003846FFF732FDEE4605F1C00CBCE80F00E1 +:1033A000AEE80F00BCE80F00AEE80F00DCF800301C +:1033B0008EF8003097E80E003046FFF73FFE237886 +:1033C0006FF3C3032370237813F0200F40F09E8027 +:1033D0000AB0BDE8F0873A4B059340F2EE23049320 +:1033E0004FF487730393022202920F230193002369 +:1033F000009308232B492C48FFF7FFFCE8E6314BEC +:10340000059340F2EE2304934FF487730393022253 +:1034100002920F230193002300930823214922489D +:10342000FFF7EBFCD4E6284B059340F2EE23049320 +:103430004FF487730393022202920F230193002318 +:103440000093082317491848FFF7D7FCC0E6144B30 +:1034500005934FF42F7304934FF487730393022261 +:1034600002920F2301930123009308231749184860 +:10347000FFF7C3FCD0E6174B05934FF42F7304936B +:103480004FF487730393022202920F2301930123C7 +:10349000009308230D490E48FFF7AFFCBCE600BFC0 +:1034A00010EF01080CEF01084C990020F4EE010820 +:1034B0005CEF010860EF010804EF010864EF010808 +:1034C0001CEF010828EF010834EF010840EF010864 +:1034D0007999002044EF01082B4B05934FF42F738B +:1034E00004934FF487730393022202920F230193F4 +:1034F00001230093082325492548FFF77EFC8BE62E +:10350000244BB5E6234BF2E6234B2FE7E3884FF439 +:103510007A7202FB03F3214D0693E623059340F2F2 +:1035200052330493022703970297122301930097C3 +:1035300008233A461A4905F10F00FFF7C4FB02AB16 +:10354000D5F81E00D5F82210D5F8262007C3698DBE +:1035500095F82C2019809A70D5F817000090B5F8CE +:103560001B206B7FADF804208DF80630D5F80F20B6 +:10357000D5F8133039463046FFF7D0FC23786FF387 +:103580004513237024E700BF50EF010840EF010806 +:1035900079990020F8EE0108FCEE01080C99002052 +:1035A00068EF010810B50C4600F0B4FC034A106047 +:1035B000034A1460012280F87C2010BD5C9C00202E +:1035C0000899002008B5034B1968034B1868FFF7EA +:1035D000D7FD08BD089900205C9C00202DE9F04F24 +:1035E00093B0044B1B6893F87C3043B90020F5F787 +:1035F00003FF04E05C9C00206420F5F7FDF9CB4B51 +:103600001B6893F83A30002BF6D0FFF769FDDFF81E +:103610001CA300220221DAF80000FFF705FAC44CCF +:103620004FF40773059340F2BA420492039340F2B9 +:10363000C6230293032501954FF0080BCDF800B087 +:1036400007230122BB492046FFF72CFA04F10F079C +:103650004FF4397305934FF4707304934FF4AA72C7 +:10366000039202930195CDF800B007230122B249DD +:103670003846FFF717FA04F11E084FF4F573059367 +:1036800040F256420492039340F22A3302930226F8 +:1036900001960125009507232A46A8494046FFF7D1 +:1036A00001FA04F12D0940F20323059340F256423A +:1036B0000492039340F22A33029301960095072364 +:1036C0002A469F494846FFF7EDF940F23523059316 +:1036D00040F256420492039340F22A330293019639 +:1036E000009507232A46974904F13C00FFF7DAF9D1 +:1036F0000DF1380C04F13C030FCBACE807002CF8BB +:10370000023B1B0C8CF800300AABD4F82D00D4F827 +:103710003110D4F8352007C3B4F8391094F83B20A1 +:1037200019809A7006ABD4F81E00D4F82210D4F891 +:10373000262007C3618D94F82C2019809A700DEB18 +:103740000B03D4F80F00D4F81310D4F8172007C3D4 +:10375000B4F81B10627F19809A7004EB0B0393E896 +:1037600003000090ADF80410090C8DF8061094E8E1 +:103770000C000521DAF80000FFF7D0FB724F734B05 +:10378000059340F2EE2304934FF09609CDF80C9088 +:1037900002964FF00F08CDF80480002300935B469B +:1037A0002A466B493846FFF728FB6C4607F10C0C9C +:1037B000BCE80F000FC4BCE80F000FC4DCF80030F9 +:1037C000237097E80E00DAF80000FFF737FC614B32 +:1037D00005934FF42F730493CDF80C900296CDF817 +:1037E000048000955B462A465B4907F12D00FFF7F0 +:1037F00004FBDAF800C0D7F82D90D7F83180D7F85D +:1038000035E007F139046E4659373546206861685E +:10381000A268E3680FC510342E46BC42F5D1237868 +:103820002B704946424673466046FFF707FC464FF9 +:103830004A4B059340F28A23049396230393022371 +:1038400002930F2301930323009308230122444989 +:1038500007F15A00FFF7D1FA344BD3F800C0D7F87C +:103860005A90D7F85E80D7F862E007F166046E469A +:103870008637354620686168A268E3680FC5103452 +:103880002E46BC42F5D123782B70494642467346FA +:103890006046FFF7D3FB2C4F324B05934FF4167362 +:1038A000049396230393022302930F23019305238A +:1038B0000093082301222C4907F18700FFF79DFAA6 +:1038C0001A4BD3F800C0D7F88790D7F88B80D7F879 +:1038D0008FE007F193046E46B33735462068616880 +:1038E000A268E3680FC510342E46BC42F5D1237898 +:1038F0002B704946424673466046FFF79FFB124CC9 +:1039000004F1B406194B059340F226230493962341 +:1039100003934FF00209CDF808904FF00F08CDF84F +:103920000480052300930823012221E05C9C0020F1 +:10393000C49B00206CEF010870EF010874EF0108D0 +:1039400078EF01087CEF0108889A002084EF0108D5 +:1039500080EF010894EF010890EF0108A0EF010843 +:103960009CEF0108ACEF0108A8EF0108B8EF0108CF +:10397000C8493046FFF741FAC74F6D46C0340FCCF7 +:103980000FC50FCC0FC523682B7096E80E00386862 +:10399000FFF754FBC14DDFF840B3CDF814B040F24F +:1039A000EE2304934FF4877ACDF80CA0CDF808905D +:1039B000CDF804800023009308230122B84928464B +:1039C000FFF71BFA6C4605F10C060FCE0FC40FCEA5 +:1039D0000FC43368237095E80E003868FFF72EFB9C +:1039E000CDF814B04FF42F730493CDF80CA0CDF89C +:1039F0000890CDF80480012200920823A94905F11E +:103A00002D00FFF7FAF9D7F800C0D5F82D90D5F8BA +:103A10003180D5F835E005F139046F4605F15906D6 +:103A20003D4620686168A268E3680FC510342F46E0 +:103A3000B442F5D123782B7049464246734660461E +:103A4000FFF7FCFA954F984B059340F28A230493B5 +:103A50004FF487730393022302930F2301930323ED +:103A6000009308230122914907F15A00FFF7C5F995 +:103A7000894BD3F800C0D7F85A90D7F85E80D7F8B2 +:103A800062E007F166046E46863735462068616855 +:103A9000A268E3680FC510342E46BC42F5D12378E6 +:103AA0002B704946424673466046FFF7C7FA7B4F84 +:103AB0007D4B05934FF4167304934FF48773039370 +:103AC000022302930F23019305230093082301226D +:103AD000774907F18700FFF790F96F4BD3F800C0E3 +:103AE000D7F88790D7F88B80D7F88FE007F1930449 +:103AF0006E46B337354620686168A268E3680FC533 +:103B000010342E46BC42F5D123782B7049464246EC +:103B100073466046FFF792FA604C04F1B406654BB9 +:103B2000059340F2262304934FF4877303930227EF +:103B300002970F23019305230093082301225E4976 +:103B40003046FFF75AF9DFF850816D46C0340FCC8C +:103B50000FC50FCC0FC523682B7096E80E00D8F860 +:103B60000000FFF76BFA554D554B0593E623049380 +:103B70004FF41B73039302971223019300970823BA +:103B80000122504905F1E100FFF737F9D8F800C0EC +:103B9000D5F8E190D5F8E580D5F8E9E005F1ED0438 +:103BA0006E4605F20D17354620686168A268E36825 +:103BB0000FC510342E46BC42F5D123782B704946F0 +:103BC000424673466046FFF739FA3F4CB4230593EB +:103BD00040F2C44304938C2303934FF43478CDF81C +:103BE00008800225019500950723012237492046C8 +:103BF000FEF7E0FF284F04F1080393E8030000906C +:103C0000ADF80410090C8DF8061094E80C000121A1 +:103C10003868FFF783F93B68B3F844304FF47A72A1 +:103C200002FB03F30693E623059340F25233049319 +:103C3000039502951223019300950823012224493C +:103C400004F10F00FFF73FF804F11E06A0230593CF +:103C50004FF47F7204920393CDF808801E230193E2 +:103C600005230093082301221A493046FEF71AFF64 +:103C700002ABD4F81E00D4F82210D4F8262007C3D3 +:103C8000618D94F82C2019809A70D4F81700009058 +:103C900024E000BFB4EF01085C9C00204C99002098 +:103CA0000CEF010840EF0108F4EE01085CEF010899 +:103CB00060EF010804EF010864EF0108889A002012 +:103CC000C4EF0108C0EF01080C990020D0EF0108F3 +:103CD00068EF0108D4EF010810EF0108B4F81B20C9 +:103CE000637FADF804208DF80630D4F80F20D4F8A7 +:103CF000133029463868FFF711F913B0BDE8F08F8B +:103D000000B583B0074B1868FAF74AF8064B0093E2 +:103D1000064B074A07490020F6F786F803B05DF81E +:103D200004FB00BFF89C0020E0E20108E0E6010887 +:103D3000E4E60108D8EF0108002800F0D98010B5AA +:103D400004466C4B0268C3F807200279DA720378E4 +:103D5000A52B00D010BD0521FEF7F8FD012809D0E4 +:103D6000644B1B890933E018E35CA52BF2D1FFF704 +:103D7000E3FFEFE7617809312046FEF71BFE0128DB +:103D8000EED1A279637943EA02235A4A9381B3F5CB +:103D9000027F24D2B3F5007F09D9A3F20123062BB9 +:103DA000DED8DFE803F0436577898E939800032B14 +:103DB00031D00CD940F20112934231D0B3F5817F5A +:103DC000CED1D4F807204B4BC3F83620C8E7012BDF +:103DD0001AD0022BC4D1E279464B5A74C0E740F2A4 +:103DE00001329342BCD1434BD4F80710D4F80B20D6 +:103DF000C3F87110C3F87520B4F80F10627CA3F8F3 +:103E0000791083F87B20ABE73A4BB4F80710627A5D +:103E1000D9811A74A4E7B4F80720364B5A829FE779 +:103E2000D4F80720334BC3F8322099E7314BD4F84C +:103E30000710D4F80B20D4F80FC0D4F81300C3F83F +:103E40003A10C3F83E20C3F842C0C3F84600D4F885 +:103E50001710D4F81B20C3F84A10C3F84E20B4F84A +:103E60001F1094F82120A3F8521083F8542077E70C +:103E7000204BD4F80700D4F80B10D4F80F20C3F867 +:103E80004700C3F84B10C3F84F20B4F81320A3F831 +:103E9000532065E7174BD4F807C0D4F80B00D4F8CB +:103EA0000F10D4F81320C3F857C0C3F85B00C3F851 +:103EB0005F10C3F8632053E7E2790E4B83F8672065 +:103EC0004EE7E2790B4B83F8682049E7E279094B2A +:103ED00083F8692044E7074BD4F80720C3F86A2029 +:103EE000B4F80B10627BA3F86E1083F8702037E7EC +:103EF000704700BF789C002008B5044B1868FCF799 +:103F000071FB034B1868FFF717FF08BD749C002076 +:103F1000F89C002000B587B00E4B05930490FF235A +:103F20008DF80C3003A8F9F74DFF0B4B18600023F8 +:103F30000093019302931E23ADF80030074B0193C9 +:103F400002906846FCF72AFB054B1860054807B04D +:103F50005DF804FBF93E0108F89C0020013D0108D2 +:103F6000749C0020789C002008B50A460323014673 +:103F700003480068F9F77AFF7320F4F73DFD08BDA8 +:103F8000F89C0020002301E00133DBB2042B0DD8A4 +:103F9000074931F91320002AB8BF524292B2B2F554 +:103FA000257FF1D9002221F81320EDE7704700BFEB +:103FB000FC9C0020F8B504460378427843EA0223CB +:103FC000C3F30A03A3F580634F4DAB804378827837 +:103FD000DB0843EA4213C3F30A03A3F58063EB80D3 +:103FE0008378C2789B0943EA8203027943EA8223F9 +:103FF000C3F30A03A3F580632B804179530843EA96 +:10400000C113C3F30A03A3F580636B80037C427C76 +:1040100043EA0223C3F30A03A3F580632B81FFF76E +:10402000B1FF6379C3F30113EB7263799B09AB7240 +:10403000A379E27943EA0223AB81237A627A43EAE5 +:104040000223EB81237B2B74637B6B74A37BE27B6A +:1040500043EA02239C466B82DAB213F0200F14D09D +:104060001FFA8CF1A98212F0100F12D0264B5A8A37 +:10407000DA82254BB3F85A60988ADC8AB3F85C5030 +:10408000B3F85EE00123002222E01F4B0021998259 +:10409000E9E71D4B0022DA82EBE7034208D02B420E +:1040A00006D11949114491F82870013781F8287018 +:1040B000234209D013EA0E0F06D11349114491F897 +:1040C0003870013781F838705B009BB2013292B2D0 +:1040D0000F2A12D8111F89B20129F5D91CEA030F42 +:1040E000DBD03342D9D10342D7D12342D5D10649BF +:1040F00011440F7E01370F76CFE703494822881815 +:10410000ECF7CEFEF8BD00BFFC9C002000B583B0EC +:1041100090220021084800F031FF084B1868F9F799 +:104120003FFE074B0093074B074A08490020F5F76D +:104130007BFE03B05DF804FBFC9C0020949D0020F6 +:10414000E0E20108E0E60108E4E6010800F0010809 +:1041500008B5044B1868FCF745FA034B1868FFF7DD +:1041600029FF08BD8C9D0020949D002000B587B0DC +:104170000F4B0593049012238DF80C3003A8F9F728 +:1041800021FE0C4B186000230093019302930A2335 +:10419000ADF80030084B01936846FCF7FFF9074B78 +:1041A0001860074B01221A70064807B05DF804FB3F +:1041B00051410108949D00200D4101088C9D002073 +:1041C000909D0020FC9C00200B4B1B6890F82C104D +:1041D00090F82D2042EA01229A8090F82E1090F853 +:1041E0002F2042EA0122DA8090F8301090F8312036 +:1041F00042EA01221A817047989D002070B5054659 +:104200000C2000F003FC0446064E306000230360DF +:1042100043608360044BEB602846F9F75BFA20604B +:10422000306870BD989D0020C941010830B48D08E8 +:10423000DFED205A20D000F110032C4653ED046A24 +:1042400013ED037A53ED027A13ED016A66EEA66A66 +:1042500027EE077A76EEA56A67EEA77A37EE267A1A +:1042600026EE066A77EE877A013C03F1100376EEBC +:10427000275AE3D100EB051011F0030115D0D0ED62 +:10428000007A67EEA77A013975EEA75A0DD0D0ED06 +:10429000017A67EEA77A012975EEA75A05D0D0ED0D +:1042A000027A67EEA77A75EEA75AC2ED005A30BCC3 +:1042B000704700BF000000002DE9F04F02884B88D6 +:1042C000D0F804C04F684088934283B04CD1B1F815 +:1042D00000E0864548D14FEA9E089C000EF0030E90 +:1042E00008FB04F94FEA8E021D01DB004FEA890941 +:1042F00007EB040A4FEA081B019200933B46B8F112 +:10430000000F1DD000990CF110023944404652F8BC +:10431000106C1E6052ED037A1E19C6ED007A52F839 +:10432000086C0E6052ED017A0E1901382B4402F12F +:104330001002C6ED007A2944E9D1DC4409EB0703F9 +:10434000BEF1000F09D07246614651F8040B1860A7 +:10435000013A2344F9D1019B9C4404375745CDD100 +:10436000002003B0BDE8F08F6FF00200F9E700BF56 +:10437000F0B4D1E900470368D0F804C05668A342FE +:104380005DD1126893425AD10388448804FB03F438 +:10439000A50832D00CF1100107F1100206F110034C +:1043A000284612ED047A51ED047A77EEC77A013887 +:1043B00043ED047A12ED037A51ED037A77EEC77A72 +:1043C00001F1100143ED037A12ED027A51ED067A04 +:1043D00077EEC77A02F1100243ED027A51ED057AC9 +:1043E00012ED057A77EEC77A03F1100343ED057AF3 +:1043F000D7D12B019C441F441E4414F003041BD04E +:10440000DCED007A97ED007A77EEC77A013CC6EDD5 +:10441000007A11D0DCED017A97ED017A77EEC77A58 +:10442000012CC6ED017A07D0DCED027A97ED027A15 +:1044300077EEC77AC6ED027A0020F0BC70476FF0C5 +:104440000200FAE72DE9F04F45880B880688476897 +:10445000546848688BB0AB4209910496498840F093 +:104460008A801588B54240F0868052888A4240F0A2 +:1044700082804FEA9308011D1601089107EB08118D +:10448000C2EB827C019106FB08F195000391D200FA +:104490004FEA8C0103F003099B0007F1100B04EBBA +:1044A000050A079102920693ABF110030593079B4F +:1044B000DDF820E003EB0A0CDFED317AB8F1000FF4 +:1044C00053D0029B4446C11802465B4692ED006AF7 +:1044D00013ED047A53ED034A53ED026A91ED005A4D +:1044E00053ED015A571927EE067A97ED006A77EED9 +:1044F000277A26EE246A4F1936EE276A26EE857A49 +:10450000D7ED007A37EE067A67EEA57A013C3244A1 +:10451000314477EE877A03F11003D7D1039B019AD8 +:104520001844B9F1000F0BD04B46D0ED006AB2EC45 +:10453000017A27EE267A013B284477EE877AF4D178 +:10454000ECEC017AD44570460EF1040EB4D1019A18 +:10455000069B114619449B44049B0191013BAA44CC +:10456000049304D0099B58689EE7059AD9E718463A +:104570000BB0BDE8F08F6FF002000BB0BDE8F08F1C +:10458000000000002DE9F04F438804884E68D0F801 +:10459000049087B09C420193039640F0EA800A8819 +:1045A0004B88934240F0E5809C4240F0E2800590C9 +:1045B0000CB34FF07E5B671E46F804BB1BD04FF078 +:1045C0000108BA0006EB020A4FEA880530460021CE +:1045D00000F0D4FC0AEB05062A4600215046B8F14B +:1045E000000F00F0CB8000F0C9FC013F08F101088A +:1045F00046F804BBE5D1019B002B00F0B5809D007F +:1046000009EB0502CC460292DDF80C902A1D0492BB +:104610002F469E460026029BDCED006AB442A3EBC7 +:10462000070B00F0A1809FED597A324663460BE0FC +:10463000F4EE477AF1EE10FA02F10102C8BFB0EED3 +:10464000677AA2422B4414D0D3ED007AF5EEC07AFB +:10465000F1EE10FAB1EE676AEADCB4EE476AF1EE09 +:1046600010FA02F10102C8BFB0EE467AA2422B4412 +:10467000EAD1B5EE407AF1EE10FA75D0F5EE406A67 +:10468000F1EE10FA70D07246634693ED007AC7EEF1 +:10469000267A013AE3EC017AF7D101994B4693ED82 +:1046A000007AC7EE267A0139E3EC017AF7D1039854 +:1046B0004FEA8608B14239D0DBED006A5A467346AC +:1046C000E246BAEC017AD2ED007A26EE877A013B17 +:1046D00077EEC77AE2EC017AF3D1019BBB44024644 +:1046E000CA46BAEC017AD2ED007A26EE877A013B0F +:1046F00077EEC77AE2EC017AF3D1284401318C429B +:10470000C344D7D1049BBEF1010E06F101069C44BF +:10471000A7F10407A9447FF47EAFF5EE406AF1EEFD +:1047200010FA06D0002007B0BDE8F08FBB44284443 +:10473000E4E7059B019A5B68D3ED007AF5EE407AD9 +:1047400002FB04F2F1EE10FA144608BF043307D05E +:10475000E8E7F3EC017AF5EE407AF1EE10FAE1D1F8 +:104760000EF1010E7445F4D16FF0040007B0BDE8FE +:10477000F08F6FF0020007B0BDE8F08F5646013FA2 +:1047800046F804BB7FF41BAF35E700BF0000000014 +:104790000180428043607047F0B4D1E9004703686C +:1047A000D0F804C05668A3425DD1126893425AD132 +:1047B0000388448804FB03F4A50832D00CF11001EF +:1047C00007F1100206F11003284612ED047A51EDAC +:1047D000047A77EE877A013843ED047A12ED037A92 +:1047E00051ED037A77EE877A01F1100143ED037AF8 +:1047F00012ED027A51ED067A77EE877A02F1100215 +:1048000043ED027A51ED057A12ED057A77EE877A5B +:1048100003F1100343ED057AD7D12B019C441F44CB +:104820001E4414F003041BD0D7ED007A9CED007AEF +:1048300077EE877A013CC6ED007A11D0DCED017A83 +:1048400097ED017A77EE877A012CC6ED017A07D0D1 +:10485000DCED027A97ED027A77EE877AC6ED027A7E +:104860000020F0BC70476FF00200FAE7DFED1F7A1E +:1048700020EE270AB5EEC00AF1EE10FAFDEEC07A7E +:1048800004D517EE903A013B07EE903AF8EEE77A3E +:104890009FED177A30EE670A20EE070AFCEEC07A29 +:1048A00017EE903A9BB2B3F5007F1AD207EE903A1A +:1048B000F8EE677A591C30EE670A0E4AF7EE007A76 +:1048C00002EB830302EB810293ED007AD2ED006AE2 +:1048D00077EEC07A20EE260A67EE877A37EE800AF6 +:1048E000704730EE470A01210023E6E783F9223EB4 +:1048F0000000004424F00108DFED217A20EE270AB1 +:10490000F5EE007A30EE270AB5EEC00AF1EE10FAA5 +:10491000FDEEC07A04D517EE903A013B07EE903ACF +:10492000F8EEE77A9FED177A30EE670A20EE070A75 +:10493000FCEEC07A17EE903A9BB2B3F5007F1AD224 +:1049400007EE903AF8EE677A591C30EE670A0E4A85 +:10495000F7EE007A02EB830302EB810293ED007A1B +:10496000D2ED006A77EEC07A20EE260A67EE877AEB +:1049700037EE800A704730EE470A01210023E6E750 +:1049800083F9223E0000004424F00108014B18681E +:10499000704700BF5406002070B50D4E0D4D761BBC +:1049A000B61006D0002455F8043B01349847A642BF +:1049B000F9D1094E094D761B09F0DAFBB61006D085 +:1049C000002455F8043B01349847A642F9D170BD44 +:1049D00038020208380202084002020838020208BF +:1049E000931E222B10B50C460CD80A2A03D002F0D5 +:1049F0002DF9204610BD0028F9DA2D2301F8013BDE +:104A00004042F4E70020087010BD00BF024B014691 +:104A1000186800F003B800BF540600202DE9F04FDD +:104A200001F10B06162E83B0044624D8102900F29B +:104A3000BA8000F0F5FA102618220220B54F3A4449 +:104A4000A2F1080153688B4200F0BA805A68D96815 +:104A500022F003021A449D68E9608D60516841F0BC +:104A600001012046516003F1080500F0DFFA2846F5 +:104A700003B0BDE8F08F36F0070600F19480B14234 +:104A800000F2918000F0CCFAB6F5FC7FC0F09A817C +:104A9000730A00F08F80042B00F26F81B30903F1D9 +:104AA000390003F1380CC3009A4F3B44A3F10805C9 +:104AB0005B689D4206D10CE0002980F22781DB680B +:104AC0009D4206D05A6822F00302911B0F29F3DDA4 +:104AD00060463D69DFF850C265457CD06A6822F0C7 +:104AE0000302931B0F2B00F37B81002BC7E904CC3F +:104AF00080F26C81B2F5007F80F01A81D30879686A +:104B000001334FEA521E012202FA0EF20A4357F80D +:104B100033E0C5F808E007EBC3010839E9607A60C3 +:104B200047F83350CEF80C50831001219940914240 +:104B300057D8114206D120F003004900114200F17C +:104B40000400FAD007EBC0094D468646D5F80C8024 +:104B5000454508D11DE1002B80F22481D8F80C8056 +:104B6000454500F01681D8F8042022F00302931B7B +:104B70000F2BF0DD2046D8E9025408EB060146F081 +:104B80000106C8F80460EC60A56043F00104C7E9C1 +:104B90000411C1E902CC4C6048F8023000F046FA3A +:104BA00008F1080502E00C2323600025284603B025 +:104BB000BDE8F08F4FF4007340204FF03F0C73E7D7 +:104BC000D3689A4208BF02307FF440AF3D69DFF8F6 +:104BD00058C1654582D17A6883100121994091427C +:104BE000A7D9BD686B6823F003094E4503D8A9EB2C +:104BF00006030F2B7ADCDFF834B1474BDBF80020DB +:104C00001B680132334405EB090A00F0338103F5D8 +:104C100080530F3323F47F6828F00F084146204665 +:104C200000F00AFA411C024600F0F380824500F2CF +:104C3000EE803A4B196841441960084600F04E81F5 +:104C4000DBF80010019301311BBFA2EB0A0A5044AC +:104C5000CBF80020186012F0070B00F01781CBF1A1 +:104C600008010A44CBF5805190440831A1EB0801BA +:104C7000C1F30B0A51462046009200F0DDF9421CB8 +:104C8000DDE9002300F04F81801A00EB0A08196863 +:104C9000BA6048F001005144BD425060196000F014 +:104CA0002981B9F10F0F40F227816868A9F10C0C36 +:104CB0002CF0070C00F0010040EA0C0068604FF097 +:104CC000050E05EB0C00BCF10F0FC0E901EE00F280 +:104CD000328150681546124B1A688A4238BF1960F3 +:104CE000104B1A688A4238BF196094E0AA1943F041 +:104CF000010346F001066E602046BA60536000F082 +:104D000095F90835284603B0BDE8F08FD9681A44F4 +:104D1000A1E600BF800A0020CC9D00209C9D0020C1 +:104D2000C49D0020C89D0020880A0020880E002015 +:104D3000B2F5206F4FEA522363D3142B00F2B780F1 +:104D400003F15C01C9005B3307EB010E7958AEF14A +:104D5000080E8E4500F091804B6823F003039342C8 +:104D600002D989688E45F7D1D1F80CE07A68C5E997 +:104D7000021ECEF80850CD60D6E6142B59D9542B1C +:104D800000F29D80330B03F16F0003F16E0CC30042 +:104D90008AE60EF1010E1EF0030F05F108057FF4FF +:104DA000D5AE51E0424445465368D8F80C1043F064 +:104DB0000103536055F8083F2046D9608B6000F02E +:104DC00035F9F3E6F00806F1080237E62A442046F2 +:104DD000536843F001035360083500F027F9E5E616 +:104DE000A919204646F0010643F001046E60C7E9A8 +:104DF0000411C1E902CC4C60AB5000F017F9083542 +:104E0000D4E6930903F13901C90038339CE7BD4268 +:104E10005FD0BD68686820F003084645A8EB06032C +:104E200002D80F2B3FF762AF204600F0FFF80025B5 +:104E3000BCE603F15C0003F15B0CC30034E659F8F7 +:104E400008394B4540F0968010F0030F00F1FF3019 +:104E5000F5D17B6823EA01037B60490099423FF664 +:104E6000C0AE19B9BDE649000EF1040E1942FAD0E0 +:104E7000704667E603F11008D0E69A104FF001087B +:104E80007B6808FA02F21A437A6070E702EB0801C5 +:104E90004942C1F30B0A51462046009200F0CCF87B +:104EA000431CDDE900237FF4EFAEDA46EFE6542B36 +:104EB00025D8130B03F16F01C9006E3344E7B3F536 +:104EC000AA7F25D8F30B03F1780003F1770CC30018 +:104ED000EAE5294B186840441860B1E6CAF30B0CA8 +:104EE000BCF1000F7FF4ACAEBD68C84448F00100CF +:104EF0006860F0E61546EEE60123536094E7B3F5EB +:104F0000AA7F23D8D30B03F17801C90077331BE7BD +:104F100040F25452934223D8B30C03F17D0003F1C5 +:104F20007C0CC300C0E5ABF1080BD844A8EB020829 +:104F30004FF0000AABE605F108012046009302F0AD +:104F400097FFBD68009B68681968C4E640F2545139 +:104F50008B420BD8930C03F17D01C9007C33F3E63F +:104F60004FF47E737F204FF07E0C9DE54FF47E71F1 +:104F70007E23E9E67B6870E79C9D0020830730B5BF +:104F800048D0541E002A3FD0CAB2034601E0013C7B +:104F90003AD303F8012B9D07F9D1032C2DD9CDB2BB +:104FA00045EA05250F2C45EA054536D9A4F110023E +:104FB00022F00F0C03F1200EE6444FEA121C03F11D +:104FC000100242E9045542E9025510327245F8D107 +:104FD0000CF1010214F00C0F03EB021204F00F0CA1 +:104FE00013D0ACF1040323F003030433134442F859 +:104FF000045B9342FBD10CF003042CB1CAB21C44F5 +:1050000003F8012B9C42FBD130BD64461346002CB3 +:10501000F4D1F9E703461446BFE71A46A446E0E791 +:10502000014803F033B800BFD49D0020014803F0CD +:105030002FB800BFD49D002038B5074D002204468C +:1050400008462A60F5F78EFF431C00D038BD2B6858 +:10505000002BFBD0236038BDE09D0020830710B5F6 +:10506000044610D10268A2F1013323EA020313F0CF +:10507000803F08D150F8042FA2F1013323EA020344 +:1050800013F0803FF6D003781BB110F8013F002BDE +:10509000FBD100F003F8204610BD00BF80EA0102FA +:1050A000844612F0030F4FD111F0030F32D14DF8A7 +:1050B000044D11F0040F51F8043B0BD0A3F1013261 +:1050C0009A4312F0803F04BF4CF8043B51F8043B74 +:1050D00016D100BF51F8044BA3F101329A4312F0EC +:1050E000803FA4F101320BD14CF8043BA24312F0F3 +:1050F000803F04BF51F8043B4CF8044BEAD02346F0 +:105100000CF8013B13F0FF0F4FEA3323F8D15DF8A1 +:10511000044B704711F0010F06D011F8012B0CF869 +:10512000012B002A08BF704711F0020FBFD031F8E1 +:10513000022B12F0FF0F16BF2CF8022B8CF8002068 +:1051400012F47F4FB3D1704711F8012B0CF8012BEB +:10515000002AF9D1704700BF71B1034600EB010C82 +:1051600001E0634506D01A46013311780029F8D1D1 +:10517000101A7047181A7047084670470000000060 +:105180002DE9F04F2DED0A8BCFB00C4691460AEE7B +:10519000101A09930AEE900A02F070FF0368139345 +:1051A0001846ECF78DF8A38912901A0603D52369E7 +:1051B000002B00F0A0874D469FEDA57B2B780024A7 +:1051C00025AACDE92344CDE91544CDE917448DED59 +:1051D000107B1AEE909A0E942292904614940594A5 +:1051E000002B00F0EC81AB4604E01BF8013F002BE4 +:1051F00000F01A81252BF8D1BBEB050640F0188191 +:105200009BF80030002B00F0DA8100234FF0FF32D2 +:105210009BF801708DF86B3006930BF1010B049233 +:105220009A462B2420210BF1010BA7F120035A2BC6 +:1052300000F23C81DFE813F0D5023A013A01D002D6 +:105240003A013A013A016A003A013A016502FE0266 +:105250003A017002E4023A01DF025B005B005B008E +:105260005B005B005B005B005B005B003A013A01A6 +:105270003A013A013A013A013A01D2013A013602C1 +:105280008500D201D201D2013A013A013A013A0134 +:10529000CB023A013A01C6003A013A013A01400212 +:1052A0003A0175023A013A014F073A013A013A01CF +:1052B0003A013A013A013A013A01D2013A01360281 +:1052C0008700D201D201D201BE02870080003A01DC +:1052D000B1023A019902C800870280003A014002F7 +:1052E0007D002A073A013A012E073A017D00A7F115 +:1052F000300300221BF8017B02EB820203EB420227 +:10530000A7F13003092BF5D906928EE7484602F043 +:10531000B5FE436817931846EBF7D2FF1890064680 +:10532000484602F0ABFE836815932021002E40F022 +:10533000C2859BF8007076E79BF800704AF0200A5F +:1053400071E74AF0100A1AF0200F099B00F09A81C9 +:10535000073323F007031A465B6852F8084B09929B +:105360001E46002BC0F26B85049B013301F03A808E +:105370002AF08003039354EA060300F0E7840A2C22 +:1053800076F1000380F0908730340123DDF80CA023 +:105390008DF8374107930DF23715049907989DF85A +:1053A0006B3081424FF00002B8BF01460892039172 +:1053B0000C920F920D92002B00F08980039A01321B +:1053C000039284E04AF0100A1AF0200600F04B81A4 +:1053D000099B073323F007035E6853F8084B0993D2 +:1053E0002AF480630393002300228DF86B20049A33 +:1053F000551C00F02682039921F0800A54EA060128 +:1054000040F01D82002A41F02980002B40F0A48446 +:10541000039B13F00103079300F0428530238DF8BE +:1054200037310DF23715B8E7BBEB050600F0C78042 +:10543000249B33442493239B0133072BC8E9005654 +:10544000239309DC08F10808059B33440593D7E64C +:1054500000000000000000001AEE101A22AA4846C0 +:1054600003F038FA90B90DF19408EDE71AEE101A2E +:1054700022AA484603F02EFA002800F09180089BEB +:1054800023B108991AEE900A02F0F2FC1AEE103AD3 +:105490009B8913F0400F059B18BF4FF0FF33059316 +:1054A00005984FB0BDEC0A8BBDE8F08F002F00F0DF +:1054B000868000238DF8D4708DF86B300122CDE901 +:1054C0000723039204930C930F930D9335AD1AF0B9 +:1054D00002020A9202D0039A023203921AF0840264 +:1054E0000B9205D1069A0399561A002E00F30D83EC +:1054F000249C8BB1239B0DF16B0201330134C8F85E +:105500000020072B4FF0010224942393C8F80420B5 +:1055100000F3338308F108080A9B83B1239B1BAA7D +:1055200001330234C8F80020072B4FF00202249404 +:105530002393C8F8042000F32D8308F108080B9B7F +:10554000802B00F00F82049B079A9E1A002E00F316 +:1055500050821AF4807F40F0AB81079BC8F804307A +:105560001C44239BC8F800500133072B2494239339 +:1055700000F3BE8208F108081AF0040F05D0069B5C +:10558000039A9D1A002D00F31283DDE90532039979 +:105590008A42ACBF9B185B180593002C7FF466AF62 +:1055A00000232393089B1BB10899484602F060FC36 +:1055B0000DF194085D462B78002B7FF414AE249BEC +:1055C000002B3FF463AF1AEE104A1AEE101A1AEECF +:1055D000900A22AA03F07EF9A3895AE7099B0733B0 +:1055E00023F00703B3EC027B8DED107BDDE9101295 +:1055F000099322F000430BEE101A0BEE903A4FF095 +:10560000FF32B0EE4B9AF0EE6B9AA54B51EC190BB2 +:10561000EBF716FF002840F06784A14B51EC190B03 +:105620004FF0FF32EBF724FA002840F05D84DDE90B +:10563000100100220023EBF711FA002840F0A587A3 +:105640009DF86B30974D984A2AF0800A0321472F26 +:10565000C8BF1546002208920391079104920C924C +:105660000F920D92A7E61AF0100340F033841AF05F +:10567000400200F05B87099A52F8044B09921E46DB +:10568000A4B2ADE653F8044B09931AF0100F40F0A2 +:105690000E841AF0400F00F0068444F3C0363346FF +:1056A00024B25EE6099A002352F8041B8DF86B3091 +:1056B0008DF8D410099201E7099C54F8045B002688 +:1056C0008DF86B60002D00F0D986049B5A1C00F009 +:1056D00046851A4631462846EBF762FE08900028B8 +:1056E00001F07A80089B0496591B079121EAE17129 +:1056F0009DF86B300994039108960C960F960D96C1 +:1057000059E6099B53F8042B0692002A80F2C383C2 +:10571000069A0993524206929BF800704AF0040AD6 +:1057200081E54AF010030393039B13F0200600F079 +:105730007383099B073323F007035E6853F8084B14 +:105740000993012350E6099B53F8044B0993302336 +:105750004AF0020278278DF86C30544B1493039270 +:105760008DF86D70002602233EE61AF0200F40F0FF +:1057700082841AF0100F40F078861AF0400F40F043 +:105780004C871AF4007F00F07086099B059953F846 +:10579000042B099311705D460DE79BF800706C2F88 +:1057A00003BF9BF801704AF0200A0BF1010B4AF08D +:1057B000100A38E59BF80070682F03BF9BF8017052 +:1057C0004AF4007A0BF1010B4AF0400A2BE59BF8F2 +:1057D00000704AF0080A26E59BF800704AF0010ABA +:1057E00021E59DF86B30002B7FF4A3AD9BF8007092 +:1057F0008DF86B1017E59BF800704AF0800A12E5EF +:105800005A4612F8017B2A2F01F0F381A7F13003E9 +:10581000092B934698BF002200F2F4871BF8017B06 +:1058200002EB820203EB4202A7F13003092BF5D908 +:105830000492FAE49BF800708DF86B40F3E4CDF825 +:105840000CA0012B3FF49BAD022B4EAD12D1149A4C +:1058500004F00F032409D35C05F8013D44EA067403 +:10586000360954EA0603F3D14EAB5B1BDDF80CA0FE +:10587000079392E504F00703E40844EA4674F60847 +:10588000303354EA06012A4605F8013DF2D1039966 +:10589000C80700F14C824EAB5B1B8A4607937CE540 +:1058A000FFFFEF7F2CF8010830F801083CF80108F1 +:1058B000652F40F3D780DDE9100100220023EBF7CC +:1058C000C3F8002800F0B481239BBC4AC8F800202C +:1058D000013301340122072B24942393C8F80420B8 +:1058E00000F3848508F108081C9B0E9A934280F20D +:1058F000CD82129B139A1C44C8E90023239B249455 +:105900000133072B239300F3E98308F108080E9B6A +:105910005D1E002D7FF730AE102D239B41F3478194 +:10592000A74F0A97224610261AEE104A05E008F102 +:105930000808103D102D40F3678501331032072B06 +:10594000C8E90076CDE92332F1DD22AA2146484696 +:1059500002F0C0FF00287FF492ADDDE923320DF1A3 +:105960009408E6E7069B039A9E1A002E7FF7EBAD9C +:10597000102E239B41F34F8091490B9522461AEE3E +:10598000105A0A910C4604E0103E102E08F1080847 +:1059900019DD013310321021072BCDE92332C8F86D +:1059A0000040C8F80410EFDD22AA294648460DF150 +:1059B000940802F08FFF00287FF461AD103E102E96 +:1059C000DDE92332E5DC0B9D144601330A9AC8F861 +:1059D00000203444072BCDE92334C8F8046000F3D9 +:1059E0002F85049B079A9E1A002E08F108087FF75E +:1059F000B0AD102E239B40F3C48571480A904246F7 +:105A000021461AEE108A044604E0103E102E02F1E0 +:105A1000080216DD013310311020072BCDE92331A8 +:105A200014605060F1DD22AA4146484602F052FF60 +:105A300000287FF424AD103E102EDDE9233125AA85 +:105A4000E8DC90460C4601330A9AC8F8002034443A +:105A5000072BCDE92334C8F8046000F3CF8108F1A7 +:105A6000080876E50E9B012B40F37C81239EC8F845 +:105A70000050013601340123072E24942396C8F8E0 +:105A8000043000F3E78108F10808129B139A0136ED +:105A90001C44072EC8E90023CDE9236400F3E88104 +:105AA00008F10808DDE9100100220023EAF7CCFF25 +:105AB000002840F076810E9B0136013B01351C44E5 +:105AC000072EC8F800502396C8F80430249400F339 +:105AD0005A8108F10808169BC8F8043001361C44A6 +:105AE000072E1EABCDE92364C8F800307FF742AD26 +:105AF0001AEE101A22AA484602F0ECFE00287FF4A3 +:105B0000BEAC249C0DF1940836E5102EDDE923325D +:105B100022DD199510241AEE105A04E0103E102EC2 +:105B200008F1080817DD013326491032072BC8E9B0 +:105B30000014CDE92332F1DD22AA294648460DF1B1 +:105B4000940802F0C7FE00287FF499AC103E102E96 +:105B5000DDE92332E7DC199DC8F804600133B4188D +:105B6000072B184AC8F80020CDE9233400F3E1835D +:105B70009DF86B3008F10808BBE41AEE101A22AA4F +:105B8000484602F0A7FE00287FF479AC249C0DF172 +:105B90009408C1E41AEE101A22AA484602F09AFEAE +:105BA00000287FF46CAC249C0DF19408C7E4102D00 +:105BB000239B26DD1AEE107A10260AE06CF8010805 +:105BC00080F8010870F80108103D102D08F1080850 +:105BD00017DD0133C24A1034072BC8E90026CDE98E +:105BE0002334F1DD22AA394648460DF1940802F02B +:105BF00071FE00287FF443AC103D102DDDE9233405 +:105C0000E7DC0133B64AC8F804502C44072BCDE931 +:105C10002334C8F800207FF7B8AC1AEE101A22AA75 +:105C2000484602F057FE00287FF429AC249CACE4DF +:105C30001C9A002A40F39683DDE90D739F42A8BFAA +:105C40001F46002F0BDD239B01333C44072BC8E983 +:105C500000572494239300F35C8508F108080D9EF7 +:105C6000002FA8BFF61B002E00F353820D9B1AF4E1 +:105C7000806F2B44079340F083821C9B0E9A9342C3 +:105C800003DB1AF0010F00F0B884129A1399144440 +:105C9000C8E90012239A24940132072A239200F3C0 +:105CA000768508F108080E9A0799AE18761AD51A63 +:105CB000AE42A8BF2E46002E0DDD239BC8F8001073 +:105CC00001333444072BC8F804602494239300F371 +:105CD0009D8508F10808002EA8BFAD1B002D7FF799 +:105CE0004BAC102D239B40F362877E4F0A972246D0 +:105CF00010261AEE104A05E008F10808103D102D94 +:105D000040F3828301331032072BC8E90076CDE9D6 +:105D10002332F1DD22AA2146484602F0DBFD0028AD +:105D20007FF4ADABDDE923320DF19408E6E7302BCB +:105D30003FF49AAD3023023A05F8013C4EAB9B1A72 +:105D4000DDF80CA007931546FFF727BB049B002B3B +:105D50007FF41AABDDF80CA00023049307934EAD3B +:105D6000FFF71BBB1AF0010F7FF480AE239EC8F82B +:105D70000050013601340123072E24942396C8F8DD +:105D800004307FF7A6AE1AEE101A22AA484602F097 +:105D9000A1FD00287FF473ABDDE923640DF19408C5 +:105DA00099E60E9B5D1E002D7FF795AE102D40F3FA +:105DB00015874C4ACDF810A023461AEE10AA0A9275 +:105DC0001027144605E008F10808103D102D40F397 +:105DD0009D8301361033072EC8E90047CDE92363C0 +:105DE000F1DD22AA5146484602F074FD00287FF4F6 +:105DF00046ABDDE923630DF19408E6E71AEE101ACD +:105E000022AA484602F066FD00287FF438AB249CA5 +:105E10000DF19408FFF79DBB039B13F0100340F0B6 +:105E20002381039A12F0400200F09B83099A52F8F2 +:105E3000044B09921E46A4B20123FFF7D5BA2D23C5 +:105E400064428DF86B3066EB4606CDF80CA001235A +:105E5000FFF7CDBA1AEE101A22AA484602F03AFD10 +:105E600000287FF40CABDDE923640DF194080CE607 +:105E70001AEE101A22AA484602F02CFD00287FF4E0 +:105E8000FEAADDE923640DF194080BE61AF0010F78 +:105E90003FF472AB2DE59BF800700993FFF7C3B98F +:105EA0004EADFFF77ABA1AF4007F40F0B083E617E0 +:105EB0003346FFF756BA159B002B3FF43AAA159BC1 +:105EC0001B78002B3FF435AA9BF800704AF4806AD7 +:105ED000FFF7A9B9099B53F8044B0993FFF780BA60 +:105EE00070F8010880F80108DDE9100102460B4650 +:105EF000EBF7A6FA002840F0C385612F00F08685F5 +:105F0000412F00F09484049B013327F02003039376 +:105F100000F0B083472B00F08285DDE910014AF4E0 +:105F20008072002907924FF00003C0F2248541ECF3 +:105F3000180B0A930893039B462B00F0F883452B1C +:105F400000F04E85B0EE480AF0EE680A20AB0193EF +:105F50001DAB0093049A1CAB0221484600F084FF5D +:105F6000039B472B054640F069861AF0010F564601 +:105F7000DDF81CA040F00B85209B5B1B0E93039B60 +:105F8000472B00F08B83039B462B00F00F841C9B58 +:105F90000D930D9B039A013B412A1C9300F0D7857A +:105FA000FAB20021002BB8BF0D9B8DF87820BABF44 +:105FB000C3F101032D222B22092B8DF8792040F308 +:105FC000B7850DF18704DFF898C3224610468CFB95 +:105FD0000321DA17C2EBA10202EB8201A3EB41011C +:105FE000303100F8011C19466329134600F1FF32D5 +:105FF000ECDC3033D9B2831E9C4202F8011C40F223 +:10600000048613460DF17A0201E013F8011B02F831 +:10601000011B9C42F9D10DF189030DF17A021B1A83 +:1060200013441EAA9B1A16930E9B169A012B1A4410 +:10603000079240F3B785079B129A13440793079A78 +:10604000002326F4806622EAE27246F4807A0C93FA +:1060500003920F930D930A9B002B40F0458304930A +:106060009DF86B30FFF7A7B9099B53F8044B0993D0 +:106070000123FFF7B9B9099B059853F8041B09934D +:10608000C217C1E900025D46FFF795BACDF80CA032 +:10609000FFF74ABBAF4B14931AF0200600F0EF80D5 +:1060A000099B073323F007035E6853F8084B0993F5 +:1060B0001AF0010F09D054EA060306D030238DF8F8 +:1060C0006D704AF0020A8DF86C302AF480630393F5 +:1060D0000223FFF789B9A04B1493DDE71AEE101ADB +:1060E00022AA484602F0F6FB00287FF4C8A9249CA7 +:1060F0000DF194080BE41AEE900A4021FEF78EFC95 +:1061000020602061002800F0848540236361FFF750 +:1061100052B8102E239B40F3698590480A9042465E +:1061200021461AEE108A1027044604E00832103E79 +:10613000102E40F32F8201331031072BC2E90047A4 +:10614000CDE92331F2DD22AA4146484602F0C2FBE6 +:1061500000287FF494A9DDE9233125AAE7E7284642 +:1061600004960994EBF7ACF820EAE0719DF86B30E7 +:106170000790039108960C960F960D96FFF71BB9A2 +:106180000E9BCDF828B0DDF83CB0079E159FCDF8EA +:106190001CA0EB1804934246DDF860A00C9B0B9505 +:1061A0001AEE108AA446BBF1000F30D093BB013F1A +:1061B0000BF1FF3B179BC2E9003A239B0133D44408 +:1061C000072BCDF890C0239362DC0832049B38780B +:1061D0009B1B8342A8BF0346002B1C460CDD239863 +:1061E00001309C440728C2E90063CDF890C0239099 +:1061F00000F3198138780832002CACBF051B054626 +:10620000002D0BDC06440C9BBBF1000FCED1002B04 +:1062100000F033820C9B013B0C93CBE7102D2398AD +:106220001FDD1024634604E0103D102D02F108022A +:1062300016DD0130494910330728C2E90014CDE9C1 +:106240002303F1DD22AA4146484602F043FB002821 +:106250007FF415A9103D102DDDE9230325AAE8DC04 +:106260009C4601303D4B5560AC440728CDE9230CDA +:10627000136000F34082387808320644C3E71AF00E +:10628000100300F0A480099B53F8044B09930FE717 +:1062900022AA4146484602F01DFB00287FF4EFA8E1 +:1062A000DDF890C025AA91E7039B079703F480636C +:1062B000002209EE109ACDF82080DDF854900DF5FB +:1062C0009C7A174698460CE00023204631460A2265 +:1062D000EAF764FC0A2C76F100031CD304460E4650 +:1062E000AA4620460A2200233146EAF757FC3032FC +:1062F0000AF1FF3501370AF8012CB8F1000FE3D09D +:1063000099F800309F42DFD1FF2FDDD00A2C76F1C3 +:10631000000380F050814EAB5B1BCDF854900E977C +:1063200019EE109ADDE90778DDF80CA00793FFF766 +:1063300034B81AEE101A22AA484602F0CBFA002806 +:106340007FF49DA89DF86B30249C0DF19408FFF715 +:10635000D0B800BF3CF8010850F8010880F80108E7 +:1063600067666666239BC049C8F800100133013494 +:106370000121072B24942393C8F8041000F32F81E4 +:1063800008F10808002A40F08A800E9A0AF00103FA +:1063900013433FF4F1A8129B139A1C44C8E900234D +:1063A000239B24940133072B239300F33F8108F1AF +:1063B00008080E9AC8F8005001331444072BCDE9A1 +:1063C0002334C8F804207FF7D5A8FFF791BB1AF053 +:1063D000400200F0B980099A52F8044B09921E4617 +:1063E000A4B265E6CDF80CA0FEF7C9BF1AEE101AEC +:1063F00022AA484602F06EFA00287FF440A8249CA6 +:106400000DF19408FFF770BA144601330A9AC8F8E0 +:1064100000202C44072BC8F80450CDE923347FF723 +:10642000A9A8FFF765BB22AA4146484602F052FAE6 +:1064300000287FF424A83878DDF890C025AADBE690 +:106440001AEE101A22AA484602F044FA00287FF4F5 +:1064500016A8249C0DF19408FFF775B8012BCDF810 +:106460000CA07FF4F1A9FEF78FBF099B059953F8A3 +:10647000042B5D4611600993FFF79DB8049A0895B7 +:10648000062A294628BF062204952B460392774DFB +:10649000099407920C910F910D91FEF78CBF129BFE +:1064A00013991C44C8E90013239B24940133072B40 +:1064B000239300F3BB8008F10808002ABFF679AFE8 +:1064C0005642103280F2AE8369480A902146424615 +:1064D00010271AEE108A044604E00832103E102EEF +:1064E00040F3AF8201331031072BC2E90047CDE9F9 +:1064F0002331F2DD22AA4146484602F0EBF900289A +:106500007EF4BDAFDDE9233125AAE7E7DDF810A071 +:106510001C4601360A9BC8F800302C44072ECDE9F2 +:106520002364C8F804507FF7D4AA2CE4099B1AF41A +:10653000007614BF53F8044B53F8044B09931CBF67 +:106540001646E4B2FEF74CBF099B1AF4007614BF5E +:1065500053F8044B53F8044B09931CBF1646E4B29E +:10656000A6E5039B13F40076099B14BF53F8044B74 +:1065700053F8044B09931CBF1646E4B20123FEF7FF +:1065800033BF3B4A0A92FFF75EBA2D238DF86B307A +:10659000FFF758B890460C4601330A9AC8F8002015 +:1065A0003444072BCDE92334C8F804604DDC08F1EE +:1065B0000808FFF75BBB189B1799ED1A1A46284687 +:1065C00002F056F999F801300BB109F101092046A2 +:1065D00031460A2200230027EAF7E0FA7EE61AEEA7 +:1065E000101A22AA484602F075F900287EF447AF37 +:1065F0001C9A249C0DF19408C4E60E9A0799AE18D3 +:10660000761AD51AAE42A8BF2E46FFF764BB44F3F4 +:10661000C016334664B2FEF7A4BE099B059953F831 +:10662000042B099311805D46FEF7C5BF1AEE101AC0 +:1066300022AA484602F04EF900287EF420AFDDE998 +:1066400023341C9A0DF1940837E71AEE101A22AA87 +:10665000484602F03FF900287EF411AF249C0DF16A +:106660009408FFF703BB00BF6CF8010864F8010849 +:1066700080F80108062304934FE40B9D0E9BDDF880 +:106680001CA0DDF828B01597EB189E4290463246C4 +:1066900028BF1A4664460792FFF7EFBA1C9B0D937A +:1066A000DA1C02DB049A934204DD023F27F0200348 +:1066B00003936EE4DDE90D329342C0F29980F00756 +:1066C00040F1DB81129A13440793710503D50D9BAA +:1066D000002B00F3FF81079B23EAE37303936727F3 +:1066E00000230C930F93B6E42D2300228DF86B301A +:1066F0000492FEF763BE22AA4146484602F0EAF839 +:1067000000287EF4BCAE3878DDF890C025AA064497 +:1067100079E51AEE101A22AA484602F0DBF80028A2 +:106720007EF4ADAE249C0DF19408FFF798BA20AB2F +:1067300001931DAB0093049AB0EE480AF0EE680A8C +:106740001CAB0321484600F08FFB0378302B054635 +:1067500000F003821C9B049A56461344DDF81CA0EB +:10676000EC1851EC180B00220023EAF76DF908B180 +:10677000234602E4209BA342BFF4FFAB30215A1C06 +:1067800020921970209B9C42F9D8FFF7F6BB1AEEB5 +:10679000101A22AA484602F09DF800287EF46FAE37 +:1067A0001C9B249C0DF19408FFF77DBA1C9A0D9256 +:1067B000002A40F3FF81049906F001030B4340F0E7 +:1067C000B1810D9B07936627730500F18481079BB8 +:1067D00023EAE373039383E7049B039307930994EA +:1067E0009DF86B3004900C900F900D90FEF7E3BD78 +:1067F0000E9B129A9A180D9B0792002B40F3BB81B7 +:106800006727E1E700230493FEF70FBD1AEE101A85 +:1068100022AA484602F05EF800287EF430AE1C9DA5 +:106820000E9B249C5D1B0DF19408FFF754BA302396 +:106830008DF86C3058238DF86D30049B632B4AF033 +:10684000020400F3A7800023089335ADDDE91012A0 +:106850004AF481730793002A27F02003A24603938A +:10686000C0F28A80002342EC181B0A93612F00F0CB +:106870001581412F7FF45FABB0EE480AF0EE680A55 +:106880001CA801F0BFFF00224FF07F5351EC100B0A +:10689000E9F772FE02460B4643EC192B0022002357 +:1068A000EAF7D2F808B101231C93B74B0B93049B72 +:1068B0001995CDE90CB7CDE90EA80CEE109ADDF8CC +:1068C0002CB059EC198B5E1E2C4605E000220023EB +:1068D000013EEAF7B9F8E0B9AC4B00224046494620 +:1068E000E9F74AFE89468046EAF7E0F80546E9F707 +:1068F000D9FD0B46024649464046E9F785FC1BF8A0 +:106900000530A24604F8013B731C37468046894691 +:10691000DCD149EC198B9E4BDDF830B0DDF83C80C2 +:10692000CDF830A051EC190B00223E46DDF838A01E +:106930000D9F0D951CEE109A199DEAF7ADF898BBC6 +:1069400051EC190B924B0022EAF77EF810B10D9B27 +:10695000D90729D4002E334606DB013323443022E5 +:1069600004F8012BA342FBD1631B56460E93DDF8BE +:106970001CA0FFF704BB0893DDE9103408EE103AC1 +:1069800004F1004308EE903A2D230A936EE7049B2E +:10699000EC18E6E6591C4846FEF740F80546002884 +:1069A00000F04381089051E70C9B20930B9B14F857 +:1069B000012CD97B8A42234609D1302003F8010CEF +:1069C000209B5A1E209213F8012C9142F6D0392AAE +:1069D0000BBF0B9A0132927AD2B203F8012CC3E7B3 +:1069E000049BB0EE480AF0EE680A5C1C20AB0193F1 +:1069F0001DAB009322461CAB0221484600F034FA3E +:106A0000054656462C44DDF81CA0AAE630238DF836 +:106A10006C3078230FE75F4A0A92FEF7D6BF049BDB +:106A2000002B08BF01230493119B4AF48072002BB2 +:106A30000792C0F2D9809DED108B08900A90FFF765 +:106A400081BA0C46904601330A9AC8F800203444B3 +:106A5000072BCDE92334C8F804607FF7A8AC1AEE01 +:106A6000101A22AA484601F035FF00287EF407AD2F +:106A7000DDE923340DF194089BE40D9B079324E694 +:106A8000119B454D454A002BB6BF2D239DF86B3019 +:106A90008DF86B302AF0800AFEF7D8BD1CA8B0EE46 +:106AA000480AF0EE680A01F0ADFE00224FF07F5375 +:106AB00051EC100BE9F760FD02460B4643EC192B35 +:106AC00000220023E9F7C0FF08B101231C93344BD7 +:106AD0000B93ECE6672715990B78FF2B00F0B0803D +:106AE00000240D9A204603E001300131FF2B08D02D +:106AF000934206DAD21A4B78002BF5D10B78013489 +:106B0000F4E715910D920F900C940C9A0F9B189925 +:106B10001344079A01FB0323079323EAE3730393C8 +:106B2000FFF799BA129BD3181944079166274BE6D1 +:106B3000002956D130228DF87A200DF17B023033B6 +:106B400002F8013B1EABD31A1693FFF76DBA07F19B +:106B50000F02D2B20121FFF725BA51EC180B002227 +:106B60000023E9F771FF00287FF4F4AD049BC3F123 +:106B700001031C93EFE5C3F101031A4422EAE27317 +:106B8000079203936727ABE550F8010800003040F7 +:106B90000000E03F80F8010834F8010838F80108E7 +:106BA0003CF80108F4077FF54AAAFFF744BA264AE1 +:106BB0000A922AE4049A06F0010656EA020304D176 +:106BC00001230393662707938AE5129B01331A4436 +:106BD00022EAE27307920393662781E51A4B0A9330 +:106BE00097E40DF17A02AAE70890C5E6164A0A92E0 +:106BF000D2E4099B9BF80170934653F8042B099348 +:106C000042EAE2720492FEF70EBB02231693FFF7EC +:106C10000BBA1AEE902A0C2313604FF0FF33059342 +:106C2000FEF73EBC084A0A920DE71AEE101A8B894D +:106C300043F0400213468A81FEF72BBC049CE0E639 +:106C400000230C930F9360E780F80108F0B5254FFF +:106C5000A2F1020E164605460C460FCF8BB0EC464D +:106C6000ACE80F000FCFACE80F0097E803004CF83A +:106C7000040BBEF1220F8CF800102ED804F1FF3E59 +:106C800070464FF0000CB5FBF6F206FB12532833AA +:106C90006B44614613F828CC00F801CF2B469E4286 +:106CA00001F1010C1546EED9002304F80C3089B12E +:106CB000A44472461EF8010F1CF8015D8EF80050C6 +:106CC0006FEA0E0302322344121B0B449A428CF8E3 +:106CD0000000EEDB20460BB0F0BD002020700BB0B2 +:106CE000F0BD00BF90F8010870B50B4E9AB0044695 +:106CF0006FF00045CDE90445134600940A4630681C +:106D0000064C029569460394FEF73AFA009B00226E +:106D10001A701AB070BD00BF540600200802FFFFB1 +:106D2000024B13B1024800F005B8704700000000A4 +:106D3000A57D0108002301461A46184601F046BE0B +:106D40002DE9F04F03690C69A34283B0C0F287803C +:106D5000013C01F11405A30000F11408009355F85B +:106D6000243058F82420013381469A4208EB8400ED +:106D700005EB84070190B2FBF3F63BD30023AE464C +:106D800040469B465EF804AB02681FFA8AFC06FB8D +:106D90000C334FEA134C4FEA1A4A06FB0ACA1FFA91 +:106DA00083FCABEB0C0C1FFA8AF31CFA82FCC3EBDE +:106DB000124202EB2C421FFA8CFC4CEA024377454C +:106DC00040F8043B4FEA224B4FEA1A43DAD2009BC9 +:106DD00058F8033073B9019B043B984504D307E08E +:106DE000984504F1FF3403D253F80429002AF7D060 +:106DF000C9F81040484601F0D5FB00282BDB0136CE +:106E00004046002355F8041BD0F800C08AB29A1AF5 +:106E10000B0C12FA8CF2C3EB1C4303EB224392B22D +:106E200042EA0342AF4240F8042B4FEA2343E9D23F +:106E300058F8242008EB84036AB9043B984504D32E +:106E400007E0984504F1FF3403D253F80429002ADF +:106E5000F7D0C9F81040304603B0BDE8F08F0020ED +:106E600003B0BDE8F08F00BF2DE9F04F2DED068B8C +:106E700095B08DED020B0191016C249D099259ECA6 +:106E8000108B0446069341B1426C4A600123934043 +:106E90008B6001F025F900232364B9F1000AB4BF27 +:106EA000012300232B607C4BBCBF2AF0004ACDF8A5 +:106EB0000CA033EA0A0300F0B2809DED027B0022B1 +:106EC00051EC170BB0EE479AF0EE679A0023E9F702 +:106ED000BBFD074680B1069A01231360259B002B5A +:106EE00000F0DB826D481860431E0093009815B0D7 +:106EF000BDEC068BBDE8F08F12AA13A92046B0EEB8 +:106F0000490AF0EE690A01F015FCB0EE498AF0EE8C +:106F1000698A5FEA1A56054640F09980DDE91276E3 +:106F20003E4406F23240202840F3AB83C0F14000DB +:106F30000AFA00FA06F2124028FA00F04AEA0000C3 +:106F4000E9F7A0FA0123013E0D93A1F1F871544B2A +:106F50000022E9F759F94AA3D3E90023E9F70CFB2A +:106F600049A3D3E90023E9F751F980463046894621 +:106F7000E9F798FA46A3D3E90023E9F7FDFA0246B8 +:106F80000B4640464946E9F741F980468946E9F70C +:106F90008DFD00228346002340464946E9F75EFD09 +:106FA000002840F06D82BBF1160F00F25C823D4B71 +:106FB00003EBCB03D3E9002351EC190BE9F74EFDAA +:106FC000002875D00023BE1B0C93731E0BF1FF3BF2 +:106FD000049300F14F8200230893BBF1000F6EDA97 +:106FE000089BCDF814B0A3EB0B030893CBF100037F +:106FF0000B93019B092B4FF0000B69D8052B40F335 +:107000003E83043B01930026019B023B032B00F2CD +:107010009986DFE813F04E044B0443042604069AD5 +:1070200042F20F73CAF3130A13605AEA08031DD120 +:10703000259B002B00F07D861B4B00930833259A7F +:107040000098136015B0BDEC068BBDE8F08F18EE0C +:10705000903AC3F3130351EC190B43F07F510D9792 +:10706000A6F2FF36129F41F4401170E7259B002BDA +:1070700040F0DB830D4B009338E700BFAFF3008097 +:1070800061436F63A787D23FB3C8608B288AC63F2E +:10709000FB799F501344D33F0000F07F6DF8010847 +:1070A0000000F83F08FA0108BCF80108B8F8010828 +:1070B000BE1B731E049300F19A840C900890049BED +:1070C0005B44CDE9043B00230B93019B092B95D92D +:1070D000002301264FF0FF3201930A96079209938D +:1070E000079B0F9300216164204600F0D3FF0090BE +:1070F000002800F02F86009B2364079B0E2B00F2D4 +:10710000F980002E00F0F6800599002940F3718483 +:10711000BD4B01F00F0203EBC2034FEA2118C90572 +:10712000D3E9006740F10384B84B51EC190BD3E964 +:107130000823E9F74BFB41EC180B08F00F084FF060 +:10714000030AB8F1000F13D0DFF8C09218F0010F56 +:1071500009D030463946D9E90023E9F70DFA0AF19A +:10716000010A06460F465FEA680809F10809EDD1F1 +:1071700051EC180B32463B46E9F728FB41EC1A0B61 +:107180000C9B5BB157EC1A6BA14B1AEE100A002254 +:107190003946E9F763FC002840F052855046E9F78C +:1071A00081F953EC1A2BE9F7E7F99A4B0022E9F73A +:1071B0002DF8079B8046A1F15079002B00F0F38356 +:1071C000059B1093079B0E930A9B002B00F0C08435 +:1071D0000E9A8D4B9049DDF800A003EBC20353E9F2 +:1071E00002230020E9F7F2FA42464B46E9F70CF891 +:1071F00059EC1A8B41EC180B49461AEE100AE9F7C4 +:1072000055FC0746E9F74EF902460B461AEE100AFE +:107210004946E8F7F9FF30370AF8017B53EC182BA1 +:1072200006460F46E9F71AFC002840F055854FF056 +:1072300000080AEE105ACDF844B055465BEC18AB86 +:1072400008EE104A44462AE00E9B01349C424BDA79 +:10725000724B504659460022E9F78EF96F4B0022D7 +:1072600082468B4630463946E9F786F9894680469C +:10727000E9F71CFC0746E9F715F902460B464046BC +:107280004946E8F7C1FF303705F8017B52465B46B7 +:1072900006460F46E9F7E2FB002840F01885324623 +:1072A0003B465B490020E8F7AFFF52465B46E9F7F3 +:1072B000D5FB0028C8D0109B009A0593AA4618EE6B +:1072C000104A1AEE105A02E0924500F0EA84D146C4 +:1072D0001AF8013D392BF7D00133DBB28AF80030C0 +:1072E000059B01330593ABE1DDF844B01AEE105A6B +:1072F00018EE104A139B002BC0F29480059A0E2AB8 +:1073000000F39080404B03EBC203D3E90089099B53 +:10731000002B1BDA079B002B18DC40F05D83404BF1 +:10732000002240464946E9F727F902460B4651EC50 +:10733000190BE9F79DFBDDF81CA05646002800F06C +:10734000D082099BDDF80080DF43D2E242464B4603 +:1073500051EC190BE9F73AFAE9F7A8FB0646834620 +:10736000E9F7A0F842464B46E9F706F90B46024614 +:1073700051EC190BE8F748FFDDF800A03346303335 +:107380000AF8013B079B012B00F08E834FF0010BA5 +:1073900008EE105A08EE904A1D465446DA461DE0A3 +:1073A00042464B4630463946E9F710FAE9F77EFB8C +:1073B0008346E9F777F842464B46E9F7DDF80AF1EC +:1073C000010A0B46024639463046E8F71DFF0BF12D +:1073D0003003AA4504F8013B00F061830F4B002203 +:1073E000E9F7CAF80022002306460F46E9F72CFB0E +:1073F0000028D5D0A24618EE105A18EE904A059BE8 +:1074000001330593D1461BE108FA0108E0F90108B0 +:107410000000F03F00001C400000E03F000024405E +:10742000000014400A9A002A3FD0019A012A40F332 +:107430009C82079B03F1FF380B9B4345C0F26E8291 +:10744000A3EB0808079B002BC0F26683049A1A443A +:107450000492089A17461A4408920121204600F027 +:10746000EDFE064625E00123BE1B0C93731E04931C +:107470007FF5B1ADC6F10103089300230493ACE599 +:107480005846E9F70FF842464B46E9F7DDFA00287F +:107490007FF489AD0BF1FF3B85E5874B00930098A6 +:1074A00015B0BDEC068BBDE8F08FDDF82C80089F91 +:1074B0000A9E002F0CDD049A002A09DD0899BA42C1 +:1074C0001346A8BF3B46C91AFF1AD31A0891049362 +:1074D0000B9BDBB10A9B002B00F08282B8F1000FFE +:1074E0000FDD31464246204600F084FF2A46014621 +:1074F0000646204600F0D0FE29460546204600F00C +:10750000EFFD0B9BB3EB080240F000830121204606 +:1075100000F094FEBBF1000F824600F3B780019BA0 +:10752000012B40F386814FF000080120BBF1000FD2 +:1075300040F0B880049A104410F01F0000F09680CC +:10754000C0F12003042B40F3F883089BC0F11C001A +:1075500003440244089307440492089B002B05DD72 +:1075600029461A46204600F0A5FF0546049B002B3D +:1075700005DD51461A46204600F09CFF82460C9BD2 +:10758000002B40F03781079B002B40F31E810A9BA4 +:10759000002B40F0A180059B01330593DDF80080AE +:1075A000DDF81C90012707E0294600230A22204627 +:1075B00000F0A0FD0137054651462846FFF7C0FB05 +:1075C0004F4500F1300008F8010BEDDB079A002A67 +:1075D000C8BF9346009AD8BF4FF0010B03469344AF +:1075E0000027294601222046019300F063FF5146FF +:1075F000054600F0D7FF002840F3A5811BF8013CA9 +:10760000009A0BF1FF3B04E05A4500F0A7811BF8FC +:10761000013D392B0BF10109F6D001338BF8003015 +:107620005146204600F05CFD56B12FB1B74203D061 +:107630003946204600F054FD3146204600F050FD0A +:107640002946204600F04CFD002389F80030DDE992 +:1076500005231A60259B002B3FF448AC0098C3F823 +:10766000009015B0BDEC068BBDE8F08F1C20089B88 +:1076700003440893049B0344074404936DE70126E5 +:10768000C2E4C0F1200008FA00F059E401465A466D +:10769000204600F0AFFE019B012B824640F3D581CE +:1076A0004FF00008DAF810300AEB8303186900F095 +:1076B00075FDC0F120003DE76CF80108314600235C +:1076C0000A22204600F016FD0F9B002B064640F3D1 +:1076D0002383CDF814900793002F00F31881B8F19D +:1076E000000F40F0FC81B046029B009F079903F019 +:1076F00001027B1E1944019B0A92134308910993CE +:1077000051462846FFF71CFB31468346284600F0C9 +:1077100049FF424651468146204600F065FFC26857 +:1077200001460BF13003002A42D10490284607930A +:1077300000F038FF04990290204600F0D1FC029A34 +:10774000079B1AB90999002900F0D682B9F1000FF8 +:10775000C0F28781019949EA01090A9951EA0901B0 +:1077600000F07F81002A00F3E781089A3B7007F15F +:1077700001099742CB4600F0E581294600230A2201 +:10778000204600F0B7FC4645054631464FF0000361 +:107790004FF00A02204612D000F0ACFC41460646EB +:1077A00000230A22204600F0A5FC4F468046A7E7AA +:1077B0002046029300F094FC029B0122C6E700F0F1 +:1077C00099FC4F46064680469AE7019B022B77DCE0 +:1077D0000A9B002B80D1059B514601332846059317 +:1077E000FFF7AEFADDF800B000F130030BF8013B13 +:1077F0000027F6E65146284600F0D4FE0028BFF6E2 +:10780000C2AE294600230A22204600F073FC059BE5 +:1078100003F1FF390A9B0546002B7FF44FAF0F9B06 +:10782000002B40F370820793B8E6BD4B00930333FF +:1078300005E4DDE9021200297FF475AEC2F31303FB +:10784000002B7FF470AEB74B1340002B00F03D824D +:10785000089B01330893049B013304934FF0010804 +:1078600063E601230A93099B059A13440F9301339E +:10787000012B1F460793B8BF01270021172F616412 +:107880007FF732AC012204235B0003F11400B842FD +:10789000114602F10102F7D9616425E401230A933C +:1078A000099F002F4ADD0F970797E6E700230A9309 +:1078B000D9E700230A93F3E70F9BCDF814900793C1 +:1078C000079B002B7FF43DAD51460522204600F07A +:1078D00011FC01468246284600F064FE00287FF72E +:1078E00030AD0098059F3123804600F8013B0137F9 +:1078F00000905146204600F0F3FB7B1CDDF8009021 +:107900000593CDF80080002E7FF496AE98E63146C0 +:107910003A46204600F0CEFD0646E0E60B9BCDF849 +:107920002C80A8EB03039B444FF000088AE54FF03E +:10793000020AB0EE498AF0EE698A02E40123099353 +:107940000793FFF7CDBB03D1019BDB073FF556AE95 +:10795000D9461BF8013D302BFAD061E6059B009A11 +:1079600001330593312313705AE60D9A002A00F073 +:10797000638103F23343049ADDF82C801A440492A5 +:10798000089A17461A44089267E55046E8F78AFDB8 +:1079900053EC1A2BE8F7F0FD634B0022E8F736FCB6 +:1079A0008046A1F15079614B002251EC1A0BE8F7A7 +:1079B0002BFC42464B4606460F46E9F76DF8002879 +:1079C00040F07F8130463946424609F10043E9F7ED +:1079D00045F800283FF48EAC4FF0000A5646B0E45C +:1079E00029460B9A204600F005FD05468EE50C90D1 +:1079F00040E500F04E81059A4D4B564206F00F02CD +:107A000003EBC203D3E9002351EC190BE8F7B4FDF3 +:107A1000361141EC1A0B00F08881464F00234FF0DD +:107A2000020AF20706D5D7E90023E8F7A5FD0AF117 +:107A3000010A0123761007F10807F2D1002B3FF469 +:107A40009FAB41EC1A0BFFF79BBB029B002B7FF413 +:107A500027AEDDE90212C2F31303002B3FF4F3AEAD +:107A60001EE6002A12DD294601222046019300F07D +:107A700021FD5146054600F095FD0028019B40F38D +:107A80003581392B00F013810BF13103B94609F828 +:107A9000013B059B0133374605934646C0E5A246A8 +:107AA00018EE105A18EE904A02460B46E8F7AEFB65 +:107AB00042464B4606460F46E8F7EEFF60B942469F +:107AC0004B4630463946E8F7BFFF00283FF497ACF5 +:107AD0005FEACB717FF593AC009AFFF7F8BB716852 +:107AE000204600F0D7FA0746002800F03A813369B3 +:107AF00002339A0006F10C010C30E9F7D1F939464E +:107B00000122204600F0D6FC8046EDE529462046BD +:107B100000F070FC0546F9E4DDE907239F1A9CE4B8 +:107B2000B8F801080000F07F00001C40000014407D +:107B300008FA0108E0F90108392B00F0B880B946CD +:107B40000133A4E7059A013237460592464648E5D7 +:107B50000E988D4901EBC00142464B4651E90201A6 +:107B6000E8F70AFD5AEC1A9B41EC180B51461AEE45 +:107B7000100AE8F79BFF0746E8F794FC02460B461D +:107B80001AEE100A5146E8F73FFB06460E98DDF85C +:107B900000803037012808F8017B0F4600F0BA80DA +:107BA0000E9B009ACDF838B013449B46C246774BE3 +:107BB000002230463946E8F7DFFC89468046E8F780 +:107BC00075FF0746E8F76EFC303702460B46404625 +:107BD0004946E8F719FB0AF8017BDA4506460F46E5 +:107BE000E5D1DA46DDF838B0694B59EC188B002244 +:107BF00018EE100A4946E8F709FB32463B46E8F71B +:107C00002DFF00286DD118EE102A4B466049002048 +:107C1000E8F7FAFA32463B46E8F73EFF00283FF421 +:107C200069ABD1460AF1FF3A19F8013C302BF8D084 +:107C3000109B0133059303E5129BC3F136039AE6CB +:107C4000079B002B3FF4A1AE0F9B002B7FF752AB9D +:107C5000059A0E93013A4D4B10921AEE100A3946CE +:107C60000022E8F789FC024616460F460AF1010099 +:107C7000E8F718FC32463B46E8F77EFC454B00220D +:107C8000E8F7C4FA47EC1A6B8046A1F15079FFF788 +:107C90009BBA4FF0020AB0EE49AAF0EE69AAFFF7CC +:107CA0006FBA059B013305933123FFF717BB059B83 +:107CB000BB4601330593392337460BF8013B464653 +:107CC0009EE44FF0000A56460BE698462DE4AA467D +:107CD00018EE104A1AEE105A109B01330593D14644 +:107CE000AEE4109B009A0593FFF7F1BA7FF4CEAE95 +:107CF000DA077FF5CBAEC4E6392BD8D0B9F1000F47 +:107D00003FF7C2AEC2E6019B022B3FF7D5ADCDF8DF +:107D1000149060E5C24667E7019B022B3FF7CCADAC +:107D20000F9BCDF814900793D6E44FF0020AFFF7AB +:107D300027BA194B0093FFF7D9B83FF40EACC0F146 +:107D40003C0094E4002666643146204600F0A2F927 +:107D5000009068B9114B124800224FF4D57100F021 +:107D60007BFE0E4B0E483A4640F2EA2100F074FECC +:107D7000009B236401224FF0FF3309960F930A9270 +:107D80000793FFF7B7BA00BF08FA010800002440C4 +:107D90000000E03F00001C40BCF80108C8F80108E2 +:107DA000DCF8010838B5084B084D5B1B9C1007D068 +:107DB000043B1D44013C55F804399847002CF9D187 +:107DC000BDE8384006F0DAB9440202084002020871 +:107DD000F8B5244F0C460646FDF722F9BA685568F7 +:107DE000C4F57E630F3325F003052B4423F47F6332 +:107DF00023F00F03A3F58054B4F5805F07DB002167 +:107E00003046FDF719F9BB682B44984204D0304640 +:107E1000FDF70CF90020F8BD61423046FDF70CF982 +:107E200001300DD0104ABB682D1B45F001055D6087 +:107E3000136830461B1B1360FDF7F8F80120F8BDEE +:107E400000213046FDF7F8F8BA68831A0F2BDEDD03 +:107E500043F001035360054B03491B68C01A0860D7 +:107E6000D5E700BF800A00209C9D0020880E0020DE +:107E7000002961D0F8B50C460646FDF7D1F854F854 +:107E8000042C7B4FA4F1080522F0010105EB010C45 +:107E9000B868DCF80430604523F0030300F08B8001 +:107EA000D207CCF8043032D454F8082CAD1A11445F +:107EB000AA6807F1080082426AD00CEB0304D4F8E8 +:107EC00004E0EC68D4601EF0010FA26000F097801F +:107ED00041F001036B60CCF80010B1F5007F35D2A2 +:107EE0007A68CB0848090121013381401143796048 +:107EF00007EBC30257F83310083AC5E9021247F8F6 +:107F00003350CD603046BDE8F840FDF78FB80CEB3C +:107F100003025268D00710D4194407F10800DCF8B6 +:107F20000830834273D0DCF80C20DA60936041F0B3 +:107F300001036B606950D0E7704741F00103B1F570 +:107F4000007F44F8043CCCF80010C9D3B1F5206F91 +:107F50004FEA512348D28B0903F1390003F138026B +:107F6000C300F818FB580838984259D05A6822F0D4 +:107F700003028A4202D99B689842F7D1D868C5E9C2 +:107F800002308560DD603046BDE8F840FDF74EB850 +:107F90000CEB03025268D20763D40B44DCE90212F3 +:107FA000CA60916043F001026A603046EB50BDE860 +:107FB000F840FDF73BB80B44D10707D454F8082C20 +:107FC000AD1A1344D5E90212CA60916043F0010270 +:107FD0006A60284ABD6012689A4293D8264B3046A0 +:107FE0001968FFF7F5FE8DE7142B0AD9542B1FD81B +:107FF0000B0B03F16F0003F16E02C300B1E71944EC +:108000008DE703F15C0003F15B02C300A9E741F0D7 +:108010000103C7E90455C5E902006B60695071E7C7 +:1080200079689210012404FA02F20A437A60A6E702 +:10803000B3F5AA7F06D8CB0B03F1780003F17702E2 +:10804000C3008EE740F25452934206D88B0C03F1E2 +:108050007D0003F17C02C30083E74FF47E737E2230 +:108060007FE741F001036B60CCF800104AE700BFE6 +:10807000800A00208C0E0020CC9D00200048704714 +:10808000840F0020704700BF704700BF704700BFDB +:10809000704700BFC36C70B505460C464BB153F832 +:1080A000240080B1026843F824200023C0E9033390 +:1080B00070BD2122042100F0EFFC0346E864002893 +:1080C000EDD1002070BD012101FA04F6721D92006D +:1080D000284600F0E1FC0028F3D0C0E90146E4E7BF +:1080E00031B1C36C4A6853F82200086043F822108B +:1080F000704700BFF0B50C69064683B00D4601F12C +:10810000140E0020DEF800101FFA81FC02FB0C3375 +:108110004FEA134C090C02FB01CC01309BB203EB7C +:108120000C4384424EF8043B4FEA1C43EADC3BB16B +:10813000AA68A24207DD05EB8402013453612C6179 +:10814000284603B0F0BD6968019301313046FFF75E +:10815000A1FF019B0746B8B12A690193023205F1DC +:108160000C0192000C30E8F79BFEF26C6968019BF1 +:1081700052F82100286042F821503D4605EB840268 +:10818000013453612C61DBE7024B03483A46B521C9 +:1081900000F062FCC8F801085CF90108030C1B043C +:1081A000D3B90004102310F07F4F04BF000208333E +:1081B00010F0704F04BF0001043310F0404F04BFB3 +:1081C00080000233002805DB10F0804F03F101032B +:1081D00008BF2023184670470023E4E7036813F024 +:1081E0000702014607D0DA071FD4980721D55B089C +:1081F0000B600120704798B2A0B11046DAB20AB9FC +:1082000008301B0A1A0704BF1B0904309A0704BF71 +:108210009B080230DA0703D45B0800F1010006D0A6 +:108220000B6070471B0C1020E8E7002070472020EF +:1082300070479B080B600220704700BF38B5C36CC5 +:1082400004460D464BB15868B0B102685A6000222E +:108250000123C0E90435C26038BD2122042100F0A9 +:108260001BFC0346E0640028EDD1094B09480022BD +:108270004FF4A07100F0F0FB1C220121204600F019 +:108280000BFC0028F1D001220223C0E90123DEE724 +:10829000C8F801085CF901082DE9F04F0E6915696D +:1082A000AE4285B08846144605DB2A46234635464D +:1082B0000C4616469846A3686168AF19BB42B8BF22 +:1082C0000131FFF7E7FE0190002800F08780019B55 +:1082D00003F1140909EB870AD14505D24B46002268 +:1082E00043F8042B9A45FBD808F1140808EB860BD9 +:1082F00004F11403D8451A4603EB85055FD22B1B06 +:10830000153B23F0030304331534A54238BF04237F +:10831000CDE902A7AC461F46924605E0000C29D1E4 +:10832000C34509F1040948D958F8040B85B2002D5A +:10833000F4D056464C46002356F8040B216882B20E +:108340001FFA81FE05FB02EE000C0A0C734405FBCC +:10835000002202EB13429BB243EA0243B44544F8C5 +:10836000043B4FEA1243E7D849F8073058F8040CA9 +:10837000000CD5D0D9F80030544619464D4600229D +:108380002688090C00FB06110A449BB243EA02430B +:1083900045F8043B54F8046B2968360C8BB200FB9B +:1083A000063303EB1243A4454FEA1342E8D8C34512 +:1083B00049F8073009F10409B6D8DDE902A7002F12 +:1083C00002DC05E0013F03D05AF8043D002BF9D050 +:1083D000019B18461F6105B0BDE8F08F034B0448B0 +:1083E000019A40F25D1100F037FB00BFC8F80108A8 +:1083F0005CF9010812F003032DE9F041144606462A +:1084000032D10D46A41020D0D6F84880B8F1000F24 +:1084100033D0E3074FF0000707D4641015D0D8F825 +:108420000000A8B18046E307F7D54246294630460A +:10843000FFF732FFB5B16968F36C641053F821207F +:108440002A6043F821500546E9D12846BDE8F0816D +:10845000424641463046FFF71FFFC8F8000007605C +:108460008046E0E70546D8E7013B0F4A52F8232053 +:108470000023FFF73FFE0546C4E701213046FFF722 +:1084800009FE804640B1012340F27122C0E9043266 +:108490000023B0640360BCE7044B054842464FF438 +:1084A000A07100F0D9FA00BFD0FA0108C8F801089D +:1084B0005CF901082DE9F0470C4690462669A3684F +:1084C000496806EB6216751C9D4207464FEA621921 +:1084D00004DD5B009D4201F10101FADC3846FFF743 +:1084E000D9FD8446002851D0B9F1000F00F11400E5 +:1084F0000EDD09F105024FEA820E03460CEB820203 +:10850000002143F8041B9342FBD1AEF1140318443D +:10851000216904F1140318F01F0803EB81012DD029 +:10852000C8F1200986464FF0000A1A6802FA08F2DC +:1085300042EA0A024EF8042B53F8042B994222FA1D +:1085400009FAF2D80B1B153B23F00303043304F1A3 +:108550001502914238BF0423BAF1000F18BF2E460E +:1085600040F803A0FB6C6268CCF8106053F822104E +:108570002160604643F82240BDE8F087043853F894 +:10858000042B40F8042F9942F9D8EBE7034B044839 +:10859000624640F2D91100F05FFA00BFC8F8010846 +:1085A0005CF901080B6984460069C01A16D10CF108 +:1085B000140C14310CEB830210B401EB830301E0C3 +:1085C000944508D252F8044D53F8041D8C42F7D05C +:1085D00005D24FF0FF305DF8044B70477047012023 +:1085E0005DF8044B704700BF2DE9F84F0F69136920 +:1085F000FF1A002F0E4690467AD101F1140514326D +:1086000002EB830205EB830301E09D4273D253F832 +:10861000041D52F8044DA142F7D064D37168FFF7EE +:1086200039FD8146002872D03569D8F81020C7601E +:1086300008F1140E06F1140009F1140A06F1100CE9 +:108640000EEB820200EB8507564600215EF8044BD4 +:108650005CF804BFA3B211FA8BF1CB1A210CC1EB69 +:108660001B4101EB23419BB243EA0143724546F8AB +:10867000043B4FEA2141E9D8A2EB0804153C08F17C +:108680001508424524F0030606F1040638BF042607 +:10869000304424F0030238BF002287425244B244DF +:1086A00016D95646044654F8043B11FA83F10A14CD +:1086B00002EB134289B241EA0243A74246F8043B67 +:1086C0004FEA2241EFD87A1E101A20F003025244DA +:1086D00023B952F8043D013D002BFAD0C9F81050DF +:1086E0004846BDE8F88F334601274646984695E749 +:1086F000F9DB002792E70021FFF7CCFC814668B147 +:1087000001220023C9E904234846BDE8F88F074B3E +:1087100007484A464FF4107100F09EF9034B044895 +:108720004A4640F2322100F097F900BFC8F801082C +:108730005CF901082DE9F043884683B0012157EC2C +:10874000106B1546FFF7A6FC044600284FD0C7F370 +:108750000A59C7F31303B9F1000F01D043F4801392 +:10876000002E019324D068460096FFF737FD0028BD +:1087700039D0DDE90013C0F1200203FA02F20A4306 +:10878000C34062610193002B14BF02220122A36146 +:108790002261B9F1000F16D0A9F233430344C0F1AE +:1087A0003500C8F800302860204603B0BDE8F083EB +:1087B00001A8FFF713FD019B6361012220302261B4 +:1087C000B9F1000FE8D104EB8203A0F23240C8F8FF +:1087D00000001869FFF7E2FCC0EB42102860204659 +:1087E00003B0BDE8F083009B6361019BCBE7034BC3 +:1087F0000348224640F20A3100F02EF9C8F8010879 +:108800005CF9010853EC102B70B5164E23F00041B3 +:108810000025B1420446056021DC10EE106A0E43CB +:108820001DD0114E1E40184666B91946002210EEA2 +:10883000100A0E4BE7F7A0FE6FF03505024608461A +:1088400021F0004120F0FF40091520F4E000A1F2E2 +:10885000FE3140F07F53294443F40013216043EC80 +:10886000102B70BDFFFFEF7F0000F07F0000504332 +:1088700030B540EA0104A30701D1032A0FD884468A +:1088800001F1FF3E07E01EF8011F03F8011B541E13 +:10889000C1B19C4622466346002AF4D130BD0B4646 +:1088A0008446194653F8045BA5F1013424EA050413 +:1088B00014F0803FE4D1043A032A4CF8045B1946D3 +:1088C000EFD8DDE76244002CE8D003F8011B9342A7 +:1088D000FBD130BD2DE9F04F936883B09146002B5A +:1088E0006ED017688D6880460C460868083744E0EB +:1088F000A38913F4906F2ED0D4E90415A0EB010ADC +:1089000005EB450505EBD5750AEB06006D1001304A +:10891000A8422A4684BF05462A465B0537D511463C +:108920004046FCF77BF800283BD052462169019075 +:10893000E8F7B6FAA289019B22F4906242F0800225 +:10894000A281A5EB0A0203EB0A006561A260236124 +:1089500020603546B2465946524600F009F9A068F3 +:10896000D9F808102368451B8E1B03EB0A00A5608D +:108970002060C9F808601EB3083757E902B6002E18 +:10898000FAD0B542AA46B3D93546B246E3E74046E7 +:1089900000F06AF903460028D3D121694046FFF769 +:1089A00067FA0C23C8F80030A389002243F0400383 +:1089B0004FF0FF30A381C9E9012203B0BDE8F08F79 +:1089C0000020C9F8040003B0BDE8F08F2DE9F0479E +:1089D000DFF880A00646DAF8000098460F46914678 +:1089E000FFF754FB1A4B1B68D3F8484124B3656862 +:1089F0001F2D26DC5EB96B1C0235DAF800006360BF +:108A000044F82570FFF744FB0020BDE8F08704EB35 +:108A100085010123C1F88890D4F88821AB401A431E +:108A2000022EC4F88821C1F80881E4D1D4F88C2141 +:108A30001343C4F88C31DEE703F5A674C3F848414C +:108A4000D5E7DAF80000FFF723FB4FF0FF30DCE753 +:108A500028F80108900E002000B50B4C256814463C +:108A6000EE681A4685B003460D464CB1074900959D +:108A7000CDE901143046064900F04AF801F0D2FA77 +:108A800004490C46F3E700BF54060020DCFA010855 +:108A9000ECFA0108E8FA010838B5A1FB02148CBB16 +:108AA000FBF7BCFF0546E0B150F8042C22F00302AE +:108AB000043A242A17D8132A1AD91B2AC0E90044D9 +:108AC0001DD9242A14BF00F1100200F118024FF042 +:108AD0000003C0E9024404BF04614461C2E90033F9 +:108AE0009360284638BD2146FCF748FA284638BD31 +:108AF00002460023C2E900339360284638BD00F1E6 +:108B00000802F6E7FBF742FF0C2300250360E8E7C5 +:108B10000EB410B583B005AB064C53F8042B01938B +:108B20000146206800F0C8FA03B0BDE8104003B069 +:108B3000704700BF54060020014B93F8280170478E +:108B4000940E002082B049B15AB16BB113780B601A +:108B50001278101E18BF012002B0704701A9002A28 +:108B6000F3D1104602B070476FF00100F4E700BF88 +:108B700088420DD98B1883420AD900EB020CBAB196 +:108B8000624613F801CD02F801CD9942F9D1704740 +:108B90000F2A0ED8034602F1FF3C4AB10CF1010C3A +:108BA000013B8C4411F8012B03F8012F6145F9D1E9 +:108BB000704740EA01039B0750D1A2F1100370B542 +:108BC00001F1200C23F00F0501F1100E00F110044B +:108BD000AC441B095EF8105C44F8105C5EF80C5C59 +:108BE00044F80C5C5EF8085C44F8085C5EF8045CD1 +:108BF00044F8045C0EF1100EE64504F11004E9D1CE +:108C0000013312F00C0F01EB031102F00F0400EB23 +:108C1000031327D0043C24F003064FEA940C1E44AF +:108C20001C1F8E465EF8045B44F8045FB442F9D121 +:108C30000CF1010402F0030203EB840301EB840155 +:108C400002F1FF3C4AB10CF1010C013B8C4411F8DC +:108C5000012B03F8012F6145F9D170BD02F1FF3CF2 +:108C600003469BE72246EBE72DE9F84F174600291C +:108C700000F0988007F10B0580460C46FCF7D0F910 +:108C8000162D5DD810252A46AF425ED854F8041C34 +:108C900021F003069642A4F1080962DABC4BD3F82E +:108CA00008C009EB0600844500F09780D0F804C0A6 +:108CB0002CF0010303445B68DB0768D42CF0030C41 +:108CC00006EB0C03934247DACB0710D454F8083C68 +:108CD000A9EB030ADAF8043023F003018C44B4440E +:108CE000944580F211817318934280F2E8803946EE +:108CF0004046FBF793FE0746E0B154F8043C23F0EE +:108D000001034B44A0F10802934200F0D280321FCD +:108D1000242A00F2F580132A00F2AC800346224692 +:108D2000116819605168596092689A6021464046FE +:108D3000FFF79EF84046FCF779F93846BDE8F88F12 +:108D400025F00705002D2A469EDA0C23C8F80030CE +:108D500000273846BDE8F88F1E46D0E90223D360CD +:108D60009A60731B0F2B22D8D9F8043003F001034B +:108D700033434E44C9F80430736843F00103736011 +:108D800040462746FCF752F93846BDE8F88FC90738 +:108D9000ADD454F8083CA9EB030ADAF8041021F02A +:108DA0000301A0E7BDE8F84F1146FBF737BED9F83D +:108DB000041001F001012943C9F8041009EB050171 +:108DC0004E4443F001034B60736843F001030831E4 +:108DD00073604046FFF74CF8D2E7DCF8040020F05F +:108DE000030B06EB0B0C05F1100084454DDAC907A7 +:108DF0003FF57DAF54F8081CA9EB010ADAF804101E +:108E000021F003018B44B34458453FF76CAF5746FC +:108E1000DAF80C1057F8080F321F242AC160886056 +:108E200000F2DB80132A40F2D6802168CAF80810CD +:108E30006168CAF80C101B2A00F2DF8008340AF1BE +:108E400010022168116061685160A16891600AEBAD +:108E50000501ABEB050242F0010299604A60DAF8C5 +:108E6000043003F001031D434046CAF80450FCF7E8 +:108E7000DDF86EE723680360636843601B2A68D8E7 +:108E800004F1080200F108034AE709EB05029A60C1 +:108E9000ACEB050343F00103536054F8043C03F0CA +:108EA00001031D43404644F8045CFCF7BFF8274625 +:108EB0004FE750F8043C23F003031E4451E75746A4 +:108EC000DAF80C1057F8080F321F242AC1608860A6 +:108ED0004CD8132A48D92168CAF808106168CAF822 +:108EE0000C101B2A56D808340AF110021E462368BB +:108EF000136063685360A3689360D1463C4630E7D3 +:108F00002146FFF735FE11E7D0E902135746CB6043 +:108F1000996057F8081FDAF80C30CB60321F242A0A +:108F200099602DD8132A29D92368CAF808306368B4 +:108F3000CAF80C301B2A42D808340AF11003226800 +:108F40001A6062685A60A2689A606646D1463C46DA +:108F500007E7A3688360E368C360242A26D004F18E +:108F6000100200F11003DBE63A46BFE7214638461F +:108F70001E46D146FFF7FCFD3C46F2E63B46DEE7E7 +:108F8000214638466646D146FFF7F2FD3C46E8E604 +:108F9000800A0020A168CAF81010E168CAF814100D +:108FA000242A20D010340AF118029FE723690361B4 +:108FB0006169416104F1180200F11803B0E6A36889 +:108FC000CAF81030E368CAF81430242A21D01034CB +:108FD0000AF11803B3E73A4633E721463846FFF76C +:108FE000C7FD164B33E72269CAF818206269CAF830 +:108FF0001C2018340AF1200278E7A168CAF8101082 +:10900000E168CAF81410242A0DD010340AF11802AD +:1090100017E72369CAF818306369CAF81C30183496 +:109020000AF120038BE72269CAF818206269CAF89E +:109030001C2018340AF1200203E700BF800A002038 +:109040002DE9F84F4B6E9C0490462DD5936812681D +:1090500043B38B46064602F1080959E9025A5FEA12 +:109060009A0715D0043D002401E0A7420ED055F820 +:10907000041F5A46304601F08FF9431C04F10104E5 +:10908000F3D10023C8E90133BDE8F88FD8F80830E0 +:109090002AF0030AA3EB0A03C8F8083009F108090B +:1090A000002BDAD10020ECE701F0AAF90023C8E98F +:1090B0000133BDE8F88F00BF2DE9F04F2DED028B95 +:1090C000BBB008EE101A08EE900A1C461746039330 +:1090D00018B1836B002B00F09C8218EE102A536E9F +:1090E000DE0740F19E81B2F90C108AB2900409D4D7 +:1090F00041F4005218EE101A4B6E8A8123F400538B +:1091000092B24B66110740F1F88018EE103A1B69D5 +:10911000002B00F0F28002F01A030A2B00F0FE8010 +:1091200011AB0E930023CDE90F33CDE9083306933D +:109130000DF14409079302933B78002B00F05B810B +:109140003C4604E014F8013F002B00F03481252B4D +:10915000F8D1E51B40F031812378002B00F04B81E2 +:109160004FF0000300258DF83330671C63780195BC +:109170004FF0FF3B2B240137A3F120025A2A00F2C3 +:109180006181DFE812F0AB025F015F01A7025F01BE +:109190005F015F016A005F015F0149027E025F01BA +:1091A0005402B9025F01B5025B005B005B005B002B +:1091B0005B005B005B005B005B005F015F015F01C8 +:1091C0005F015F015F015F015F015F0136028400A3 +:1091D0005F015F015F015F015F015F015F015F018F +:1091E0005F015F01E5005F015F015F011A025F013E +:1091F0006C025F015F014C055F015F015F015F0170 +:109200005F015F015F015F015F015F013602860060 +:109210005F015F015F016202860080005F0158020A +:109220005F019402E700820280005F011A027E0063 +:109230006C055F015F016E055F017E00A3F13002E6 +:10924000002117F8013B01EB810102EB4101A3F181 +:109250003002092AF5D901918EE718EE900AFEF73F +:109260000DFF436808931846E8F72AF80990064668 +:1092700018EE900AFEF702FF83680793002E40F075 +:10928000A9843B7877E73B7845F0200573E745F004 +:109290001005AC06039E40F18281073626F00706D2 +:1092A0003246736852F8086B03929846002BC0F25E +:1092B0005984BBF1FF3F00F03E8556EA080325F0D4 +:1092C000800A00F034840A2E78F1000380F0EB84E9 +:1092D000303601238DF8E760554600930DF1E70421 +:1092E000009A9DF833305A45B8BF5A469046002B35 +:1092F00000F0B78002F10108B3E018EE101A18EE82 +:10930000900A18EE105A00F023FE002840F0AC85B9 +:10931000AA8902F01A030A2B7FF402AF18EE101A82 +:10932000B1F90E30002BFFF6FBAE4B6EDE0702D418 +:10933000950540F1778518EE101A18EE900A23462D +:109340003A463BB0BDEC028BBDE8F04F00F0B2BD39 +:1093500045F0100515F0200800F01281039E073635 +:1093600026F007063346D6F8048053F8086B0393BB +:1093700025F4806A00234FF000028DF83320BBF102 +:10938000FF3F00F0D38156EA08022AF0800540F042 +:10939000CC81BBF1000F40F0D184002B40F0CC8396 +:1093A0001AF00103009300F0FC8330238DF8E730BE +:1093B0000DF1E70494E7E51B1DD00F9B109A0133D4 +:1093C0002A44072BC9E9007510920F9305DC09F1B7 +:1093D0000809029B2B440293BEE6002A00F0A383F7 +:1093E00018EE101A18EE900A0EAAFFF729FE40B9DF +:1093F0000DF14409EDE7109B002B40F0248500237C +:109400000F9318EE102A536ED90740F1AE8093895E +:109410005B0600F1328502983BB0BDEC028BBDE8E3 +:10942000F08FB2F90C108D0518EE103A8AB23FF5A4 +:109430005DAE18EE105A986DFEF728FEB5F90C10C7 +:109440008AB253E6002BD6D08DF884304FF0010855 +:109450004FF000038DF83330CDF8008021AC4FF091 +:10946000000B15F00203049318BF08F1020815F071 +:109470008403059305D1019BA3EB0806002E00F39E +:109480007F82DDE90F21501C9DF833608EB10DF114 +:1094900033020131C9F8002007284FF00102CDE95D +:1094A0000F01C9F8042000F34C82024609F10809B3 +:1094B0000130049BEBB10DAB0231C9F80030072835 +:1094C0004FF00203CDE90F01C9F8043040F3538295 +:1094D000002900F0238318EE101A18EE900A0EAA45 +:1094E000FFF7AEFD00288CD1DDE90F210DF1440915 +:1094F000501C059B802B00F05A81009BABEB0306B0 +:10950000002E00F3BD81009BC9F8004019440728D4 +:10951000CDE90F01C9F8043040F34681002900F07D +:10952000898218EE101A18EE900A0EAAFFF788FD2D +:1095300000287FF466AF10990DF14409680705D53E +:10954000019BA3EB0804002C00F37E82DDE90123DC +:109550004245ACBF9B1843440293002940F0E08190 +:1095600000230F930DF14409E6E593899A053FF531 +:109570004FAF18EE104AA06DFEF78AFDA38947E7AA +:1095800015F0100340F03E8315F0400200F0FD831B +:10959000039A52F8046B03929846B6B2E8E656F87E +:1095A000043B0396E80600F10883690640F1028354 +:1095B00043F3C0381EB2434678E6039E56F8044B88 +:1095C0004FF000038DF83330002C00F0C583BBF161 +:1095D000FF3F00F049835A4600212046E7F7E0FEAE +:1095E000002800F02484031B009303964FF0000B27 +:1095F00076E6039E4FF000038DF833304FF00108FC +:1096000056F8043B8DF884300396CDF8008021ACE9 +:1096100025E700F0DBFD60E5039B53F8042B019286 +:10962000002A80F2BA82019A0393524201923B7857 +:1096300045F004059FE53B786C2B03BF7B7845F034 +:109640002005013745F0100595E53B78682B03BFF1 +:109650007B7845F40075013745F040058BE545F012 +:10966000100A1AF0200800F06E82039E073626F0DA +:1096700007063346D6F8048053F8086B039301239A +:1096800079E63B788DF8334075E5039B53F8046B1E +:10969000039330238DF8343078238DF83530C24B66 +:1096A000069345F0020A4FF00008022363E6AE0677 +:1096B00000F19E82EC0600F14783680600F1A48366 +:1096C000A90540F14183039E029A56F8043B039694 +:1096D0001A7031E53B7845F001054CE59DF83330D3 +:1096E000002B7FF4CEAD20238DF833303B7842E55C +:1096F0003B7845F080053EE5394611F8013B2A2BC1 +:1097000000F0C483A3F13002092A0F464FF0000B8A +:109710003FF632AD17F8013B0BEB8B0B02EB4B0B1B +:10972000A3F13002092AF5D926E5AA46012B3FF418 +:10973000CAAD022B3AAC12D1069A06F00F033609D5 +:10974000D35C04F8013D46EA08764FEA181856EA59 +:109750000803F2D13AAB1B1B55460093C0E506F057 +:109760000703F60846EA48764FEAD808303356EA47 +:109770000801224604F8013DF1D11AF0010FE9D0A9 +:10978000302BE7D03023023A04F8013C3AAB9B1A65 +:10979000554600931446A3E50099119401231291B4 +:1097A00010910F930DF1440909F10809C6E6019BD8 +:1097B000A3EB0806002E7FF7A0AE102E40F36283C5 +:1097C000DFF8E8A15346CDE90445BA4618EE904AC1 +:1097D00018EE105A084696461F4607E00EF1020C96 +:1097E00009F108099646103E102E1FDD0EF1010208 +:1097F00010301023072ACDE90F20C9F80070C9F8EE +:109800000430EBDD0EAA002800F0958029462046A2 +:109810000DF14409FFF714FC00287FF4F2ADDDE9F7 +:109820000FE0103E102E0EF1010CDFDCDDE90445E7 +:109830003B46014657469A463144BCF1070FCDE9F5 +:109840000FC1C9F800A0C9F8046040F3AD81002938 +:1098500000F0CA8218EE101A18EE900A0EAAFFF74E +:10986000EFFB00287FF4CDAD009BDDE90F21ABEBD2 +:109870000306002E02F101000DF144097FF743AE0B +:10988000102EDFF828A137DD5346CDE90445BA464E +:1098900018EE904A18EE105A4FF0100B08469446F6 +:1098A0001F4607E00CF1020E09F108099446103E2C +:1098B000102E1ADD0CF101021030072AC9E9007BD5 +:1098C000CDE90F20EEDD0EAA20B3294620460DF18A +:1098D0004409FFF7B5FB00287FF493ADDDE90FC025 +:1098E000103E102E0CF1010EE4DCDDE904453B4690 +:1098F0000146574670469A4631440728CDE90F0184 +:10990000C9F800A0C9F8046000F3F28009F1080961 +:109910000130F8E54FF0010E84460DF14409C6E729 +:1099200018EE101A18EE900A0EAAFFF789FB00280D +:109930003FF416AE65E54FF0010C86460DF1440983 +:1099400051E7002900F0E78018EE101A18EE900A8F +:109950000EAAFFF775FB00287FF453ADDDE90F2158 +:109960000DF14409501CA4E502210DAB1291119395 +:1099700001200DF14409024609F10809501CB8E51F +:10998000102E40F35A82DDE90FC1DFF824A0CDF894 +:1099900028B00B95A34618EE105A5446102318EE23 +:1099A00090AA08460EE000BF3CF801083CFB010805 +:1099B0002CFB01080CF1020E09F108099446103E37 +:1099C000102E1CDD0CF101021030072AC9E90043FA +:1099D000CDE90F20EEDD0EAA30B3294650460DF139 +:1099E0004409FFF72DFB00287FF40BADDDE90FC024 +:1099F000103E102E0CF1010E4FF01003E2DCA246D7 +:109A00000B9D5C46DDF828B0014672463144072ABA +:109A1000CDE90F21C9F800A0C9F8046000F3AB80BC +:109A200009F10809501C2FE584464FF0010E0DF195 +:109A30004409C4E76C070F9152D5019BA3EB0804BE +:109A4000002C4DDD0DF14409102C40F30882DFF8A5 +:109A50005CA40F9A0B46BB464946574618EE109A2F +:109A600018EE90AA102505E0901C08313246103CF3 +:109A7000102C18DD561C1033072EC1E90075CDE9F6 +:109A80000F63F1DD0EAA3BB349465046FFF7D8FA03 +:109A900000287FF4B6ACDDE90F23103C102C02F156 +:109AA000010011A9E6DC8946BA4619465F46214401 +:109AB0000728C9E900A4CDE90F017FF747AD79B1C7 +:109AC00018EE101A18EE900A0EAAFFF7B9FA00283D +:109AD0007FF497AC109939E501201A4611A9C6E721 +:109AE000DDE901234245ACBF9B184344029337E5AF +:109AF00000293FF451AE18EE101A18EE900A0EAA83 +:109B0000FFF79EFA00287FF47CAC0F981099013083 +:109B10000DF14409F7E4049B002B79D101200A469A +:109B20000DF14409E5E40F920DF1440951E4BBF154 +:109B3000000F7FF4CDAB55464FF0000BCDF800B0D1 +:109B40003AACFFF7CDBB1AF010033CD11AF040023B +:109B500000F00C81039A52F8046B03929846B6B257 +:109B6000012308E42D2376428DF8333068EB480852 +:109B7000AA46012303E400297FD018EE101A18EE3C +:109B8000900A0EAAFFF75CFA00287FF43AACDDE9F0 +:109B90000F210DF14409501C76E403933B78FFF745 +:109BA000EABA3AACFFF79CBB09F108090CF10100D5 +:109BB0006246A2E4AA0500F12F814FEAE3781E462F +:109BC0004346FFF773BB039B53F8046B03930123D6 +:109BD000FFF7D1BB079B002B3FF453AB079B1B78D0 +:109BE000002B3FF44EAB3B7845F48065FFF7C3BADA +:109BF000DDE9021656F8042B0396CB17C2E90013D1 +:109C0000FFF79ABA039B53F8046B0393FFF7B0BBBB +:109C100002210DAB129111930DF14409ACE6A04A5B +:109C2000069215F0200836D0039E073626F0070668 +:109C30003246D6F8048052F8086B0392EA0709D539 +:109C400056EA080206D08DF83530302345F002057B +:109C50008DF8343025F4806A0223FFF78CBBAA46C6 +:109C6000FFE4904A0692DCE720460396E7F728FBDC +:109C70004FF0000B0090FFF733BB9DF83320002A14 +:109C800000F0B88001200DF13302129011920DF115 +:109C90004409014609E415F0100242D0039A52F833 +:109CA000046B0392CAE70AF48063CDF800B0CDF8E4 +:109CB0001090BB46DDF81C9000253AAC1F4609E029 +:109CC00030464146E6F76AFF0A2E78F100031BD3BF +:109CD00006468846304641460A220023E6F75EFFE4 +:109CE0001146303104F8011C0A220023013C0135E1 +:109CF000002FE5D099F80010A942E1D1FF2DDFD067 +:109D00000A2E78F100035BD23AAB1B1BCDF81C90F6 +:109D10005F46DDF81090DDF800B000935546FFF780 +:109D2000DFBA15F040013ED0039951F8046B03915E +:109D30009046B6B282E7AA46FFF7C5BA012BAA46FB +:109D40007FF4F7ACFFF7C4BA039E029A56F8043BBF +:109D50001A600396FFF7F0B95B46062B28BF06236F +:109D6000514C009303969846FFF779BB039B1AF476 +:109D7000007814BF53F8046B53F8046B03931CBFB3 +:109D80009046F6B20123FFF7F6BA039B15F400786C +:109D900014BF53F8046B53F8046B03931CBF904635 +:109DA000F6B2FFF7E5BA039A15F4007814BF52F83B +:109DB000046B52F8046B03921CBF8846F6B23DE771 +:109DC000099B0899E41A1A462046FEF751FD99F8B6 +:109DD00001300BB109F10109304641460A22002346 +:109DE0000025E6F7DBFE73E701200A460DF1440982 +:109DF000FFF783BB049B002B7FF4B6AD0A4601201E +:109E00000DF14409FFF779BB039E029A56F8043B13 +:109E100003961A80FFF790B943F3C0185EB2434629 +:109E2000FFF744BA886DFEF733F9FFF784BACDF82F +:109E300000B003968346FFF753BA0F9A1099DFF8E4 +:109E40006CA00132E2E518EE101A18EE900A0EAA84 +:109E5000FFF7F6F800283FF4D2AAFFF7D2BA0F981E +:109E6000DFF848A0013022E66B6EDB0705D4AB8932 +:109E70009F0502D4A86DFEF70BF94FF0FF33029354 +:109E8000FFF7C9BADFF828A08446D5E4039A7B78A7 +:109E90000F4652F8041B039241EAE17BFFF76BB9CE +:109EA00050F801083CF8010864F801082CFB01088F +:109EB0003CFB010870B50C468989ADF58E6D21F02B +:109EC0000201ADF81410616E1B91E189ADF8161016 +:109ED000E1690991616A0B911CA9029106914FF405 +:109EE000806106460491079118A80021CDE900324F +:109EF0000891FEF7C7F8DDE9003202A93046FFF706 +:109F0000DBF8051E07DB02A9304600F02BF900281C +:109F100018BF4FF0FF35BDF814305B0603D5A38999 +:109F200043F04003A3811898FEF7AEF828460DF5DC +:109F30008E6D70BD49B1FF2A02D80A7001207047AA +:109F40008A2303604FF0FF3070470846704700BF18 +:109F500038B5334B1B6805460C460BB19A6B12B3F0 +:109F6000B4F90C3018079AB225D5216900292DD0F3 +:109F700012F0010007D00020A06060694042A0619B +:109F800039B1002038BD950758BF6069A06000292D +:109F9000F7D1120658BF0846F4D543F04003A38119 +:109FA0004FF0FF3038BD184600F010F9B4F90C300E +:109FB00018079AB2D9D4D1062AD5520714D42169E8 +:109FC00043F00803A3819AB20029D1D102F4207092 +:109FD000B0F5007FCCD02146284600F0ADFBB4F9A7 +:109FE0000C3021699AB2C3E7216B51B104F14002F0 +:109FF000914204D02846FDF73BFFB4F90C30002213 +:10A00000226321690022C4E9001223F02403D7E768 +:10A01000092243F040032A604FF0FF30A38138BD8E +:10A020005406002008B5062000F0F6FB0120F0F7EA +:10A0300069FF00BFB1F90C202DE9F0410C46110772 +:10A04000804647D4636842F40062002BA2815EDD43 +:10A05000A56A002D58D00023D8F80060C8F8003059 +:10A0600093B212F4805256D10123E1694046A847C9 +:10A07000431C67D0A389A56A5F0705D56368C01A2A +:10A08000236B0BB1E36BC01AE16902460023404623 +:10A09000A847411C41D1D8F80030002B3DD01D2BE2 +:10A0A00001D0162B56D1A3892269226023F40063C4 +:10A0B00000216160A381216BC8F8006021B304F125 +:10A0C0004003994202D04046FDF7D2FE00202063B3 +:10A0D000BDE8F0812669BEB193B2256826609A0773 +:10A0E0000CBF63690023AD1BA3600BE02B46324617 +:10A0F000E169676A4046B847B0F1000CA5EB0C0572 +:10A10000664417DD002DF1DC0020BDE8F081E36B33 +:10A11000002B9DDCF8E7206DAEE7B4F90C30226926 +:10A12000226023F40063A3810022DB046260C2D5B5 +:10A130002065C0E7A38943F040034FF0FF30A381BF +:10A14000BDE8F081D8F80030002B93D01D2B06D04D +:10A15000162B04D0A38943F04003A381D5E7C8F8A8 +:10A160000060D1E738B50C46054608B1836BA3B152 +:10A17000B4F90C00B8B1636EDB0701D4810515D5C5 +:10A1800028462146FFF756FF636EDA07054602D4DC +:10A19000A3899B050ED5284638BD00F017F8B4F901 +:10A1A0000C000028E7D10546284638BDA06DFDF714 +:10A1B0006DFFE5E7A06DFDF76BFF284638BD00BFDA +:10A1C000014900F095BA00BF6DAA01082DE9F047DA +:10A1D00082463948FDF75AFFDAF83840002C66D13C +:10A1E000DAF80450354ACAF83C200323CAE9B843D8 +:10A1F000DFF8DC90DFF8DC80314F324E04230AF5C3 +:10A200003B72CAF8E8222146C5E90243C5E9004489 +:10A21000C5E904446C660822AC6105F15C00FAF7FC +:10A22000ADFEC5E90759C5E90987EE6205F1580099 +:10A23000FDF728FFDAF80850234BEB602146C5E90B +:10A240000044C5E904446C66AC60AC61082205F1C9 +:10A250005C00FAF793FEC5E90759C5E90987EE6284 +:10A2600005F15800FDF70EFFDAF80C50174BEB60C4 +:10A270002146C5E90044C5E904446C66AC60AC61A4 +:10A28000082205F15C00FAF779FE05F15800C5E9EE +:10A290000759C5E90A76C5F82480FDF7F3FE0123C6 +:10A2A000CAF838300448BDE8F047FDF7F1BEBDE814 +:10A2B000F0470148FDF7ECBEDC9D0020C1A101087C +:10A2C00009A9010829A901080900010012000200DA +:10A2D000A5A80108C9A801080148FDF7D7BE00BF1D +:10A2E000D89D00200148FDF7D3BE00BFD89D0020B7 +:10A2F0002DE9F04782B0824688461446FEF71CFCE2 +:10A30000012803D108F1FF33FE2B36D9424604F170 +:10A310005C0301A9504600F063FB421C064632D0A4 +:10A3200030B39DF804C00DF10509002509E023684C +:10A330005A1C226083F800C00135B54218D219F8C2 +:10A3400001CBA368013B002BA360F0DAA769BB42F5 +:10A3500061462246504602DBBCF10A0FE7D100F00D +:10A36000E7FA431CE8D10646304602B0BDE8F08764 +:10A370004646304602B0BDE8F0875FFA88FC8DF8AB +:10A3800004C00646CFE7A389304643F04003A381CB +:10A3900002B0BDE8F08700BF30B5536E13F0010F77 +:10A3A000B2F90C30144683B005469AB201D1980533 +:10A3B0001CD5900406D4626E43F4005342F400525C +:10A3C000A381626622462846FFF792FF636EDA0792 +:10A3D000054602D4A3899B0502D5284603B030BDAB +:10A3E000A06DFDF755FE284603B030BDA06D01916C +:10A3F000FDF74CFEB4F90C3001999AB2D9E700BFD1 +:10A400009368002B00F085802DE9F04FB1F90C30F6 +:10A410000C461907804683B0174698B225D52369A4 +:10A420001BB310F002033D682DD04FF0000ADFF897 +:10A43000BCB25646B9465E453346524628BF5B46D7 +:10A440004046002E52D0E169676AB847002856DDC1 +:10A45000D9F808301B1A8244361AC9F80830002B84 +:10A46000E9D1002003B0BDE8F08F21464046FFF758 +:10A470006FFD002840F03681B4F90C303D6898B289 +:10A4800010F00203D1D110F0010944D14E460097DB +:10A4900046B38205D4F808B040F18380B3455A46EC +:10A4A00000F2B28010F4906F40F0BF8020680192FB +:10A4B0004946FEF75DFBA368019AA3EB0B012368F5 +:10A4C000A1601344B24623600026009B9868A0EB6D +:10A4D0000A00D14498600028C3D0B4F90C0080B2BF +:10A4E000002ED6D1D5E900960835D1E7D5E900A6EA +:10A4F0000835A0E721464046FFF734FE80B3B4F9A3 +:10A500000C3043F040034FF0FF30A38103B0BDE8AF +:10A51000F08F002070471E46AA46994618461D46F1 +:10A52000009756B388B34A46D4E904132068B24270 +:10A5300028BF3246884205D9A16803EB010B5A4572 +:10A5400000F3A680934263DCE169676A2A464046CD +:10A55000B847B0F1000BD2DDB9EB0B09CAD001202E +:10A56000009A9368A3EB0B035D44A6EB0B06936084 +:10A57000002B3FF476AF002ED4D10AF1080353E943 +:10A5800002569A460833002EF9D032460A21284650 +:10A59000E6F706FF002800F09C800130A0EB0509DB +:10A5A000C1E720682369984216D86369B34213D87B +:10A5B0006FF00042B24228BF3246E16992FBF3F2EB +:10A5C000676A02FB03F340464A46B847B0F1000A07 +:10A5D00095DDA6EB0A0678E7B345DA4628BFB24612 +:10A5E00052464946FEF7C4FAA3682268A3EB0A0361 +:10A5F0005244A3602260002BEBD121464046FFF776 +:10A60000B1FD0028E5D07AE72068B34632464EE730 +:10A6100029460192FEF7ACFA019AA3689B1AA3603F +:10A62000236813442360934696E723682169A3EBCC +:10A63000010B636903EB430A0AEBDA7A0BF10103BE +:10A640004FEA6A0A33445345524684BF9A465246FB +:10A6500043052CD511464046FAF7E0F900283BD0D7 +:10A660005A4621690190E6F71BFCA289019B22F45E +:10A67000906242F08002A28103EB0B002361AAEBFF +:10A680000B03C4F814A0A3602060B34632460EE763 +:10A6900029465A46FEF76CFA23685B44236021463C +:10A6A0004046FFF75FFD00283FF456AF27E74046DE +:10A6B000FEF7DAFA03460028DED121694046FDF7AD +:10A6C000D7FBB4F90C300C2223F08003C8F800202B +:10A6D00017E7721C914627E70C22B4F90C30C8F832 +:10A6E00000200EE74FF0FF30BCE600BF00FCFF7F0C +:10A6F0002DE9F8430746884600F538764FF0000903 +:10A70000D6E90154013D11D4A389012B05F1FF3590 +:10A7100008D9B4F90E300133214603D03846C0477A +:10A7200049EA00096B1C04F16804EDD13668002E7B +:10A73000E6D14846BDE8F8832DE9F0418B890C4607 +:10A74000990796B008D504F143030122C4E9043205 +:10A75000236016B0BDE8F081B4F90E10002906465A +:10A7600027DB6A4600F0E8F9002821DB019D05F4AB +:10A770007045A5F50055B5FA85F54FF480686D096B +:10A780004FF4006741463046FAF748F9B4F90C3007 +:10A79000F0B1204AF26343F08003C4F81480A3812F +:10A7A0002060206135BB3B43A38116B0BDE8F0813A +:10A7B000A38913F0800519D04FF040084146304678 +:10A7C000FAF72CF90025B4F90C302F460028E0D117 +:10A7D0009A05BED423F0030304F1430243F00203BD +:10A7E0000121C4E90421A3812260B2E74FF480680B +:10A7F0002F46C7E7B4F90E10304600F0B3F910B990 +:10A80000B4F90C30CFE7A38923F0030343F001032D +:10A810001BB2C8E7C1A1010838B5154B1F281D6838 +:10A8200020D8D5F8DC22044662B152F820304BB172 +:10A83000012B15D0591C0FD0002542F82050984705 +:10A84000284638BD284600F02BF822460146284607 +:10A85000BDE8384000F00EB816232B60012038BD4B +:10A86000002038BD16232B604FF0FF3038BD00BFED +:10A870005406002070B50C46084D034600262046BD +:10A8800011461C462E60F0F735FB431C00D070BD0E +:10A890002B68002BFBD0236070BD00BFE09D002023 +:10A8A000F0F726BB10B50C46B1F90E1000F082F996 +:10A8B000002803DB236D0344236510BDA38923F423 +:10A8C0008053A38110BD00BF2DE9F0410C46B1F9C2 +:10A8D0000C101F46CB05054616460BD421F48051BB +:10A8E000A1813B46B4F90E1032462846BDE8F0413E +:10A8F00000F094B8B4F90E100223002200F044F9DD +:10A90000B4F90C10EAE700BF10B50C46B1F90E100F +:10A9100000F03AF9A389421C0EBF23F4805343F49C +:10A9200080532065A38110BDB1F90E1000F08CB8E2 +:10A93000F8B50D461446064610B1836B002B43D084 +:10A94000B4F90C20A369A360170790B21BD5236943 +:10A95000CBB1EDB281042F4622D522686169D31AAA +:10A96000994229DD0133A1680139A160511C2160A0 +:10A97000157062699A422AD0A389DB0701D50A2D96 +:10A9800025D03846F8BD21463046FFF7E1FA20BB16 +:10A99000B4F90C20236990B2EDB281042F46DCD4C7 +:10A9A00042F40052A281626E616922F40052626632 +:10A9B0002268D31A9942D5DC21463046FFF7D2FBF4 +:10A9C00058B922680123CEE7FFF700FCB8E721461B +:10A9D0003046FFF7C7FB0028D3D04FF0FF37D0E752 +:10A9E00070B5054684B01C4639B10B4ED6F8E06010 +:10A9F000B047431C09D004B070BD0A460649D1F8DF +:10AA0000E06001A9B047431CF5D100228A232260EF +:10AA10002B6004B070BD00BF940E002038B50C460A +:10AA2000084D8446114620461A4600232B60644692 +:10AA3000F0F77EFA431C00D038BD2B68002BFBD00A +:10AA4000236038BDE09D002038B5074D0022044644 +:10AA500008462A60F0F77AFA431C00D038BD2B680C +:10AA6000002BFBD0236038BDE09D002070B500298D +:10AA70004BD006460C4610B1836B002B48D0636E5A +:10AA8000D80734D5B4F90C30002B3ED021463046DF +:10AA9000FFF7D0FAE36A054633B1E16930469847DB +:10AAA0000028B8BF4FF0FF35A3891A063BD4216BAD +:10AAB00041B104F14003994202D03046FDF7D8F984 +:10AAC00000232363616C21B13046FDF7D1F90023E7 +:10AAD0006364FFF701FC636E0022DB07A28127D5C8 +:10AAE000A06DFDF7D1FAFFF7FDFB284670BDA389E5 +:10AAF0009905CBD4A06DFDF7C9FAB4F90C30002B41 +:10AB0000C4D1656E15F0010508D00025284670BD3A +:10AB1000FFF75CFB636ED807B4D4E8E7A06DFDF7E0 +:10AB2000B7FA284670BD21693046FDF7A1F9BEE7A6 +:10AB3000A06DFDF7ADFAD3E770B50C46084D03469E +:10AB40000026204611461C462E60F0F702FA431CF0 +:10AB500000D070BD2B68002BFBD0236070BD00BF00 +:10AB6000E09D002038B5074D0022044608462A60C3 +:10AB7000F0F7F4F9431C00D038BD2B68002BFBD054 +:10AB8000236038BDE09D002038B50C46084D844652 +:10AB9000114620461A4600232B606446F0F7E0F980 +:10ABA000431C00D038BD2B68002BFBD0236038BD80 +:10ABB000E09D002038B50C46084D844611462046DD +:10ABC0001A4600232B606446F0F7A2F9431C00D01C +:10ABD00038BD2B68002BFBD0236038BDE09D0020E2 +:10ABE00051EC100B204A21F00043934220DD00B5C8 +:10ABF0001E4A934285B009DD10EE102A0B46E5F798 +:10AC000003FB41EC100B05B05DF804FB684600F057 +:10AC100043FC00F0030001289DED021B9DED000B9D +:10AC20000AD0022816D090B1012002F0E1FAEAE73A +:10AC30009FED0B1B01F074BD02F0DAFA53EC102B00 +:10AC400003F1004300EE903A05B05DF804FB01F01B +:10AC500067FDD8E701F064FDF0E700BFAFF30080C7 +:10AC60000000000000000000FB21E93FFFFFEF7F34 +:10AC700051EC100B204A21F00043934227DD00B530 +:10AC80001E4A934285B009DD10EE102A0B46E5F707 +:10AC9000BBFA41EC100B05B05DF804FB684600F010 +:10ACA000FBFB00F0030001289DED021B9DED000B56 +:10ACB00012D0022817D090B101F032FD53EC102BC6 +:10ACC00003F1004300EE903A05B05DF804FB9FED00 +:10ACD000081B002002F08CBA01F022FDDBE7012006 +:10ACE00002F086FAD7E7012002F082FAE6E700BF19 +:10ACF0000000000000000000FB21E93FFFFFEF7FA4 +:10AD000010EE103A184A23F0004393421BDDB3F1D2 +:10AD1000FF4F02DB30EE400A704700B583B0684653 +:10AD200001F0C6FB00F003000128DDED010A9DEDF6 +:10AD3000000A0CD0022812D070B1012002F0D2FE1D +:10AD400003B05DF804FBDFED090A02F00FBB02F06F +:10AD5000C9FEB1EE400AF3E702F008FBF0E702F0AB +:10AD600005FBB1EE400AEBE7D80F493F00000000B9 +:10AD700010EE103A194A23F0004393421CDDB3F160 +:10AD8000FF4F02DB30EE400A704700B583B06846E3 +:10AD900001F08EFB00F003000128DDED010A9DEDBE +:10ADA000000A0ED0022813D070B102F0DFFAB1EE23 +:10ADB000400A03B05DF804FBDFED090A002002F051 +:10ADC00091BE02F0D3FAF4E7012002F08BFEF0E727 +:10ADD000012002F087FEB1EE400AEAE7D80F493FB2 +:10ADE0000000000010EE103AC3F3C7527F3A162A53 +:10ADF00010EE101A0ADC002AA5BF094B134103F01C +:10AE0000004321EA030300EE103A7047802A06BF90 +:10AE100007EE903A37EEA70A00EE103A704700BFEF +:10AE2000FFFF7F000000000038B52DED028B55ECD0 +:10AE3000104B00F015F922462B4620462946B0EE6D +:10AE4000408AF0EE608AE6F7FBFA98B90022002308 +:10AE500020462946E5F720FE60B90022002320465F +:10AE60002946E5F7F1FD60B1F9F790FD9FED0C8BF8 +:10AE700022230360B0EE480AF0EE680ABDEC028BB4 +:10AE800038BDF9F783FDBDEC028B034621221A6021 +:10AE90000548BDE8384002F023BF00BFAFF3008093 +:10AEA000000000000000F0FFE8FA010808B52DEDF1 +:10AEB000028BB0EE408A00F015FDB4EE488AF1EE48 +:10AEC00010FAF0EE408A0AD6B0EE480A03F07CF899 +:10AED000F7EE007AB4EEE70AF1EE10FA04DCB0EE19 +:10AEE000680ABDEC028B08BDF9F750FDBDEC028B82 +:10AEF000034621221A600248BDE8084003F0C0B8AA +:10AF0000E8FA010808B52DED028BB0EE408A00F09A +:10AF10000DFEB4EE488AF1EE10FAF0EE408A0AD641 +:10AF2000B0EE480A03F050F8F7EE007AB4EEE70A04 +:10AF3000F1EE10FA04DCB0EE680ABDEC028B08BD3D +:10AF4000F9F724FDBDEC028B034621221A6002486A +:10AF5000BDE8084003F094B8E8FA010800F0ECBE40 +:10AF600008B52DED048BB0EE608AB0EE409A00F08B +:10AF70008BFFB4EE488AF1EE10FAF0EE408A0BD661 +:10AF8000B5EE409AF1EE10FA17D1B5EE408AF1EE27 +:10AF900010FA06D1F7EE008AB0EE680ABDEC048B19 +:10AFA00008BDB0EE480A03F017F80028F4D0B5EE5B +:10AFB000C08AF1EE10FAEFD525E003F00DF888B164 +:10AFC000F5EE408AF1EE10FAE6D1B0EE490A03F050 +:10AFD00003F80028E0D0B0EE480A02F0FDFF002898 +:10AFE000DAD010E0B0EE490A02F0F6FF0028E7D010 +:10AFF000B0EE480A02F0F0FF0028E1D0F4EE688AD3 +:10B00000F1EE10FA04D6F9F7C1FC22230360C3E77E +:10B01000F9F7BCFC21230360BEE700BF08B52DEDA6 +:10B02000028BB0EE408A01F075FBB4EE488AF1EE77 +:10B0300010FA06D6DFED098AB4EEE88AF1EE10FACE +:10B0400002D4BDEC028B08BDF9F7A0FC88EEA80A7B +:10B05000BDEC028B2123036008BD00BF000000008F +:10B060002DE9F04F51EC100B2DED028BB1F5801F47 +:10B0700085B00F4658DA21F00043034310EE102A42 +:10B0800000F0FC800029C0F23C81E14B0022E5F792 +:10B0900073FAE04B0F469F426FF0350249DC3E15D4 +:10B0A000C7F3130707F51523A6F2FF3603F66473FB +:10B0B000164403F4801306EB135683F07F5383F496 +:10B0C000401343EA07010022D34BE5F79DF8BB1C70 +:10B0D000C3F31303022B82468B4635DC0022002388 +:10B0E000E5F7B2FC002800F0D680002E00F0608169 +:10B0F0003046E5F7D7F9B0A3D3E9002306460F465B +:10B10000E5F73AFAAEA3D3E9002304460D463046EC +:10B110003946E5F731FA02460B4620462946E5F75F +:10B1200075F841EC100B0AE0BA4B9F424FF0000259 +:10B13000B5DD02460B46E5F769F841EC100B05B0AA +:10B14000BDEC028BBDE8F08FA7F5C223A3F27A43D2 +:10B15000019300224FF08043E5F758F802460B4672 +:10B1600050465946E5F732FB41EC180B3046E5F7FF +:10B1700099F953EC182BCDE9020151EC180BE5F7C6 +:10B18000FBF902460B4680468946E5F7F5F98EA3A2 +:10B19000D3E9002304460D46E5F7EEF98CA3D3E985 +:10B1A0000023E5F733F822462B46E5F7E5F98AA3B5 +:10B1B000D3E90023E5F72AF822462B46E5F7DCF928 +:10B1C00087A3D3E90023E5F721F842464B46E5F78C +:10B1D000D3F985A3D3E90023804689462046294632 +:10B1E000E5F7CAF982A3D3E90023E5F70FF8224671 +:10B1F0002B46E5F7C1F980A3D3E90023E5F706F86C +:10B2000022462B46E5F7B8F90B460246494640462A +:10B21000E4F7FCFFC7F5D727019B51371F43002FE9 +:10B22000804689465FDD7D4B002250465946E5F752 +:10B23000A3F952465B46E5F79FF904460D46002EFA +:10B2400069D122462B4640464946E4F7DFFF53ECDE +:10B25000182BE5F791F902460B4620462946E4F7FC +:10B26000D3FF02460B4650465946E4F7CDFF41EC6A +:10B27000100B05B0BDEC028BBDE8F08F002200235F +:10B2800067490020E5F7A2FA41EC100B05B0BDECD0 +:10B29000028BBDE8F08F5AA3D3E9002350465946EC +:10B2A000E5F76AF902460B4600205C49E4F7ACFF7B +:10B2B000524604460D465B4650465946E5F75CF952 +:10B2C00002460B4620462946E5F756F904460D4648 +:10B2D000002E59D102460B4650465946E4F794FFDA +:10B2E00041EC100B2BE7002E40F09C8002460B46F1 +:10B2F00050465946E4F788FF53EC182BE5F73CF924 +:10B30000AFE70B46E4F780FF00220023E5F75EFA83 +:10B3100041EC100B13E728A3D3E90023DDE9020178 +:10B32000E5F72AF922462B4606460F46404649468F +:10B33000E4F76CFF53EC182BE5F71EF920A3D3E9D3 +:10B34000002380468946DDE90201E5F715F902464A +:10B350000B4640464946E4F759FF02460B46204655 +:10B360002946E4F751FF52465B46E4F74DFF02469B +:10B370000B4630463946E4F747FF41EC100B05B069 +:10B38000BDEC028BBDE8F08F3046E5F78BF80AA3E1 +:10B39000D3E9002380468946E5F7EEF808A3D3E910 +:10B3A000002306460F4640464946E5F7E5F8D4E750 +:10B3B0009FED150BC3E600BF0000E0FE422EE63F06 +:10B3C000763C7935EF39EA3D44523EDF12F1C23F17 +:10B3D000DE03CB966446C73F599322942449D23F5B +:10B3E000935555555555E53F9FC678D0099AC33FAB +:10B3F000AF788E1DC571CC3F04FA97999999D93FC2 +:10B40000555555555555D53F00000000000000002A +:10B4100000005043FFFFEF7F0000F03F0000E03FDF +:10B42000000050C318A3D3E90023DDE90201E5F7CA +:10B43000A3F842464B4604460D4650465946E4F7AB +:10B44000E3FE53EC182BE5F797F811A3D3E900239B +:10B4500006460F46DDE90201E5F78EF802460B4687 +:10B4600030463946E4F7D0FE52465B46E4F7CCFE60 +:10B4700002460B4620462946E4F7C6FE41EC100B77 +:10B480005DE600BFAFF300800000E0FE422EE63F25 +:10B49000763C7935EF39EA3D2DE9F04F53EC102B2E +:10B4A0002DED048B904923F000458D428BB004466E +:10B4B00040F38C808D498D421F462BDC002F1946AE +:10B4C00010EE100A7EA3D3E9002340F3B681E4F71F +:10B4D0009BFE874B9D428046894600F08F807AA371 +:10B4E000D3E90023E4F790FE02460B46C4E90023AB +:10B4F00040464946E4F788FE73A3D3E90023E4F706 +:10B5000083FEC4E90201012630460BB0BDEC048B7A +:10B51000BDE8F08F77498D4240F3928076498D42A5 +:10B5200061DC2E15A6F2164610EE100AA5EB0651A8 +:10B5300090468946E5F7BAFAE4F7B4FF02460B46AF +:10B5400040464946CDE90423E4F75EFE6B4B0022FA +:10B55000E5F712F889468046E5F7A8FA0546E4F7CC +:10B56000A1FF02460B4640464946CDE90623E4F7D3 +:10B570004BFE624B0022E4F7FFFF02460B46CDE98B +:10B58000082300220023E5F75FFA002800F053812A +:10B59000002D0CBF01230223594A0192022200927E +:10B5A0002146324604A801F0FBF9002F0646ABDA2B +:10B5B0006168226801F10043E168C4E90023A268E0 +:10B5C00001F10043C4E9022346429DE70020002127 +:10B5D0000026C4E90201304684ED000B0BB0BDEC3F +:10B5E000048BBDE8F08F10EE100A1946E4F70CFE4C +:10B5F0000026C4E90201C4E9000185E734A3D3E9C8 +:10B600000023E4F701FE34A3D3E9002380468946F2 +:10B61000E4F7FAFD02460B46C4E9002340464946DA +:10B62000E4F7F2FD2CA3D3E90023E4F7EDFD0126B6 +:10B63000C4E9020130460BB0BDEC048BBDE8F08FCD +:10B6400002F0C0FA59EC108B10EE100A24A3D3E9D3 +:10B6500000234946E4F790FF2A4B0022E4F7D6FD89 +:10B66000E5F724FA0646E4F71DFF02460B4643ECD5 +:10B67000182B13A3D3E90023B0EE489AF0EE689A92 +:10B68000E4F77AFF02460B4640464946E4F7BCFD24 +:10B690000DA3D3E9002382468B4651EC180BE4F747 +:10B6A0006BFF1F2E41EC180B30DC174B721E53F84A +:10B6B0002230AB422AD002460B469BE0AFF300801B +:10B6C00000004054FB21F93F3163621A61B4D03D60 +:10B6D0000000601A61B4D03D7370032E8A19A33B39 +:10B6E00083C8C96D305FE43FFB21E93F7BD902404D +:10B6F000FB21F93FFB213941FFFFEF7F0000704143 +:10B70000D0FC01080000E03F50FC01082B1503931A +:10B71000504653EC182B5946E4F776FDC1F30A5313 +:10B72000C3EB1555102D8046894669DD64A3D3E926 +:10B73000002351EC190BE4F71FFF8046894642466F +:10B740004B4650465946E4F75FFD02460B465046CD +:10B75000594692469B46E4F757FD42464B46E4F76E +:10B7600053FD59A3D3E900238046894651EC190BB8 +:10B77000E4F702FF42464B46E4F746FD02460B461D +:10B780005046594643EC182BE4F73EFD039AC1F3AB +:10B790000A53D31A312B8046894631DD4DA3D3E9B4 +:10B7A000002351EC190BE4F7E7FE80468946424638 +:10B7B0004B4650465946E4F727FD02460B46504695 +:10B7C000594692469B46E4F71FFD42464B46E4F736 +:10B7D0001BFD42A3D3E900238046894651EC190B97 +:10B7E000E4F7CAFE42464B46E4F70EFD02460B461E +:10B7F00043EC182B50465946E4F706FD804689462F +:10B8000042464B46C4E9008950465946E4F7FCFCE1 +:10B8100053EC182BE4F7F8FC002FC4E90201BFF643 +:10B8200073AE09F10043C4E9008301F10043C4E9A8 +:10B830000203764268E60323AEE6E4F7E7FC244B16 +:10B840009D428046894616D01BA3D3E90023E4F726 +:10B85000DDFC02460B46C4E9002340464946E4F7B6 +:10B86000D3FC15A3D3E90023E4F7D0FC4FF0FF3657 +:10B87000C4E9020148E612A3D3E90023E4F7C6FCB9 +:10B8800011A3D3E9002380468946E4F7BFFC0246B2 +:10B890000B46C4E9002340464946E4F7B5FC0AA339 +:10B8A000D3E90023E4F7B2FC4FF0FF36C4E902010C +:10B8B0002AE600BFAFF300803163621A61B4D03D65 +:10B8C0000000601A61B4D03D7370032E8A19A33B47 +:10B8D000FB21F93F0000002E8A19A33BC149202516 +:10B8E0009A837B3908B510EE102A22F00043B3F199 +:10B8F0007E5F2DED028B12D00ADCB3F17C5F19DA8A +:10B90000B3F10C5F6CDCBDEC028B9FED770A08BDD8 +:10B9100070EE407A87EEA70ABDEC028B08BDBDEC45 +:10B92000028B9FED720ADFED727A002AD8BFB0EE6B +:10B93000670A08BD002AC0F29080F7EE008A38EE50 +:10B94000C00AB6EE008A20EE088AB0EE480A00F07F +:10B95000E1FEDFED687A9FED687A9FED686ADFEDC2 +:10B96000685ADFED686AA8EE277ADFED677AA7EEFE +:10B97000086AE8EE257AE6EE086ADFED645A9FED84 +:10B98000647AE7EE885AA6EE887ADFED627A10EEE6 +:10B99000103AE5EE887A23F47F6323F00F03B0EECC +:10B9A000476A9FED5D7AF0EE676AA6EE087A07EEC9 +:10B9B000903AB0EE486AE6EE888AA7EEE76A70EE43 +:10B9C000276A27EE088A86EE267AC8EE286ABDEC3A +:10B9D000028BA0EE267A37EE870A30EE000A08BD09 +:10B9E00020EE007ADFED437A9FED436ADFED436A94 +:10B9F0009FED435ADFED435AA7EE276ABDEC028B59 +:10BA0000E6EE076ADFED407A9FED406AE7EE057AE1 +:10BA1000E6EE875AA7EE876A9FED3D5ADFED3D7A45 +:10BA2000DFED3D6AA5EE875AE6EE077AE5EE076A96 +:10BA3000F7EE005AE7EE875A26EE877A9FED376ACF +:10BA4000DFED377AC7EE256AB0EE467AA0EE667A69 +:10BA500030EE470A37EEC00A08BDB7EE007A30EE86 +:10BA6000070AF6EE007A60EE277ADFED226A9FED94 +:10BA7000226ADFED224ADFED225A9FED225A9FED26 +:10BA8000268AA7EEA66ADFED206AE6EE274AE7EEF1 +:10BA9000A56ADFED1E5A9FED1E6AA4EEA75AE6EED8 +:10BAA000A75ADFED1C6AA5EE276AE5EEA76AA6EEA7 +:10BAB000278AA6EEA77A28EE278AF0EE478AB0EE0C +:10BAC000670A00F027FE88EE286ADFED167AB0EEEE +:10BAD000407AE7EE067A9FED140A77EE877AF0EE69 +:10BAE000006AA7EEE60A17E7DB0FC93F0000000077 +:10BAF000DB0F494008EF1138047F4F3A461124BD4F +:10BB00002EC69D3DA80A4E3E613330BF2D570140E1 +:10BB100090B0A6BE39D119C0ABAA2A3E6821A23383 +:10BB2000DA0FC93F6821A2B3DA0F494038B510EEE9 +:10BB3000105A25F00044B4F17E5F2DED048B00F027 +:10BB400085807ADCB4F17C5F0FDAB4F1485F80F273 +:10BB50009C80DFED697A70EE277AB7EE007AF4EE1A +:10BB6000C77AF1EE10FA00F38D8002F02DFAF7EEAD +:10BB7000007A37EEC00AB6EE008A20EE088A9FED02 +:10BB80005F7ADFED5F6A9FED5F6A9FED5F5ADFEDE1 +:10BB90005F5ADFED5F8AE8EE076A9FED5E7AA8EEF6 +:10BBA000067A9FED5D6AA6EE885AA7EE086A9FEDB9 +:10BBB0005B7ADFED5B6AE5EE085AA6EE087AE5EE01 +:10BBC000886AE7EE087AE6EE888AB0EE480AB0EEB8 +:10BBD000679A00F09FFD534B9C4268EE888A42DCD6 +:10BBE00010EE103A23F47F6323F00F0306EE903A31 +:10BBF000A6EEE68A70EE267A88EE895AC8EE274AC3 +:10BC00009FED497ADFED497AB0EE006AA4EEC67A7C +:10BC100030EE000AF0EE675AE6EEC65A90EE057A6C +:10BC200037EE657A37EEC77A002D0ADCBDEC048B5F +:10BC3000B1EE477AB0EE470A38BD70EE407A87EE33 +:10BC4000A77ABDEC048BB0EE470A38BD9FED367A7B +:10BC5000DFED377A20EE077ABDEC048BA0EE277A71 +:10BC6000B0EE470A38BD88EE896A9FED327ADFED83 +:10BC7000307AA0EE060AF0EE006AA0EE267A37EEE1 +:10BC8000C77AD1E7B0EE407ADBE760EE007A9FED4D +:10BC90001B7ADFED1B6A9FED1C6ADFED1A5A9FEDE0 +:10BCA0001B5AE7EE876ABDEC048BA6EEA76A9FEDF0 +:10BCB000197ADFED196AA7EEA57AA6EE275AE7EE04 +:10BCC000276ADFED175A9FED156A9FED117AE5EEB1 +:10BCD000275AA6EEA76AA5EEA77AF7EE006AE6EE67 +:10BCE000276A67EE277AB0EE407A87EEA66AA0EE62 +:10BCF000067AB0EE470A38BDCAF2497108EF11382A +:10BD0000047F4F3A2EC69D3D461124BDA80A4E3EE3 +:10BD1000ABAA2A3E613330BF2D57014039D119C03B +:10BD200090B0A6BE9999793F2EBD3BB3DB0F493F3A +:10BD3000DB0FC93F2EBD3B3310B582B0CDED010AFC +:10BD4000019B23F00042B2F1FF4FF0EE407A30DC6D +:10BD500010EE100A20F00041B1F1FF4F29DCB3F1E1 +:10BD60007E5F42D09C1704F0020444EAD07431B3E1 +:10BD70007AB3B2F1FF4F40D0B1F1FF4F29D08A1A08 +:10BD8000B2F1F45F4FEAE25134DA002B42DA3C318F +:10BD900040DA9FED340A012C4ED0022C43D064B11E +:10BDA0009FED317ADFED317A30EE070A30EE670A27 +:10BDB00003E09DED017A37EE270A02B010BD022C98 +:10BDC00010D09FED2B0A032C18BFB0EE670A02B00B +:10BDD00010BD9FED280ADFED287A0028B8BFB0EE2D +:10BDE000670AEAE79FED210AE7E702B0BDE81040E5 +:10BDF00002F010B89FED1F0ACDE7B1F1FF4F04F13B +:10BE0000FF3420D0022C26D81C4B03EB840494ED85 +:10BE1000000AD2E79DED017A87EE870A02F0D4F896 +:10BE200001F0F8FFB7E79FED107ADFED107A30EE02 +:10BE3000070A37EEC00AC0E710EE103A03F10043DC +:10BE400000EE103AB9E7022C08D80D4B03EB84043E +:10BE500094ED000AB1E79FED030AAEE79FED090AF2 +:10BE6000ABE700BF000000002EBDBB33DB0F494035 +:10BE7000DB0F49C0DB0FC93FDB0FC9BFE4FD010881 +:10BE8000D8FD0108DB0F493F2DE9F0412DED028B74 +:10BE900082B0CDED010A8DED000ADDE9004535F0F7 +:10BEA000004611D184F48004640014F5000F40F2C0 +:10BEB0001481DDED007A9DED017A37EE870A02B03C +:10BEC000BDEC028BBDE8F08124F00047B7F1FF4FD5 +:10BED000EFDCB6F1FF4F00F3F580002CC0F20481D7 +:10BEE0004FF00008B6F1FF4F00F01981B6F17E5F08 +:10BEF00000F02481B5F1804F00F00C81B5F17C5F3A +:10BF00009DED000A40F01F81002C80F2498102F073 +:10BF10005BF8B7F1FF4F00F02781002F00F021817F +:10BF2000B7F17E5F00F01781E20F013A58EA020391 +:10BF300000F03D81B6F19A4F40F360819F4B9F42E4 +:10BF400040F357829E4B9F4200F36082F7EE007AE7 +:10BF500030EE670A9FED9B6ADFED9B5AF5EE007AA3 +:10BF6000A0EE676AF6EE006AE6EE406A20EE007A1E +:10BF7000DFED967A9FED966A27EE267A67EEC77A0E +:10BF8000E0EE257AF0EE676AE0EE066A16EE903A89 +:10BF900023F47F6323F00F0307EE103AA0EE467AF6 +:10BFA00006EE903A77EEC77A25F47F6525F00F0507 +:10BFB0009DED017A06EE105A67EE877A37EE466AF3 +:10BFC00007EE105AE6EE267A08F1FF3858EA020327 +:10BFD00026EE877AB7EE000A77EE876ABFEE006A30 +:10BFE00016EE903A0CBFB0EE468AB0EE408A002BB7 +:10BFF00023F0004240F3C581B2F1864F00F3248262 +:10C0000000F01782B2F17C5F00F3C7810022104676 +:10C0100023F47F6323F00F0306EE103ADFED6D6A21 +:10C020009FED6D5A9FED6D2A9FED6D3ADFED6D3AF4 +:10C030009FED6D4ADFED6D4A36EE477AF0EE002A4D +:10C0400077EEC77A26EE267ADFED696AA7EEA67A42 +:10C05000F0EE476AE6EE056A66EEA65AF0EE667AFC +:10C06000A5EE823AE6EE457AB0EE636AA3EE256A63 +:10C0700077EE677AB0EE447AA6EE257AB0EE646A7F +:10C08000A7EE256AB0EE667AA6EE657AE6EEA77AA6 +:10C0900066EE875A37EE626AB7EE005A85EE867A08 +:10C0A00077EE677A77EEE66A35EE660A10EE103ABA +:10C0B0001344B3F5000FC0F2A68100EE103A20EE53 +:10C0C000080AFCE6B4F17E5F7FF4F3AE85F48005E8 +:10C0D0006D0015F5000F3FF6ECAEB7EE000A02B0AA +:10C0E000BDEC028BBDE8F081B6F1974F0FDAB6F1E7 +:10C0F0007E5F09DBF315C3F1960346FA03F202FAF9 +:10C1000003F3B34200F038814FF00008EEE64FF041 +:10C110000208E7E6DDED007A27EEA70ACFE6B7F1E1 +:10C120007E5FDAD02BDD9FED330ADDED017A002D45 +:10C13000B8BFF0EE407AB0EE670AC0E6002D23DB10 +:10C140009DED000ABBE601F03FFFB7F1FF4F02D0C3 +:10C15000002F7FF4E5AE002DBCBFF7EE007A87EE2E +:10C16000800A002CBFF6ABAEA7F17E5757EA080352 +:10C1700040F0FB8070EE407A87EEA70A9FE6002D24 +:10C1800009DB9FED1C0A9AE69DED007AF7EE007A36 +:10C1900087EE870A93E6DDED017AB1EE670A8EE657 +:10C1A00002B0BDEC028BBDE8F04100F0B3BADDEDAA +:10C1B000007A77EEE77A87EEA70A80E6F3FF7F3F03 +:10C1C0000700803FABAAAA3E70A5EC363BAAB83F59 +:10C1D00000AAB83F8CBEBF350072313F4CBB313333 +:10C1E0000EEADDB555B38A38610B36BBABAA2A3EE1 +:10C1F0001872313F000000000000804B14F0FF4F28 +:10C2000040F0F5805FED047A60EE277A6FF0170357 +:10C2100017EE907A9448F915C7F316077F398742CD +:10C22000194447F07E5340F3DA809048874240F348 +:10C23000F7809FED8F4A0131B0EE443AA3F5000339 +:10C24000F7EE005A002006EE103A76EE257AB7EEA9 +:10C25000007A87EE270A5B1043F0005303F5802332 +:10C26000034476EE656A07EE901A66EE803AB8EE01 +:10C27000E77A13EE901A07EE903A7E4BDFED7E0AD6 +:10C280009FED7E8A9FED7E1ADFED7E2ADFED7E1A1E +:10C290009FED7E2A77EEE55A194005EE101A36EE2C +:10C2A000656A63EEA35AE5EE676AF0EE607AE5EE42 +:10C2B000887AE5EE466AA7EEA51A66EE806AE1EE98 +:10C2C000252A73EE857AE2EEA51A25EEA58AA1EE5F +:10C2D000A52A67EEA67AF0EE084AB0EE646AE8EEA8 +:10C2E000027AA5EE056ADFED6A0A9FED6A1ADFEDB4 +:10C2F0006A2A36EE276A16EE101A194006EE101A50 +:10C3000076EE644AE5EE454A77EEE47A67EEA37A84 +:10C31000E6EE867AF0EE675AE5EE065A15EE901ACA +:10C32000194006EE901AE5EE466A05EE901A77EE91 +:10C33000E67A67EEA07AE5EE817A77EE837AF0EE20 +:10C34000676AE5EEA26A76EE846A76EE876A16EE92 +:10C35000901A194006EE901A36EEC77A37EE447AF4 +:10C36000A5EEE27A77EEC77A1EE6B8F1010F7FF408 +:10C37000A6ADB1EE400AA2E502F00102C2F1020848 +:10C38000B4E546498A4267DC7FF43CAE76EEC76A84 +:10C39000F4EEE76AF1EE10FA5EDAD2154FF400011E +:10C3A0007E3A41FA02F21A44C2F3C7513C4C7F393B +:10C3B0000C41C2F3160022EA040206EE902A37EE80 +:10C3C000667A40F40000C1F117010841002B77EEB6 +:10C3D000876AB8BF404216EE903AC20518E69FED54 +:10C3E000244AF7EE005AB0EE443A00202BE700232F +:10C3F00010E7002D0CDB002002B0BDEC028BBDE885 +:10C40000F04101F0D3BB01F041FE58E6002DF2DD12 +:10C41000002002B0BDEC028BBDE8F04101F0CCBBC6 +:10C420009FED204A9FED203AF7EE085A4FF4001096 +:10C4300009E79FED1E6A76EEC76A37EE866AB4EEAC +:10C44000E66AF1EE10FAA8DDB5EEC08AF1EE10FA58 +:10C450004CBF01200020DCE7B5EEC08AF1EE10FAF7 +:10C460004CBF01200020C7E771C41C00D6B35D009B +:10C470000000000000F0FFFF55326C3E42F1533ED9 +:10C4800005A38B3EABAAAA3EB76DDB3E9A99193F36 +:10C490004F38763FA0C39D360038763F00001643E4 +:10C4A000FFFF7F0000C0153FDCCFD1353CAA3833F9 +:10C4B00070B510EE103A894A23F00044944286B0D9 +:10C4C000054670DD864A944210EE106A22DC002B8D +:10C4D000DFED847A844A24F00F04B0EE407A40F312 +:10C4E000E480944270EE677A09BFDFED806A9FEDC9 +:10C4F000807A9FED807A77EEE67A012077EEC76A40 +:10C5000077EEE67AC5ED006A77EEC77AC5ED017A77 +:10C5100006B070BD784A944254DDB4F1FF4F49DA59 +:10C52000E215863AA4EBC25307EE903ABDEEE77AE5 +:10C53000DFED726AB8EEC77A77EEC77A8DED037ACF +:10C5400067EEA67ABDEEE77AB8EEC77A77EEC77ADD +:10C550008DED047A67EEA67AF5EE407AF1EE10FAE8 +:10C56000CDED057A40F09080B5EE407AF1EE10FA0C +:10C5700014BF02230123624901910221009103A803 +:10C58000294600F075FF002EC2DA95ED007AD5ED50 +:10C59000017AB1EE477AF1EE677A85ED007AC5ED62 +:10C5A000017A4042B4E7002285ED000A4260002093 +:10C5B00006B070BD70EE407A0020C5ED017AC5ED81 +:10C5C000007AA5E701F000FD9FED4E7A9FED456AE8 +:10C5D000F6EE007AE0EE077A9FED457AFDEEE77A17 +:10C5E00017EE900AF8EEE76A1F28A6EEC60A66EE76 +:10C5F000877AB1EE666A1EDC434A411E24F0FF03CF +:10C6000052F82120934216D030EE677A85ED007AF9 +:10C6100030EE470A002E30EE670A85ED010ABFF6BC +:10C6200077AFB1EE477AB1EE400A85ED007A85ED3D +:10C63000010A40426CE730EE677AE21517EE103AD5 +:10C64000C3F3C753C3EBD454082CDFDDDFED277AE7 +:10C650009FED287AF0EE405AE6EE275A30EE650A52 +:10C66000A6EE270AF0EE407AD6EE877A35EEE77A24 +:10C6700017EE103AC3F3C753D21A192A06DCB0EEEC +:10C68000650A85ED007AC3E7032374E79FED1F7AFF +:10C690009FED1F5AB0EE650AA6EE070A75EEC07A46 +:10C6A000E6EE077AD6EE857AAEE7944270EE277A08 +:10C6B00009BFDFED0E6A9FED0E7A9FED0E7A77EEE1 +:10C6C000A67A4FF0FF3077EE876A77EEE67AC5ED0F +:10C6D000006A77EE877AC5ED017A19E7D80F493FEE +:10C6E000E3CB1640800FC93FD00FC93F0044353718 +:10C6F0004344353708A3852E800F4943000080430B +:10C7000070FE010884F9223FF0FD010800A3852E88 +:10C7100032318D24B1EEC00A704700BF0000000026 +:10C720002DE9F84F57EC106B27F00049B9F1795F0C +:10C730002DED048B5BEC11AB71DA10EE100A39466B +:10C74000E4F7B4F9002800F0F68032463B46304664 +:10C750003946E3F711FF7CA3D3E9002304460D46D5 +:10C76000E3F70AFF7AA3D3E90023E3F74FFD22465C +:10C770002B46E3F701FF78A3D3E90023E3F744FD59 +:10C7800022462B46E3F7F8FE75A3D3E90023E3F72F +:10C790003DFD22462B46E3F7EFFE73A3D3E90023CA +:10C7A000E3F732FD22462B46E3F7E6FE70A3D3E91A +:10C7B0000023E3F72BFD22462B46E3F7DDFE41EC99 +:10C7C000180B714B002220462946E3F7D5FE53ECA7 +:10C7D000182B8046894620462946E3F7CDFE52466F +:10C7E0005B4604460D4630463946E3F7C5FE024631 +:10C7F0000B4620462946E3F707FD02460B46404616 +:10C800004946E3F701FD02460B4600205F49E3F786 +:10C81000FBFCBDEC048B41EC100BBDE8F88F10EE77 +:10C82000102A10EE100A3B463946E3F7A5FE46A350 +:10C83000D3E9002304460D46E3F79EFE44A3D3E963 +:10C840000023E3F7E3FC22462B46E3F795FE42A3E1 +:10C85000D3E90023E3F7D8FC22462B46E3F78CFE0E +:10C860003FA3D3E90023E3F7D1FC22462B46E3F7AD +:10C8700083FE3DA3D3E90023E3F7C6FC22462B4603 +:10C88000E3F77AFE3AA3D3E90023E3F7BFFC2B4694 +:10C890002246E3F771FE3E4B994541EC180B90DDC3 +:10C8A0003C4B99453CDC0022A9F500133749002098 +:10C8B00090469946E3F7A8FC41EC190B324B002255 +:10C8C00020462946E3F758FE42464B46E3F79CFCD8 +:10C8D00053EC182B8046894620462946E3F74CFE48 +:10C8E00052465B4604460D4630463946E3F744FE61 +:10C8F00002460B4620462946E3F786FC02460B46D5 +:10C9000040464946E3F780FC02460B4651EC190BC2 +:10C91000E3F77AFCBDEC048B41EC100BBDE8F88F1B +:10C920009FED157BDFF87090B0EE479AF0EE679AB6 +:10C930004FF00008C2E7BDEC048B9FED110BBDE882 +:10C94000F88F00BFAFF30080D43888BEE9FAA8BDE5 +:10C95000C4B1B4BD9EEE213EAD529C804F7E923E4E +:10C960009015CB19A001FA3E7751C1166CC1563F04 +:10C970004C5555555555A53F000000000000E73FB8 +:10C98000000000000000F03F0000E03F0000F03F2A +:10C990003233D33F0000E93F0000D23F00000000E7 +:10C9A0002DE9F04FADF5197D1C4608930B91BA4B5C +:10C9B000A299049053F821100591631E12F1140FEF +:10C9C0000393C0F24B83B549D31E81FB0301DB17F0 +:10C9D000C3EBA10307930133A3EB8303DB00D3185D +:10C9E0000693079A039BD41A059AD6181AD40136CF +:10C9F000A39F264420AD4FF000084FF0000908E047 +:10CA000057F82400E3F74EFD0134B442E5E8020193 +:10CA100008D0002CF4DA013440464946B442E5E837 +:10CA20000201F6D1059B002BC0F2C683089BDDF8FE +:10CA30000C9020AA02EBC30ADA000292059A1A446B +:10CA40000192049A0DF5E07B02EBC308039B002BD7 +:10CA5000C0F2A781049E57460024002577E90223EF +:10CA6000F6E80201E3F788FD02460B462046294618 +:10CA7000E3F7CCFB464504460D46EFD1019B09F197 +:10CA800001099945EBE802450AF1080ADED1049A4A +:10CA9000029B1344059A01929B460BAB03EB820366 +:10CAA0000A930CAB03EB8203083B0993019A98AB02 +:10CAB00003EBC203002A53E9284529DD0DF5E07A8E +:10CAC0000AEBC2080DF13009754B002220462946B9 +:10CAD000E3F752FDE3F7EAFFE3F7E4FC714B0022D2 +:10CAE00006460F46E3F748FD02460B462046294618 +:10CAF000E3F78AFBE3F7DAFF78E9022349F8040B4E +:10CB000039463046E3F782FBD04504460D46DBD17B +:10CB1000DDF8189045EC104B484601F0E9F855EC6B +:10CB2000104B00224FF07F5310EE100A2946E3F716 +:10CB300023FD41EC100B01F04FF85B4B51EC100B57 +:10CB40000022E3F719FD02460B4620462946E3F78B +:10CB50005BFB0D460446E3F7A9FF8046E3F7A2FC22 +:10CB60000B46024629462046E3F74EFB4B46002B78 +:10CB700006460F4640F39A80019A511E0CAAC9F14D +:10CB8000180352F8212042FA03F000FA03F3D31AF3 +:10CB9000C9F117050CAA43FA05F5002D42F821301A +:10CBA000804400F38D800022002330463946E3F7AD +:10CBB0004BFF002800F05982019B059A03F1FF3AD0 +:10CBC000524510DC03F180430CAA013B0A9802EBAA +:10CBD0008303002253F80419834242EA0102F9D187 +:10CBE000002A40F0E180059B0CAA013B52F823305B +:10CBF000002B40F0D180099A012352F80419013327 +:10CC00000029FAD0019AD3180293531C9946019A2D +:10CC100008990A449046079A02EB030A0AF1804AEF +:10CC2000A39A0AF1FF3A02EB8A0A20AA02EBC8088B +:10CC300070AA02EBC30301935AF8040FE3F732FC26 +:10CC40000B46039902460029C8E90023474608F12C +:10CC500008081EDB049E0024002501E077E902237A +:10CC6000F6E80201E3F788FC02460B462046294617 +:10CC7000E3F7CCFA5E4504460D46EFD1019BE3E8AD +:10CC800002450193029B09F101099945D4DD019305 +:10CC90000CE700240025F1E7C8010208ABAAAA2A84 +:10CCA0000000703E00007041000020406BD1019BED +:10CCB0000CAA013B52F82350ED15002D7FF773AFFE +:10CCC000019B002B08F1010840F3CD810C9C002C46 +:10CCD00051D1019B012B20D00CAB012253F8044F02 +:10CCE000002C4BD0531C0CA9C4F1807441F8224095 +:10CCF0000199994210DD0CAA0CA852F8232000EBF0 +:10CD0000830300EB81006FF07F4100E01A688A1A0C +:10CD100043F8042B8342F9D10124069B002B0EDD3E +:10CD2000012B00F06C81022B09D1019B5A1E0CAB28 +:10CD30000CA953F82230C3F3150341F82230022D19 +:10CD40007FF431AF32463B46B7490020E3F75CFA47 +:10CD500006460F46002C3FF426AF06989FEDAE0B1B +:10CD600000F0C6FF3046394653EC102BE3F74CFA7F +:10CD700006460F4617E701230022B4E70199013266 +:10CD80008A42ABD1C9E7A94B0022E3F77BFE00281A +:10CD900040F05281054606E7019B01339946029314 +:10CDA00035E70024002569E6069B0395A3F11802E8 +:10CDB0000CABCDF81C8053F82A30069273B9019B56 +:10CDC00003F18043023B0CA901EB830353F80419E0 +:10CDD0000AF1FF3A183A0029F8D006929FED8E0B1F +:10CDE000069800F085FFBAF1000F55EC104BC0F229 +:10CDF000D98170AB03EBCA0B0CAA0AF101030693AD +:10CE000002EB8306DFF828924FEACA0304930BF182 +:10CE100008074FF0000856F8040DE3F743FB2246DD +:10CE20002B46E3F7A9FB4B4667E902014246204641 +:10CE30002946E3F7A1FB0CAB9E4204460D46EAD11E +:10CE400048ABCDE9013ADDF814A0BAF1000F4FF07C +:10CE500000092CDB72A3D3E90023DFF8D8815F46F9 +:10CE600000260024002503E0B14510DBF8E802238A +:10CE7000F7E80201E3F780FB02460B46204629460D +:10CE8000E3F7C4F90136B24504460D46ECDA019BDE +:10CE9000029A03EBC9034A45C3E90045ABF1080B0D +:10CEA00009F1010306D0BAF1000F9946D2DA002445 +:10CEB0000025ECE7A29BDDF808A0022B1EDC002B6E +:10CEC00000F3098113D1049C019D08342C440020F7 +:10CED000002174E90223E3F799F9A542F9D1039BF4 +:10CEE00013B101F1004319460B9BC3E90001079BF5 +:10CEF00003F007000DF5197DBDE8F08FA29B032B11 +:10CF0000F5D1BAF1000F00F06981019A049BD318A2 +:10CF1000D3E9004502EBCA0B7BE9026720462946AC +:10CF200032463B46E3F772F9A046A94604460D4651 +:10CF300022462B4630463946E3F766F94B464246D1 +:10CF4000E3F764F9019B5B45CBE90201CBE90045BE +:10CF5000E2D1BAF1010F40F34181019A049B0AF139 +:10CF6000005A0AF1FF3A13444FEACA01D3E90045D7 +:10CF700001F1080A029192440DF5947B7AE9026767 +:10CF80002046294632463B46E3F740F9A046A946EB +:10CF900004460D4622462B4630463946E3F734F91F +:10CFA00042464B46E3F732F9D345CAE90201CAE9E2 +:10CFB0000045E3D1029C019B10341C4403F1100591 +:10CFC0000020002174E90223E3F720F9A542F9D1FA +:10CFD000039B002B40F0BD800B9CC4E90401019829 +:10CFE000D0E90023C4E90023D0E90223C4E90223E5 +:10CFF000079B03F007000DF5197DBDE8F08F019B3D +:10D000005A1E0CAB0CA953F82230C3F3160341F897 +:10D01000223094E6AFF30080000000000000F03FF3 +:10D0200000000040FB21F93F0000F03F0000E03F1E +:10D030000000703E90010208019B002B08F10108DE +:10D04000C8BF02253FF742AE32463B466549002045 +:10D05000E3F7DAF8022506460F46A4E500216FF053 +:10D0600017030791BBE4002457E647EC106B069EBC +:10D0700003957042CDF81C8000F03AFE55EC104B41 +:10D08000594B10EE100A00222946E3F7FBFC00285A +:10D0900055D0564B019F0022183620462946069649 +:10D0A000E3F76AFAE3F702FD0646E3F7FBF94E4BB6 +:10D0B0000022E3F761FA0B46024629462046E3F7D1 +:10D0C000A3F8E3F7F3FC07F1010A0CAB43F82700E0 +:10D0D00043F82A6082E6019D069B002005EBC3040D +:10D0E000002174E90223E3F791F8A542F9D1039BEB +:10D0F000002B47D10B9BC3E900010B460199024667 +:10D10000D1E90001E3F780F8BAF1000F0DDD4AAD77 +:10D110000124F5E802230134E3F778F8A245F8DAB0 +:10D12000039B13B101F1004319460B9BC3E90201B4 +:10D13000079B03F007000DF5197DBDE8F08F204631 +:10D140002946E3F7B3FC019B0CAA9A4642F8230058 +:10D1500044E6019E01F1004374680B993268F5685A +:10D16000C1E9040304F10043C1E90023B26805F1F9 +:10D170000043C1E90223079B03F007000DF5197D69 +:10D18000BDE8F08F0B9A01F1004353600B46019903 +:10D1900010600246D1E90001E3F736F8BAF1000F5A +:10D1A000B5DCBFE7A29B022B0ADC002B11DC7FF46D +:10D1B0009EAE0020002192E6089BDB00029366E40D +:10D1C000A29B032B7FF493AE48AB00200021019378 +:10D1D000FEE648AB00200021019388E700200021F3 +:10D1E000F6E600BF0000F03F000070410000703E16 +:10D1F0002DE9F04F55EC104B85B025F00043B3F10D +:10D20000795F8DED001B039007DA10EE100A2946B6 +:10D21000E3F74CFC002800F0898022462B4620468C +:10D220002946E3F7A9F906460F4632463B46204613 +:10D230002946E3F7A1F943A3D3E9002382468B46AD +:10D2400030463946E3F798F940A3D3E90023E2F7E3 +:10D25000DBFF32463B46E3F78FF93EA3D3E90023D9 +:10D26000E2F7D4FF32463B46E3F786F93BA3D3E926 +:10D270000023E2F7C9FF32463B46E3F77DF939A3C5 +:10D28000D3E90023E2F7C2FF039B80468946ABB394 +:10D29000DDE900012A4B0022E3F76EF942464B46D6 +:10D2A0008046894650465946E3F766F902460B46E2 +:10D2B00040464946E2F7A8FF32463B46E3F75CF9B1 +:10D2C000DDE90023E2F7A0FF1BA3D3E90023064614 +:10D2D0000F4650465946E3F74FF902460B46304693 +:10D2E0003946E2F793FF02460B4620462946E2F70D +:10D2F0008BFF41EC100B05B0BDE8F08F02460B46EA +:10D3000030463946E3F738F90BA3D3E90023E2F7B7 +:10D310007BFF52465B46E3F72FF922462B46E2F7A6 +:10D3200075FF41EC100B05B0BDE8F08F45EC104BDC +:10D3300005B0BDE8F08F00BF495555555555C53F5F +:10D340000000E03F7CD5CF5A3AD9E53DEB9C2B8AD3 +:10D35000E6E55A3E7DFEB157E31DC73ED561C119D2 +:10D36000A0012A3FA6F810111111813F10EE103ACA +:10D3700023F00043B3F1485F2CDAFDEEC07A17EEDC +:10D38000903A002B60D020EE007ADFED317A9FEDED +:10D39000315ADFED315A9FED316ADFED316AA7EE88 +:10D3A000275ADFED307AE7EE055AA7EE256AE7EE59 +:10D3B000067AE7EE276A67EE266A60EEC00AF6EEA6 +:10D3C000007AE7EE260AB7EE000AD7EE270A30EE1B +:10D3D000600A704720EE007ADFED1D7A9FED1D5A3E +:10D3E000DFED1D5A9FED1D6ADFED1D6A1E4AA7EE97 +:10D3F000275A9342DFED1B7AE5EE075AA5EE876ABE +:10D40000E6EE077AE7EE876A66EE876AD5DD174AA9 +:10D41000934214DC03F17F4307EE903AB7EE006AC3 +:10D4200036EE676A60EEC00AF6EE005AD7EE257A4D +:10D43000E7EE260A77EEE00A36EE600A7047B6EEAF +:10D44000076AF5EE027AEDE7B7EE000A704700BF13 +:10D450004ED747ADF6740F317CF293B4010DD0373F +:10D46000ABAA2A3D610BB6BA9999993E0000483F94 +:10D470002DE9F04F2DED048BDBB01C460393069194 +:10D48000A24B6899089253F82150111D824604F16D +:10D49000FF38C0F2A382D31E48BF131DDB100293D6 +:10D4A0000133DB000793DDE907239B1A0593029BF9 +:10D4B00015EB0801A3EB080316D401319FED947A14 +:10D4C000699819441EAA002BA4BF50F8234007EE08 +:10D4D000904A03F10103ACBFF8EEE77AF0EE477A29 +:10D4E0008B42E2EC017AEED1002DC0F2E782039B81 +:10D4F0001EAA02EB830446AE4FEA830C4046EF18A7 +:10D500000AEB8301B8F1000FDFED817A09DB2246D7 +:10D510005346F3EC016A32ED017A8B42E6EE877AEC +:10D52000F7D10130B842E6EC017A04F10404E9D104 +:10D5300009AB0AAF03EB850907EB8503083B9FEDB9 +:10D54000769ADFED748A059804930AEB0C0446AED4 +:10D5500000955AAB03EB8503002D13ED140A4FEA37 +:10D56000850B16DD06EB85033A4660EE097AB0EED0 +:10D57000407AFDEEE77A73ED016AF8EEE77AB3429E +:10D58000A7EEE87A37EEA60ABDEEC77AA2EC017ADA +:10D59000EBD1019000F07AFDB0EE408AB4EE000AC3 +:10D5A00028EE000A00F026FDF2EE007AA0EE678A6F +:10D5B00001980028FDEEC89AF8EEE97A38EE678AFD +:10D5C00079DD05F1FF3EC0F1080357F82E1041FA4E +:10D5D00003FC0CFA03F3CB1AC0F1070219EE901A00 +:10D5E00043FA02F26144002A47F82E3009EE901AFD +:10D5F00069DCB5EE408AF1EE10FA40F0C080009B85 +:10D6000005F1FF3B5B4510DC05F18043013B07EB77 +:10D6100083030021944653F804294B4541EA020153 +:10D62000F9D16246002940F0F280009B013B57F897 +:10D630002330002B40F0E780049B4FF0010C53F89F +:10D6400004290CF1010C002AF9D06B1CAC449E4655 +:10D65000039A5119029A02EB030B0BF1804B699A62 +:10D660000BF1FF3B06EB83051EAB02EB8B0B03EBD1 +:10D670008101DBED017A9FED267AF8EEE77AB8F1C9 +:10D68000000F0BF1040BC1ED007A0A4601F1040111 +:10D6900009DB534601E072ED017AF3EC016AA34223 +:10D6A000A6EEA77AF7D10EF1010EE645A5EC017AB8 +:10D6B000DFDD65464DE740F09C806B1E57F8232068 +:10D6C000D211002A95DD19EE903A002D03F10103E5 +:10D6D00009EE903A40F39881396800297FD1012DF5 +:10D6E00026D03B464FF0010C53F8041F00297AD096 +:10D6F0000CF10103C1F580719D4247F82C1016DD35 +:10D7000057F82310BB4407EB83030AE00402020826 +:10D7100000000000000080430000803B0000C93F83 +:10D720001968C1F1FF0143F8041B5B45F8D10121E1 +:10D7300000280CDD012800F04881022807D105F1FE +:10D74000FF3C57F82C3003F03F0347F82C30022AF7 +:10D750007FF44FAFB7EE000A30EE488A00293FF45D +:10D7600048AF0992019000F091FC38EE408A099A86 +:10D770000198B5EE408AF1EE10FA3FF440AF029204 +:10D78000DDE90732B0EE480A981A0195009D00F0D5 +:10D790007DFC1FED207AB4EEC70AF1EE10FADDE948 +:10D7A0000132C0F259815FED247A059960EE277A43 +:10D7B0000831FDEEE77A0591F8EEE77A03F1010B07 +:10D7C000A7EEC70AFDEEE77ABDEEC00A10EE101A0A +:10D7D00047F8231017EE903A47F82B302EE001233C +:10D7E0004FF0000C86E70CF1010CAC457FF47CAFE8 +:10D7F0009EE7F6EE007AB4EEE78AF1EE10FA80F2D8 +:10D80000F2800022F5E66B1C9E469C4620E70599B7 +:10D81000A1F1080057F82B1005902B46009D69B91F +:10D8200003F18043023B07EB8303014653F80409ED +:10D830000BF1FF3B08390028F8D0059105980092BC +:10D84000B7EE000A00F022FCBBF1000F009AC0F214 +:10D8500028814FEA8B0E46AB03EB0E060EF1040C4B +:10D860001FED537A07EB0C03311D73ED017AF8EECF +:10D87000E77ABB4267EE807A20EE070A61ED017A13 +:10D88000F3D1002D1FED5B6A4FF0000420DB9348BD +:10D89000DFED937AB0EE467A3146002303E09C42F6 +:10D8A00008DBB0EC017AF1EC016A01339D42E6EE4F +:10D8B000877AF4DA5AAB03EB8403A34543ED287A65 +:10D8C000A6F1040604F1010305D0002D1C46DEDAA2 +:10D8D000DFED837AEEE7689902291CDC002900F36A +:10D8E00095800FD132ABDFED7E7A9C443CED017A1E +:10D8F000634577EE877AF9D10AB1F1EE677A069B34 +:10D90000C3ED007A19EE903A03F007005BB0BDEC6E +:10D91000048BBDE8F08F689B032BF3D1BBF1000FA4 +:10D9200000F0D4800EF5B4736B4432A913ED287A5D +:10D9300001EB8B0373ED017AF0EE476A37EE277A3D +:10D94000994277EEC77A83ED007A77EEA67AC3ED37 +:10D95000017AEFD1BBF1010F40F3B8800BF1804B9E +:10D960000EF5B4730BF1FF3B0DEB030E4FEA8B0B7F +:10D970000BF104031EED287A0B4433A873ED017AF2 +:10D98000F0EE476A37EE277A984277EEC77A83ED52 +:10D99000007A77EEA67AC3ED017AEFD10BF1080B8E +:10D9A000DFED4F7A01EB0B03083133ED017A994239 +:10D9B00077EE877AF9D1002A56D10699329A339BAD +:10D9C0000A604B60C1ED027A9CE705F1FF3C57F815 +:10D9D0002C3003F07F0347F82C30B8E60823079378 +:10D9E000002302935FE519EE903A002D03F1010345 +:10D9F00009EE903AC8BF02223FF76EAEF7EE007A0A +:10DA000037EEC88A0222F4E5002191E632A9DFED63 +:10DA1000347A01EB830333ED017A994277EE877A0A +:10DA2000F9D19DED327A8ABB069BBBF1000FC3EDA5 +:10DA3000007A77EE677A0BDD33A90123B1EC017A26 +:10DA400001339B4577EE877AF8DA0AB1F1EE677A0F +:10DA5000069BC3ED017A55E7BDEEC00A9B4610EE6A +:10DA6000101A47F82310E9E6DDED326A9DED337AAE +:10DA7000069BF1EE666AB1EE477AF1EE677AC3ED86 +:10DA8000006A83ED017AC3ED027A3BE7069BF1EE73 +:10DA9000676ABBF1000F77EE677AC3ED006ACBDCF3 +:10DAA000D4E7689B022B0DDC002B14DC7FF42AAF3B +:10DAB000DFED0B7A002A3FF422AF1EE7039B4FEA0B +:10DAC000830C35E5689B032B7FF41CAFDFED047AF4 +:10DAD000002AC9D171E7DFED027AA2E7DC01020872 +:10DAE0000000000010EE103A23F00043B3F1485F4D +:10DAF00004DAFDEEC07A17EE903A5BB360EE007A7E +:10DB00009FED157ADFED155A9FED156ADFED156A69 +:10DB1000E7EE875A9FED147AA5EEA76A20EE275A02 +:10DB2000E6EE276AA6EEA77A30B9DFED106AE7EED7 +:10DB3000876AA6EE850A704727EE457AF6EE006AF8 +:10DB4000A0EEA67ADFED0A6AD7EE270AE5EE260AEE +:10DB500030EE600A704700BFD3C92E2F342FD7B2E2 +:10DB60001BEF3836010D50B98988083CABAA2ABE94 +:10DB7000ABAA2A3E10B582B08DED010A0446F6F735 +:10DB800005FF9DED010A046002B010BD30B1F1EE59 +:10DB9000407A27EE800A2220FFF7ECBFF0EE407AB1 +:10DBA00027EE800A2220FFF7E5BF00BF9FED010AA4 +:10DBB000FFF7ECBF000000109FED010AFFF7E6BF82 +:10DBC0000000007051EC100B10EE102A21F0004301 +:10DBD00043EC102B704700BF51EC100BF8B5C1F3AC +:10DBE0000A53A3F2FF35132D10EE106A0C4630DCF9 +:10DBF000002D1EDB384F2F4101EA070303432DD0D0 +:10DC000033A3D3E90023E2F701FB00220023E2F76C +:10DC100043FF48B1002C04DA4FF4801343FA05F5B2 +:10DC20002C4424EA070400262346324643EC102BFA +:10DC3000F8BD27A3D3E90023E2F7E8FA0022002386 +:10DC4000E2F72AFF0028EFD0002C29DB002634461B +:10DC5000EAE7332D05DDB5F5806F19D041EC100BE7 +:10DC6000F8BDA3F213434FF0FF37DF400742F5D072 +:10DC700017A3D3E90023E2F7C9FA00220023E2F751 +:10DC80000BFF0028D0D0002C13DB26EA0706CBE7D9 +:10DC900010EE102A0B46E2F7B9FA41EC100BF8BD72 +:10DCA00024F000430D4A1E43002E18BF14460026E0 +:10DCB000BAE7142D08D00123C5F1340503FA05F5A0 +:10DCC000AE1928BFE418E0E70134DEE7AFF30080C7 +:10DCD0009C7500883CE4377EFFFF0F000000F0BF1A +:10DCE0009FED010B704700BF000000000000F87FAF +:10DCF00038B553EC102BC3F30A5104469C4689BB3C +:10DD000010EE101A23F0004C5CEA010129D01946EC +:10DD100000223D4B3D4D10EE100AE2F72DFCAC42C7 +:10DD200002460B4616DB8C46C1F30A5136392144B4 +:10DD300040F2FE70814221DC002947DC11F1350FF1 +:10DD400034DA4CF250318C4218DC002B26A1D1E998 +:10DD5000000144DB24A3D3E90023E2F70DFC41ECEE +:10DD6000100B38BD40F2FF708142E0D110EE100A76 +:10DD70001946E2F74BFA41EC100B38BD002B1CA101 +:10DD8000D1E9000107DB1AA3D3E90023E2F7F4FB92 +:10DD900041EC100B38BD18A1D1E9000114A3D3E95F +:10DDA0000023E2F7E9FB41EC100BF3E72CF0FF4C0A +:10DDB0002CF4E00C36314CEA01531046194600228F +:10DDC000134BE2F7D9FB41EC100B38BD2CF0FF4CA4 +:10DDD0002CF4E00C4CEA015343EC102B38BD08A1A5 +:10DDE000D1E90001B6E700BF59F3F8C21F6EA501E3 +:10DDF0009C7500883CE4377E9C7500883CE437FEC7 +:10DE000059F3F8C21F6EA58100005043B03CFFFFDC +:10DE10000000903C38B510EE105A25F00044B4F1E3 +:10DE2000A14FF0EE407A0BDBB4F1FF4F5BDCDFED8E +:10DE3000537A9FED530A002DC8BFB0EE670A38BD74 +:10DE4000504B9C425EDCB4F1445F4FDB4FF0FF333C +:10DE500067EEA76ADFED4C4ADFED4C5A9FED4C5A56 +:10DE60009FED4C4A26EEA67AB0EE666AE7EE245A9B +:10DE70005A1CDFED494ADFED496AA5EE875AE7EE05 +:10DE8000246ADFED475ADFED474AE6EE875AA5EEF2 +:10DE9000074A9FED455ADFED456AA5EE875AE4EE45 +:10DEA000074ADFED435AE4EE876AE5EE075A66EE6D +:10DEB000866A25EE877A3AD03E4A02EB830276EEF6 +:10DEC000876A92ED000A3C4A96EEA70A02EB8303AA +:10DED000002D93ED007A70EE677A37EE670AAEDABE +:10DEE000B1EE400A38BD30EE000A38BD9FED337AFE +:10DEF00030EE077AF7EE006AB4EEE67AF1EE10FA49 +:10DF0000A4DD38BD00F060F82D4B9C4216DCA3F573 +:10DF1000D0039C4227DCF0EE007ABFEE007AA0EE40 +:10DF2000277A002330EE270AC7EE007A90E776EED4 +:10DF3000876AE6EEE77AB0EE670A38BD214B9C426D +:10DF40000BDCF7EE087AB7EE007AA0EE277A022310 +:10DF500030EE670AC0EE077A7AE7BFEE007AC7EEC6 +:10DF6000007A032374E7F7EE007A30EE677A30EE3A +:10DF7000270A0123C7EE007A6AE700BFDB0FC93F1B +:10DF8000DB0FC9BFFFFFDF3ED769853C59DA4B3D48 +:10DF9000356B883D6E2EBA3D21A215BD6BF16EBD6D +:10DFA00095879DBD2549123E388EE3BDABAAAA3E9A +:10DFB000CDCC4CBE2002020810020208CAF2497100 +:10DFC000FFFF973FFFFF1B4010EE103A23F0004386 +:10DFD00000EE103A704700BF82B08DED010A019843 +:10DFE00020F00040B0F1FF4FACBF0020012002B094 +:10DFF000704700BF10EE102AC2F3C7537F3B162BA9 +:10E0000022F0004128DC002B18DB1A4919410A4292 +:10E0100021D0DFED197A70EE277AF5EEC07AF1EEB5 +:10E0200010FA18DD002A04DA4FF4000040FA03F376 +:10E030001A4422EA010300EE103A7047DFED0E7A2F +:10E0400070EE277AF5EEC07AF1EE10FA03DD002AC1 +:10E0500008DB9FED0A0A7047B1F1FF4FFBD330EEAA +:10E06000000A7047FFEE007A002918BFB0EE670A79 +:10E07000704700BFFFFF7F00CAF249710000000037 +:10E080009FED010A704700BF0000C07F82B08DED98 +:10E09000010A019B33F000422AD0B2F1FF4F23D294 +:10E0A00013F0FF4F28D19DED017ADFED2A7A2A4B3C +:10E0B00067EE277A9842CDED017A37DB019BC3F3F7 +:10E0C000C752193A0244FE2A1ADD9FED240A9FED39 +:10E0D000247A019B002BF0EE407AB8BFB0EE470ADD +:10E0E00020EE270A02B0704730EE000A02B07047F7 +:10E0F0009DED010A02B07047D20D0244FE2AE4DC15 +:10E10000002A0BDC12F1160F17DA4CF2503398424A +:10E11000DBDC9FED140A9FED147ADAE723F0FF436E +:10E1200043EAC25300EE103A02B070479FED0D0A69 +:10E13000DDED017A27EE800AD8E7193223F0FF439C +:10E1400043EAC253DFED097A07EE103A27EE270AB9 +:10E15000CCE700BF0000004CB03CFFFFCAF24971A1 +:10E16000CAF249F16042A20D6042A28D0000003364 +:10E17000F8B500BFF8BC08BC9E467047F8B500BFB4 +:08E18000F8BC08BC9E46704784 +:10E1880094E20108E9A20008000000000000000075 +:10E19800800000000000000000000000E0E301082B +:10E1A800BDCE0008010000000000000000040000CF +:10E1B8000000000000000000E8E3010849CF000863 +:10E1C8000000000000000000000100000000000046 +:10E1D80000000000F4E30108CDCF000800000000B3 +:10E1E80000000000800000000000000000000000A7 +:10E1F80000E40108C1D10008000000000000000090 +:10E208000004000000000000000000000CE4010809 +:10E2180059D00008000000000000000000020000C3 +:10E2280000000000000000000000000000000000E6 +:10E23800E4EB0108B523010800000000000000001D +:10E24800800000000000000000000000000610161A +:10E258000006101649444C45000000005465726DD4 +:10E26800696E616C0000000000000000000054545A +:10E2780052205245474745530000000030313233A1 +:10E28800343536373839414243444546646566611A +:10E29800756C745461736B00493A00001B5B313B29 +:10E2A80033326D002020257325735B6D61696E5DC7 +:10E2B8002053797374656D496E6974282920616EDD +:10E2C8006420526F626F74496E6974282920646FE4 +:10E2D8006E650D0A257300001B5B306D00000000A1 +:10E2E80000000000000000000102030406070809FE +:10E2F8000000000001020304566973696F6E204331 +:10E308006F6D6D20706F7274000000005975654C58 +:10E3180075456D626564646564000000434443208C +:10E32800436F6E666967000043444320496E746515 +:10E338007266616365000000636861737369735F87 +:10E34800636D6400636861737369735F66656564B0 +:10E3580000000000453A00001B5B313B33316D0083 +:10E368002020257325735B434D445D20656D6572E0 +:10E3780067656E63792073746F70210D0A257300C9 +:10E388002020257325735B434D445D207265696EBB +:10E3980073746174652C20726F626F74207265618A +:10E3A80064790D0A2573000067696D62616C5F63AB +:10E3B8006D64000067696D62616C5F666565640025 +:10E3C80073686F6F745F636D6400000073686F6FCC +:10E3D800745F666565640000696E737461736B00D1 +:10E3E8006D6F746F727461736B0000006461656DAA +:10E3F8006F6E7461736B0000726F626F7474617317 +:10E408006B00000075697461736B00002020257330 +:10E4180025735B6672656552544F535D20494E53B0 +:10E42800205461736B2053746172740D0A25730054 +:10E438002020257325735B6672656552544F535DC2 +:10E4480020494E53205461736B20697320626569BB +:10E458006E672044454C415921206474203D205B5F +:10E4680025665D0D0A2573002020257325735B66DC +:10E4780072656552544F535D204D4F544F5220548E +:10E4880061736B2053746172740D0A257300000068 +:10E498002020257325735B6672656552544F535D62 +:10E4A800204D4F544F52205461736B206973206282 +:10E4B80065696E672044454C415921206474203DAC +:10E4C800205B25665D0D0A2573000000202025735A +:10E4D80025735B6672656552544F535D20446165D0 +:10E4E8006D6F6E205461736B2053746172740D0AE2 +:10E4F800257300002020257325735B6672656552BD +:10E50800544F535D204461656D6F6E205461736B89 +:10E51800206973206265696E672044454C41592122 +:10E52800206474203D205B25665D0D0A257300007C +:10E538002020257325735B6672656552544F535DC1 +:10E54800205549205461736B2053746172740D0A0D +:10E55800257300002020257325735B66726565525C +:10E56800544F535D20554920496E697420446F6E9D +:10E57800652C20636F6D6D756E69636174696F6E6C +:10E5880020776974682072656620686173206573F6 +:10E598007461626C69736865640D0A257300000014 +:10E5A8002020257325735B6672656552544F535D51 +:10E5B80020524F424F5420636F7265205461736B31 +:10E5C8002053746172740D0A25730000202025738E +:10E5D80025735B6672656552544F535D20524F42F6 +:10E5E8004F5420636F7265205461736B20697320E8 +:10E5F8006265696E672044454C4159212064742046 +:10E608003D205B25665D0D0A2573000020202573DB +:10E6180025735B6273705F63616E5D2043414E20BA +:10E628005365727669636520496E69740D0A2573AE +:10E63800000000002020257325735B6273705F6300 +:10E64800616E5D2043414E20696E7374616E63652F +:10E65800206578636565646564204D4158206E7552 +:10E668006D2C20636F6E73696465722062616C61E2 +:10E678006E636520746865206C6F6164206F662026 +:10E6880043414E206275730D0A25730020202573BF +:10E6980025735B7D6273705F63616E5D2043414EDD +:10E6A800206964206372617368202C7478205B256C +:10E6B800645D206F72207278205B25645D20616C38 +:10E6C80072656164792072656769737465726564DF +:10E6D8000D0A257300000000573A00001B5B313B10 +:10E6E80033336D002020257325735B6273705F637D +:10E6F800616E5D2043414E204D41494C626F782048 +:10E7080066756C6C21206661696C656420746F2085 +:10E71800616464206D736720746F206D61696C6239 +:10E728006F782E20436E74205B25645D0D0A257377 +:10E73800000000002020257325735B6273705F63FF +:10E74800616E5D2043414E2062757320425553210E +:10E7580020636E743A25640D0A2573002020257302 +:10E7680025735B6273705F75736172745D205553B6 +:10E7780041525420657863656564206D617820692D +:10E788006E7374616E636520636F756E74210D0A14 +:10E79800257300002020257325735B6273705F75F5 +:10E7A800736172745D20555341525420696E7374BD +:10E7B800616E636520616C7265616479207265675A +:10E7C80069737465726564210D0A25730000000081 +:10E7D8002020257325735B6273705F757361727493 +:10E7E8005D205553415254206572726F72206361E7 +:10E7F8006C6C6261636B20747269676765726564CB +:10E808002C20696E7374616E636520696478205B7F +:10E8180025645D0D0A257300202025732573555343 +:10E828004220696E697420737563636573730D0A9A +:10E83800257300000000803F000000000000000079 +:10E8480000000000000000000000000000000000C0 +:10E858000000803F000000000000000000000000F1 +:10E868000000000000000000000000000000803FE1 +:10E878000000000000000000000000000000000090 +:10E8880000000000000000000000803F00000000C1 +:10E898000000000000000000000000000000000070 +:10E8A800000000000000803F0000000000000000A1 +:10E8B8000000000000000000000000000000000050 +:10E8C8000000803F2020257325735B424D49303876 +:10E8D800385D2043616C69627261746520466169C4 +:10E8E8006C65642120557365206F66666C696E657A +:10E8F80020706172616D730D0A25730020202573E5 +:10E9080025735B626D693038385D2063616C6962BC +:10E91800726174696F6E2077617320696E746572B5 +:10E928007275707465640A0D0A25730020202573BA +:10E9380025735B626D693038385D2043616E206EE7 +:10E948006F74207265616420626D693038382061A7 +:10E95800636320636869702069640D0A2573000089 +:10E968002020257325735B626D693038385D20433C +:10E97800616E206E6F74207265616420626D69300B +:10E988003838206779726F20636869702069640D70 +:10E998000A2573007D04017C000240AB0341010598 +:10E9A80053080658040700000F00081081091100D9 +:10E9B8000A15800B16000C18010D00000000803F9E +:10E9C8000000000000000000000000000000803F80 +:10E9D8000000000000000000000000000000803F70 +:10E9E8002020257325735B766973696F6E5D2076C9 +:10E9F8006973696F6E206F66666C696E652C20722C +:10EA080065737461727420636F6D6D756E6963618F +:10EA180074696F6E2E0D0A2573000000202025737F +:10EA280025734556454E54204E414D4520544F4F71 +:10EA3800204C4F4E473A25730D0A257300000000FD +:10EA48002020257325734556454E54204C454E20AD +:10EA58004E4F542053414D453A25642C25640D0AE8 +:10EA6800257300002020257325735B646A695F6D38 +:10EA78006F746F725D204D6F746F72206C6F73745A +:10EA88002C2063616E20627573205B25645D202CE9 +:10EA9800206964205B25645D0D0A25730000000071 +:10EAA8002020257325735B646A695F6D6F746F72CC +:10EAB8005D2049442063726173682E204368656352 +:10EAC8006B20696E206465627567206D6F64652CC4 +:10EAD8002061646420646A695F6D6F746F725F6936 +:10EAE8006E7374616E636520746F207761746368F8 +:10EAF80020746F20676574206D6F726520696E667B +:10EB08006F726D6174696F6E2E0D0A2573000000B7 +:10EB18002020257325735B646A695F6D6F746F725B +:10EB28005D206964205B25645D2C2063616E5F62F3 +:10EB38007573205B25645D0D0A25730020202573FD +:10EB480025735B646A695F6D6F746F725D596F7569 +:10EB5800206D757374206E6F7420726567697374A5 +:10EB68006572206F74686572206D6F746F727320A0 +:10EB78007573696E672074686520415049206F6617 +:10EB880020444A49206D6F746F722E0D0A25730058 +:10EB98002020257325735B646A695F6D6F746F72DB +:10EBA8005D206C6F6F702074797065206572726F6C +:10EBB800722C20636865636B206D656D6F727920B8 +:10EBC80061636365737320616E642066756E63208C +:10EBD800706172616D0D0A257300000068745F74BE +:10EBE80061736B5F6E616D6500000000005EBCE2E2 +:10EBF800613FDD83C29C7E20A3FD1F419DC3217F11 +:10EC0800FCA2401E5F01E3BD3E6082DC237D9FC104 +:10EC1800421CFEA0E1BF5D0380DE3C62BEE0025CF8 +:10EC2800DF81633D7C22C09E1D43A1FF4618FAA4E4 +:10EC380027799BC584DA3866E5BB5907DB856739D0 +:10EC4800BAE406581947A5FB7826C49A653BD987C4 +:10EC5800045AB8E6A7F91B45C6987A24F8A6441AB8 +:10EC680099C7257B3A6486D85B05E7B98CD2306EA4 +:10EC7800EDB3510F4E10F2AC2F7193CD114FADF390 +:10EC8800702ECC92D38D6F31B2EC0E50AFF1134D84 +:10EC9800CE90722C6D33D18F0C52B0EE326C8ED078 +:10ECA800530DEFB1F0AE4C1291CF2D73CA94762864 +:10ECB800ABF517490856B4EA6937D58B5709EBB550 +:10ECC80036688AD495CB2977F4AA4816E9B7550B44 +:10ECD80088D6346A2B7597C94A14F6A8742AC89638 +:10ECE800154BA9F7B6E80A54D7896B350000891186 +:10ECF80012239B322446AD573665BF74488CC19D9C +:10ED08005AAFD3BE6CCAE5DB7EE9F7F8811008017B +:10ED180093331A22A5562C47B7753E64C99C408D7B +:10ED2800DBBF52AEEDDA64CBFFF976E802218B3017 +:10ED3800100299132667AF763444BD554AADC3BC5B +:10ED4800588ED19F6EEBE7FA7CC8F5D983310A203B +:10ED580091121803A7772E66B5543C45CBBD42AC3B +:10ED6800D99E508FEFFB66EAFDD874C904428D53D3 +:10ED780016619F702004A9153227BB364CCEC5DF1B +:10ED88005EEDD7FC6888E1997AABF3BA85520C43FB +:10ED980097711E60A1142805B3373A26CDDE44CFFB +:10EDA800DFFD56ECE9986089FBBB72AA06638F7297 +:10EDB80014409D512225AB343006B9174EEFC7FEDB +:10EDC8005CCCD5DD6AA9E3B8788AF19B87730E62BB +:10EDD80095501C41A3352A24B1163807CFFF46EEBB +:10EDE800DDDC54CDEBB962A8F99A708B0884819563 +:10EDF8001AA793B62CC2A5D33EE1B7F04008C919AB +:10EE0800522BDB3A644EED5F766DFF7C899400856A +:10EE18009BB712A6ADD224C3BFF136E0C11848098A +:10EE2800D33B5A2AE55E6C4FF77D7E6C0AA583B406 +:10EE3800188691972EE3A7F23CC0B5D14229CB386A +:10EE4800500AD91B666FEF7E744CFD5D8BB502A42A +:10EE580099961087AFF326E2BDD034C1C3394A284A +:10EE6800D11A580BE77F6E6EF55C7C4D0CC685D7C2 +:10EE78001EE597F42880A1913AA3B3B2444ACD5B2A +:10EE88005669DF78600CE91D722FFB3E8DD604C7EA +:10EE98009FF516E4A9902081BBB332A2C55A4C4B0A +:10EEA800D7795E68E11C680DF33F7A2E0EE787F686 +:10EEB8001CC495D52AA1A3B03882B193466BCF7AEA +:10EEC8005448DD59622DEB3C700EF91F8FF706E6AA +:10EED8009DD414C5ABB122A0B9923083C77B4E6ACA +:10EEE800D5585C49E33D6A2CF11E780F6F666600C1 +:10EEF8006F6E2000636C6F73650000006F70656E45 +:10EF080020000000736430007A65726F666F726368 +:10EF180065000000726F7461746520202000000095 +:10EF28006E6F666F6C6C6F7720000000666F6C6C9C +:10EF38006F772020200000007364310066726565D9 +:10EF480020202020200000006779726F20202020D8 +:10EF5800200000007364320073643300736434006B +:10EF680073643500736C3000736C3100736C32005D +:10EF7800736C3300736C34007373300063686173AF +:10EF88007369733A000000007373310067696D623A +:10EF9800616C3A007373320073686F6F743A0000E3 +:10EFA8007373330066726963743A000073733400D4 +:10EFB8006C69643A0000000073733500506F776520 +:10EFC800725F4D41583A000073733600736436001F +:10EFD8002020257325735B726D5F7265665D206CFA +:10EFE8006F7374207265666572656520646174610B +:10EFF8000D0A2573000000002020257325735B721D +:10F00800635D2072656D6F746520636F6E74726FD7 +:10F018006C206C6F73740D0A2573000000000000EB +:10F02800920E493CB10AC93C2BC3163D2EFB483D04 +:10F03800752B7B3D04A9963D80B6AF3D36BDC83DD6 +:10F048002FBCE13D73B2FA3D87CF093E8340163E9F +:10F05800B5AB223EA2102F3ECF6E3B3EC2C5473E07 +:10F068000115543E135C603E7F9A6C3ECCCF783ECF +:10F07800C07D823E938E883E229A8E3E32A0943E78 +:10F0880086A09A3EE59AA03E128FA63ED47CAC3E5E +:10F09800EF63B23E2A44B83E491DBE3E15EFC33E5B +:10F0A80053B9C93ECA7BCF3E4136D53E80E8DA3EE9 +:10F0B8004F92E03E7533E63EBBCBEB3EEA5AF13E5B +:10F0C800CBE0F63E275DFC3EE4E7003F3D9C033F76 +:10F0D800824B063F9BF5083F6B9A0B3FDA390E3F90 +:10F0E800CDD3103F2A68133FD9F6153FC07F183F8C +:10F0F800C6021B3FD17F1D3FCBF61F3F9967223FBA +:10F1080025D2243F5636273F1594293F4AEB2B3FFB +:10F11800DE3B2E3FBB85303FC9C8323FF304353F45 +:10F12800233A373F4268393F3B8F3B3FF9AE3D3F7B +:10F1380067C73F3F70D8413F01E2433F03E4453F83 +:10F1480065DE473F12D1493FF8BB4B3F029F4D3F19 +:10F15800207A4F3F3D4D513F4918533F31DB543FD3 +:10F16800E595563F5348583F6AF2593F1A945B3F1A +:10F17800532D5D3F05BE5E3F2146603F97C5613F09 +:10F188005A3C633F59AA643F880F663FD86B673F74 +:10F198003CBF683FA7096A3F0C4B6B3F5E836C3FDF +:10F1A80093B26D3F9ED86E3F73F56F3F0809713F6C +:10F1B8005213723F4714733FDD0B743F0BFA743FD1 +:10F1C800C6DE753F07BA763FC58B773FF853783F61 +:10F1D8009812793F9DC7793F02737A3FBE147B3FEF +:10F1E800CDAC7B3F283B7C3FC9BF7C3FAC3A7D3FE1 +:10F1F800CCAB7D3F23137E3FB0707E3F6DC47E3F16 +:10F20800580E7F3F6D4E7F3FAB847F3F0FB17F3FEE +:10F2180097D37F3F43EC7F3F11FB7F3F0000803F48 +:10F2280011FB7F3F43EC7F3F97D37F3F0FB17F3F79 +:10F23800AB847F3F6D4E7F3F580E7F3F6DC47E3F4E +:10F24800B0707E3F23137E3FCCAB7D3FAC3A7D3F11 +:10F25800C9BF7C3F283B7C3FCDAC7B3FBE147B3F86 +:10F2680002737A3F9DC7793F9812793FF853783FE8 +:10F27800C58B773F07BA763FC6DE753F0BFA743FFA +:10F28800DD0B743F4714733F5213723F0809713FF7 +:10F2980073F56F3F9ED86E3F93B26D3F5E836C3FB0 +:10F2A8000C4B6B3FA7096A3F3CBF683FD86B673F71 +:10F2B800880F663F59AA643F5A3C633F97C5613F30 +:10F2C8002146603F05BE5E3F532D5D3F1A945B3F6C +:10F2D8006AF2593F5348583FE595563F31DB543F52 +:10F2E8004918533F3D4D513F207A4F3F029F4D3FB4 +:10F2F800F8BB4B3F12D1493F65DE473F03E4453F2A +:10F3080001E2433F70D8413F67C73F3FF9AE3D3FF9 +:10F318003B8F3B3F4268393F233A373FF304353F41 +:10F32800C9C8323FBB85303FDE3B2E3F4AEB2B3FFF +:10F338001594293F5636273F25D2243F9967223F07 +:10F34800CBF61F3FD17F1D3FC6021B3FC07F183F32 +:10F35800D9F6153F2A68133FCDD3103FDA390E3F4F +:10F368006B9A0B3F9BF5083F824B063F3D9C033F42 +:10F37800E4E7003F275DFC3ECBE0F63EEA5AF13E6B +:10F38800BBCBEB3E7533E63E4F92E03E80E8DA3E7B +:10F398004136D53ECA7BCF3E53B9C93E15EFC33E71 +:10F3A800491DBE3E2A44B83EEF63B23ED47CAC3E13 +:10F3B800128FA63EE59AA03E86A09A3E32A0943EC1 +:10F3C800229A8E3E938E883EC07D823ECCCF783E78 +:10F3D8007F9A6C3E135C603E0115543EC2C5473EA1 +:10F3E800CF6E3B3EA2102F3EB5AB223E8340163E69 +:10F3F80087CF093E73B2FA3D2FBCE13D36BDC83D0B +:10F4080080B6AF3D04A9963D752B7B3D2EFB483D4C +:10F418002BC3163DB10AC93C920E493C00000000BE +:10F42800920E49BCB10AC9BC2BC316BD2EFB48BD00 +:10F43800752B7BBD04A996BD80B6AFBD36BDC8BDD2 +:10F448002FBCE1BD73B2FABD87CF09BE834016BE9B +:10F45800B5AB22BEA2102FBECF6E3BBEC2C547BE03 +:10F46800011554BE135C60BE7F9A6CBECCCF78BECB +:10F47800C07D82BE938E88BE229A8EBE32A094BE74 +:10F4880086A09ABEE59AA0BE128FA6BED47CACBE5A +:10F49800EF63B2BE2A44B8BE491DBEBE15EFC3BE57 +:10F4A80053B9C9BECA7BCFBE4136D5BE80E8DABEE5 +:10F4B8004F92E0BE7533E6BEBBCBEBBEEA5AF1BE57 +:10F4C800CBE0F6BE275DFCBEE4E700BF3D9C03BF72 +:10F4D800824B06BF9BF508BF6B9A0BBFDA390EBF8C +:10F4E800CDD310BF2A6813BFD9F615BFC07F18BF88 +:10F4F800C6021BBFD17F1DBFCBF61FBF996722BFB6 +:10F5080025D224BF563627BF159429BF4AEB2BBFF7 +:10F51800DE3B2EBFBB8530BFC9C832BFF30435BF41 +:10F52800233A37BF426839BF3B8F3BBFF9AE3DBF77 +:10F5380067C73FBF70D841BF01E243BF03E445BF7F +:10F5480065DE47BF12D149BFF8BB4BBF029F4DBF15 +:10F55800207A4FBF3D4D51BF491853BF31DB54BFCF +:10F56800E59556BF534858BF6AF259BF1A945BBF16 +:10F57800532D5DBF05BE5EBF214660BF97C561BF05 +:10F588005A3C63BF59AA64BF880F66BFD86B67BF70 +:10F598003CBF68BFA7096ABF0C4B6BBF5E836CBFDB +:10F5A80093B26DBF9ED86EBF73F56FBF080971BF68 +:10F5B800521372BF471473BFDD0B74BF0BFA74BFCD +:10F5C800C6DE75BF07BA76BFC58B77BFF85378BF5D +:10F5D800981279BF9DC779BF02737ABFBE147BBFEB +:10F5E800CDAC7BBF283B7CBFC9BF7CBFAC3A7DBFDD +:10F5F800CCAB7DBF23137EBFB0707EBF6DC47EBF12 +:10F60800580E7FBF6D4E7FBFAB847FBF0FB17FBFEA +:10F6180097D37FBF43EC7FBF11FB7FBF000080BF44 +:10F6280011FB7FBF43EC7FBF97D37FBF0FB17FBF75 +:10F63800AB847FBF6D4E7FBF580E7FBF6DC47EBF4A +:10F64800B0707EBF23137EBFCCAB7DBFAC3A7DBF0D +:10F65800C9BF7CBF283B7CBFCDAC7BBFBE147BBF82 +:10F6680002737ABF9DC779BF981279BFF85378BFE4 +:10F67800C58B77BF07BA76BFC6DE75BF0BFA74BFF6 +:10F68800DD0B74BF471473BF521372BF080971BFF3 +:10F6980073F56FBF9ED86EBF93B26DBF5E836CBFAC +:10F6A8000C4B6BBFA7096ABF3CBF68BFD86B67BF6D +:10F6B800880F66BF59AA64BF5A3C63BF97C561BF2C +:10F6C800214660BF05BE5EBF532D5DBF1A945BBF68 +:10F6D8006AF259BF534858BFE59556BF31DB54BF4E +:10F6E800491853BF3D4D51BF207A4FBF029F4DBFB0 +:10F6F800F8BB4BBF12D149BF65DE47BF03E445BF26 +:10F7080001E243BF70D841BF67C73FBFF9AE3DBFF5 +:10F718003B8F3BBF426839BF233A37BFF30435BF3D +:10F72800C9C832BFBB8530BFDE3B2EBF4AEB2BBFFB +:10F73800159429BF563627BF25D224BF996722BF03 +:10F74800CBF61FBFD17F1DBFC6021BBFC07F18BF2E +:10F75800D9F615BF2A6813BFCDD310BFDA390EBF4B +:10F768006B9A0BBF9BF508BF824B06BF3D9C03BF3E +:10F77800E4E700BF275DFCBECBE0F6BEEA5AF1BE67 +:10F78800BBCBEBBE7533E6BE4F92E0BE80E8DABE77 +:10F798004136D5BECA7BCFBE53B9C9BE15EFC3BE6D +:10F7A800491DBEBE2A44B8BEEF63B2BED47CACBE0F +:10F7B800128FA6BEE59AA0BE86A09ABE32A094BEBD +:10F7C800229A8EBE938E88BEC07D82BECCCF78BE74 +:10F7D8007F9A6CBE135C60BE011554BEC2C547BE9D +:10F7E800CF6E3BBEA2102FBEB5AB22BE834016BE65 +:10F7F80087CF09BE73B2FABD2FBCE1BD36BDC8BD07 +:10F8080080B6AFBD04A996BD752B7BBD2EFB48BD48 +:10F818002BC316BDB10AC9BC920E49BC00000080BA +:10F8280058060020494E4600696E66004E414E005B +:10F838006E616E00303132333435363738396162B3 +:10F848006364656600000000303132333435363782 +:10F85800383941424344454600000000286E756C23 +:10F868006C290000300000002020202020202020CB +:10F878002020202020202020303030303030303000 +:10F888003030303030303030303132333435363754 +:10F8980038396162636465666768696A6B6C6D6E46 +:10F8A8006F707172737475767778797A00000000DA +:10F8B8004E614E00496E66696E69747900000000F9 +:10F8C80042616C6C6F63207375636365656465641E +:10F8D800000000002F6D6E742F776F726B7370616C +:10F8E80063652F776F726B73706163652F4743434E +:10F8F8002D31302D706970656C696E652F6A656E83 +:10F908006B696E732D4743432D31302D70697065D7 +:10F918006C696E652D3333385F32303231313031B6 +:10F92800385F313633343531363230332F737263C2 +:10F938002F6E65776C69622F6E65776C69622F6CC4 +:10F948006962632F7374646C69622F64746F612ECB +:10F95800630000002F6D6E742F776F726B73706188 +:10F9680063652F776F726B73706163652F474343CD +:10F978002D31302D706970656C696E652F6A656E02 +:10F988006B696E732D4743432D31302D7069706557 +:10F998006C696E652D3333385F3230323131303136 +:10F9A800385F313633343531363230332F73726342 +:10F9B8002F6E65776C69622F6E65776C69622F6C44 +:10F9C8006962632F7374646C69622F6D707265630A +:10F9D8002E630000000000000080E03779C3414337 +:10F9E800176E05B5B5B89346F5F93FE9034F384D9D +:10F9F800321D30F94877825A3CBF737FDD4F157549 +:10FA0800000000000000F03F00000000000024405B +:10FA180000000000000059400000000000408F4036 +:10FA2800000000000088C34000000000006AF840A1 +:10FA38000000000080842E4100000000D0126341C5 +:10FA48000000000084D797410000000065CDCD413B +:10FA5800000000205FA00242000000E8764837421C +:10FA6800000000A2941A6D42000040E59C30A242BA +:10FA78000000901EC4BCD64200003426F56B0C432F +:10FA88000080E03779C3414300A0D88557347643D6 +:10FA980000C84E676DC1AB43003D9160E458E14337 +:10FAA800408CB5781DAF154450EFE2D6E41A4B44AC +:10FAB80092D54D06CFF08044F64AE1C7022DB544F1 +:10FAC800B49DD9794378EA44050000001900000084 +:10FAD8007D0000002C2066756E6374696F6E3A2095 +:10FAE80000000000617373657274696F6E202225CF +:10FAF8007322206661696C65643A2066696C6520CA +:10FB0800222573222C206C696E65202564257325B7 +:10FB1800730A000043000000504F5349580000008A +:10FB28002E0000002020202020202020202020201F +:10FB380020202020303030303030303030303030FD +:10FB4800303030300020202020202020202028287D +:10FB58002828282020202020202020202020202085 +:10FB680020202020208810101010101010101010C5 +:10FB780010101010100404040404040404040410F5 +:10FB88001010101010104141414141410101010183 +:10FB9800010101010101010101010101010101014D +:10FBA8001010101010104242424242420202020259 +:10FBB800020202020202020202020202020202021D +:10FBC80010101010200000000000000000000000CD +:10FBD800000000000000000000000000000000001D +:10FBE800000000000000000000000000000000000D +:10FBF80000000000000000000000000000000000FD +:10FC080000000000000000000000000000000000EC +:10FC180000000000000000000000000000000000DC +:10FC280000000000000000000000000000000000CC +:10FC380000000000000000000000000000000000BC +:10FC48000000000000000000FB21F93FFB210940F3 +:10FC58007CD91240FB2119407A6A1F407CD9224086 +:10FC6800BBFD2540FB2129403A462C407A6A2F40AB +:10FC78005C4731407CD932409C6B3440BBFD3540F9 +:10FC8800DB8F3740FB2139401BB43A403A463C40B1 +:10FC98005AD83D407A6A3F404C7E40405C474140DC +:10FCA8006C1042407CD942408CA243409C6B44403B +:10FCB800AC344540BBFD4540CBC64640DB8F474092 +:10FCC800EB584840FB21494083F9A200444E6E009E +:10FCD800FC291500D1572700DD34F50062DBC00090 +:10FCE8003C999500419043006351FE00BBDEAB0098 +:10FCF800B761C5003A6E2400D24D42004906E000C3 +:10FD080009EA2E001C92D100EB1DFE0029B11C004F +:10FD1800E83EA700F535820044BB2E009CE984002C +:10FD2800B4267000417E5F00D691390053833900B4 +:10FD38009CF439008B5F840028F9BD00F81F3B0054 +:10FD4800DEFF97000F980500112FEF000A5A8B006D +:10FD58006D1F6D00CF7E360009CB2700464FB700D8 +:10FD68009E663F002DEA5F00BA277500E5EBC700E5 +:10FD78003D7BF100F739070092528A00FB6BEA00DD +:10FD88001FB15F00085D8D00300356007BFC460004 +:10FD9800F0AB6B0020BCCF0036F49A00E3A91D003D +:10FDA8005E619100081BE60085996500A0145F005C +:10FDB8008D40680080D8FF0027734D00060631008B +:10FDC800CA561500C9A873007BE260006B8CC0009E +:10FDD800DB0F49BFE4CB1640E4CB16C0000000801F +:10FDE800DB0F4940DB0F49C0000FC93F000F4940F6 +:10FDF80000CB9640000FC9400053FB4000CB164192 +:10FE080000ED2F41000F49410031624100537B4111 +:10FE1800003A8A4100CB9641005CA34100EDAF4116 +:10FE2800007EBC41000FC94100A0D5410031E2412C +:10FE380000C2EE410053FB4100F20342003A0A427D +:10FE48000083104200CB164200141D42005C23427E +:10FE580000A5294200ED2F4200363642007E3C4282 +:10FE680000C74242000F4942A2000000F90000000A +:10FE7800830000006E0000004E00000044000000F7 +:10FE88001500000029000000FC0000002700000009 +:10FE980057000000D1000000F50000003400000009 +:10FEA800DD000000C0000000DB0000006200000070 +:10FEB80095000000990000003C000000430000008D +:10FEC8009000000041000000FE000000510000000A +:10FED80063000000AB000000DE000000BB00000073 +:10FEE800C500000061000000B70000002400000009 +:10FEF8006E0000003A000000420000004D000000C3 +:10FF0800D2000000E00000000600000049000000E8 +:10FF18002E000000EA00000009000000D1000000E7 +:10FF2800920000001C000000FE0000001D00000000 +:10FF3800EB0000001C000000B100000029000000D8 +:10FF4800A70000003E000000E8000000820000005A +:10FF580035000000F50000002E000000BB00000086 +:10FF68004400000084000000E90000009C0000003C +:10FF78007000000026000000B40000005F000000D0 +:10FF88007E000000410000003900000091000000E0 +:10FF9800D600000039000000830000005300000074 +:10FFA80039000000F40000009C00000084000000FC +:10FFB8005F0000008B000000BD000000F900000099 +:10FFC800280000003B0000001F000000F8000000AF +:10FFD80097000000FF000000DE00000005000000A0 +:10FFE800980000000F000000EF0000002F00000044 +:08FFF800110000008B00000065 +:020000040802F0 +:100000005A0000000A0000006D0000001F00000000 +:100010006D000000360000007E000000CF000000F0 +:1000200027000000CB00000009000000B70000001E +:100030004F000000460000003F0000006600000086 +:100040009E0000005F000000EA0000002D0000009C +:100050007500000027000000BA000000C700000083 +:10006000EB000000E5000000F10000007B00000054 +:100070003D0000000700000039000000F70000000C +:100080008A0000005200000092000000EA00000018 +:100090006B000000FB0000005F000000B1000000EA +:1000A0001F0000008D0000005D000000080000003F +:1000B0005600000003000000300000004600000071 +:1000C000FC0000007B0000006B000000AB000000A3 +:1000D000F0000000CF000000BC0000002000000085 +:1000E0009A000000F4000000360000001D0000002F +:1000F000A9000000E3000000910000006100000082 +:100100005E000000E60000001B0000000800000088 +:100110006500000099000000850000005F000000FD +:1001200014000000A0000000680000004000000073 +:100130008D000000FF000000D800000080000000DB +:100140004D00000073000000270000003100000097 +:100150000600000006000000150000005600000028 +:10016000CA00000073000000A8000000C9000000E1 +:1001700060000000E20000007B000000C000000002 +:100180008C0000006B00000000000040FB21F93FE4 +:10019000000000002D44743E000000809846F83CAA +:1001A0000000006051CC783B00000080831BF039D8 +:1001B0000000004020257A38000000802282E336CB +:1001C000000000001DF3693502000000030000007C +:1001D00004000000060000000000C93F0000F039E4 +:1001E0000000DA370000A2330000842E0000502BFC +:1001F0000000C2270000D0220000C41F0000C61B60 +:10020000000044170400000007000000090000007F +:100210003863ED3EDA0F493F5E987B3FDA0FC93F06 +:100220006937AC3168212233B40F14336821A2330B +:080230009C09FE7F01000000A3 +:08023800216D0108E501000839 +:04024000C1010008F0 +:100244000100000010000000177C0008B37B0008C8 +:10025400997A000800000000C17800081D7A00089F +:10026400E579000800000000000000000000000024 +:100274009D790008557900080D7900080179000876 +:1002840009024300020100C0320904000001020215 +:1002940001000524001001052401000104240202C8 +:1002A4000524060001070582030800100904010063 +:1002B400020A000000070501024000000705810250 +:1002C400400000000A060002000000400100000097 +:1002D400AAAAAAAA0024F40055BA00080DBA000874 +:1002E40011BA000829BA000815BA000871BD00083F +:1002F4007DBD000841BE00081DBE000809BE0008FF +:100304005DBE000881BE0008120100020202004026 +:100314008304CA000002010203010000040309046B +:100324001A030000000000000000000000000000AC +:10033400000000000000000000000E000050C34751 +:10034400CDCCCC3DCDCCCC3DCDCCCC3DCDCCCC3D21 +:10035400CDCCCC3DCDCCCC3D0050C347CDCCCC3D59 +:10036400CDCCCC3DCDCCCC3DCDCCCC3DCDCCCC3D01 +:10037400CDCCCC3D0050C347CDCCCC3DCDCCCC3D39 +:10038400CDCCCC3DCDCCCC3DCDCCCC3DCDCCCC3DE1 +:100394000050C347CDCCCC3DCDCCCC3DCDCCCC3D19 +:1003A400CDCCCC3DCDCCCC3DCDCCCC3D0000C84259 +:1003B400CDCCCC3DCDCCCC3DCDCCCC3DCDCCCC3DB1 +:1003C400CDCCCC3DCDCCCC3D0000C8420000891141 +:1003D40012239B322446AD573665BF74488CC19DA9 +:1003E4005AAFD3BE6CCAE5DB7EE9F7F88110080189 +:1003F40093331A22A5562C47B7753E64C99C408D89 +:10040400DBBF52AEEDDA64CBFFF976E802218B3024 +:10041400100299132667AF763444BD554AADC3BC68 +:10042400588ED19F6EEBE7FA7CC8F5D983310A2048 +:1004340091121803A7772E66B5543C45CBBD42AC48 +:10044400D99E508FEFFB66EAFDD874C904428D53E0 +:1004540016619F702004A9153227BB364CCEC5DF28 +:100464005EEDD7FC6888E1997AABF3BA85520C4308 +:1004740097711E60A1142805B3373A26CDDE44CF08 +:10048400DFFD56ECE9986089FBBB72AA06638F72A4 +:1004940014409D512225AB343006B9174EEFC7FEE8 +:1004A4005CCCD5DD6AA9E3B8788AF19B87730E62C8 +:1004B40095501C41A3352A24B1163807CFFF46EEC8 +:1004C400DDDC54CDEBB962A8F99A708B0884819570 +:1004D4001AA793B62CC2A5D33EE1B7F04008C919B8 +:1004E400522BDB3A644EED5F766DFF7C8994008578 +:1004F4009BB712A6ADD224C3BFF136E0C118480998 +:10050400D33B5A2AE55E6C4FF77D7E6C0AA583B413 +:10051400188691972EE3A7F23CC0B5D14229CB3877 +:10052400500AD91B666FEF7E744CFD5D8BB502A437 +:1005340099961087AFF326E2BDD034C1C3394A2857 +:10054400D11A580BE77F6E6EF55C7C4D0CC685D7CF +:100554001EE597F42880A1913AA3B3B2444ACD5B37 +:100564005669DF78600CE91D722FFB3E8DD604C7F7 +:100574009FF516E4A9902081BBB332A2C55A4C4B17 +:10058400D7795E68E11C680DF33F7A2E0EE787F693 +:100594001CC495D52AA1A3B03882B193466BCF7AF7 +:1005A4005448DD59622DEB3C700EF91F8FF706E6B7 +:1005B4009DD414C5ABB122A0B9923083C77B4E6AD7 +:1005C400D5585C49E33D6A2CF11E780F3333EB3A7E +:1005D40058A08B3A010000004D6573736167655F35 +:1005E4004D616E616765720000000000000000004C +:1005F40000000000000000000000000000000000F7 +:10060400000000000000000018650020FF01000049 +:1006140000000000000000000000000008000000CE +:1006240000000000000000000000000000000000C6 +:1006340000000000000000000000000000000000B6 +:100644000000000000000000001865002000020007 +:10065400000000000000000000000000000800008E +:100664000000000000000000000000000000000086 +:100674000000000000000000000000000000000076 +:100684000000000000000000000018650020FF02C8 +:10069400000000000000000000000000000008004E +:1006A4000000000000000000000000000000000046 +:1006B4000000000000000000000000000000000036 +:1006C400000000000000000000000040650020FF62 +:1006D400010000000000000000000000000000080D +:1006E4000000000000000000000000000000000006 +:1006F40000000000000000000000000000000000F6 +:100704000000000000000000000000004065002020 +:1007140000020000000000000000000000000000D3 +:1007240008000000000000000000000000000000BD +:1007340000000000000000000000000000000000B5 +:100744000000000000000000000000000040650000 +:1007540020FF020000000000000000000000000074 +:10076400000800000000000000000000000000007D +:100774000000000000000000000000000000000075 +:1007840000000000000000000000000000001865E8 +:100794000020FE0100000000000000000000000036 +:1007A400000008000000000000000000000000003D +:1007B4000000000000000000000000000000000035 +:1007C400000000000000000000000000000000180D +:1007D400650020FE02000000000000000000000090 +:1007E40000000008000000000000000000000000FD +:1007F40000000000000000000000000000000000F5 +:1008040000000000000000000000000000000000E4 +:1008140040650020FE010000000000000000000010 +:1008240000000000080000000000000000000000BC +:1008340000000000000000000000000000000000B4 +:1008440000000000000000000000000000000000A4 +:100854000040650020FE02000000000000000000CF +:10086400000000000008000000000000000000007C +:100874000000000000000000000000000000000074 +:100884000000000000000000000000000000000064 +:100894000000FFFF5806002000000000440900206B +:1008A400AC090020140A0020000000000000000031 +:1008B4000000000000000000000000000000000034 +:1008C4000000000000000000000000000000000024 +:1008D4000000000000000000000000000000000014 +:1008E4000000000000000000000000000000000004 +:1008F40000000000000000000000000000000000F4 +:1009040000000000000000000000000000000000E3 +:1009140000000000000000000000000000000000D3 +:1009240000000000000000000000000000000000C3 +:1009340000000000000000000000000000000000B3 +:1009440001000000000000000E33CDAB34126DE650 +:10095400ECDE05000B0000000000000000000000B9 +:100964000000000000000000000000000000000083 +:100974000000000000000000000000000000000073 +:100984000000000000000000000000000000000063 +:100994000000000000000000000000000000000053 +:1009A4000000000000000000000000000000000043 +:1009B4000000000000000000000000000000000033 +:1009C4000000000000000000000000000000000023 +:1009D4000000000000000000000000000000000013 +:1009E4000000000000000000000000000000000003 +:1009F40000000000000000000000000000000000F3 +:100A040000000000000000000000000000000000E2 +:100A140000000000000000000000000000000000D2 +:100A240000000000000000000000000000000000C2 +:100A340000000000000000000000000000000000B2 +:100A440000000000000000000000000000000000A2 +:100A54000000000000000000000000000000000092 +:100A64000000000000000000000000000000000082 +:100A74000000000000000000000000000000000072 +:100A84000000000000000000000000000000000062 +:100A94000000000000000000000000000000000052 +:100AA4000000000000000000000000000000000042 +:100AB4000000000000000000000000000000000032 +:100AC4000000000000000000000000000000000022 +:100AD4000000000000000000000000000000000012 +:100AE4000000000000000000000000000000000002 +:100AF40000000000000000000000000000000000F2 +:100B040000000000000000000000000000000000E1 +:100B140000000000000000000000000000000000D1 +:100B240000000000000000000000000000000000C1 +:100B340000000000000000000000000000000000B1 +:100B440000000000000000000000000000000000A1 +:100B54000000000000000000000000000000000091 +:100B64000000000000000000000000000000000081 +:100B74000000000000000000000000000000000071 +:100B84000000000000000000000000000000000061 +:100B94000000000000000000000000000000000051 +:100BA4000000000000000000000000000000000041 +:100BB4000000000000000000000000000000000031 +:100BC4000000000000000000000000000000000021 +:100BD4000000000000000000000000000000000011 +:100BE4000000000000000000000000000000000001 +:100BF40000000000000000000000000000000000F1 +:100C040000000000000000000000000000000000E0 +:100C140000000000000000000000000000000000D0 +:100C240000000000000000000000000000000000C0 +:100C340000000000000000000000000000000000B0 +:100C440000000000000000000000000000000000A0 +:100C54000000000000000000000000000000000090 +:100C64000000000000000000000000000000000080 +:100C74000000000000000000000000000000000070 +:100C84000000000000000000000000000000000060 +:100C94000000000000000000000000000000000050 +:100CA4000000000000000000000000000000000040 +:100CB4000000000000000000000000000000000030 +:100CC4000000000000000000800A0020800A0020CC +:100CD400880A0020880A0020900A0020900A002038 +:100CE400980A0020980A0020A00A0020A00A0020E8 +:100CF400A80A0020A80A0020B00A0020B00A002098 +:100D0400B80A0020B80A0020C00A0020C00A002047 +:100D1400C80A0020C80A0020D00A0020D00A0020F7 +:100D2400D80A0020D80A0020E00A0020E00A0020A7 +:100D3400E80A0020E80A0020F00A0020F00A002057 +:100D4400F80A0020F80A0020000B0020000B002005 +:100D5400080B0020080B0020100B0020100B0020B3 +:100D6400180B0020180B0020200B0020200B002063 +:100D7400280B0020280B0020300B0020300B002013 +:100D8400380B0020380B0020400B0020400B0020C3 +:100D9400480B0020480B0020500B0020500B002073 +:100DA400580B0020580B0020600B0020600B002023 +:100DB400680B0020680B0020700B0020700B0020D3 +:100DC400780B0020780B0020800B0020800B002083 +:100DD400880B0020880B0020900B0020900B002033 +:100DE400980B0020980B0020A00B0020A00B0020E3 +:100DF400A80B0020A80B0020B00B0020B00B002093 +:100E0400B80B0020B80B0020C00B0020C00B002042 +:100E1400C80B0020C80B0020D00B0020D00B0020F2 +:100E2400D80B0020D80B0020E00B0020E00B0020A2 +:100E3400E80B0020E80B0020F00B0020F00B002052 +:100E4400F80B0020F80B0020000C0020000C002000 +:100E5400080C0020080C0020100C0020100C0020AE +:100E6400180C0020180C0020200C0020200C00205E +:100E7400280C0020280C0020300C0020300C00200E +:100E8400380C0020380C0020400C0020400C0020BE +:100E9400480C0020480C0020500C0020500C00206E +:100EA400580C0020580C0020600C0020600C00201E +:100EB400680C0020680C0020700C0020700C0020CE +:100EC400780C0020780C0020800C0020800C00207E +:100ED400880C0020880C0020900C0020900C00202E +:100EE400980C0020980C0020A00C0020A00C0020DE +:100EF400A80C0020A80C0020B00C0020B00C00208E +:100F0400B80C0020B80C0020C00C0020C00C00203D +:100F1400C80C0020C80C0020D00C0020D00C0020ED +:100F2400D80C0020D80C0020E00C0020E00C00209D +:100F3400E80C0020E80C0020F00C0020F00C00204D +:100F4400F80C0020F80C0020000D0020000D0020FB +:100F5400080D0020080D0020100D0020100D0020A9 +:100F6400180D0020180D0020200D0020200D002059 +:100F7400280D0020280D0020300D0020300D002009 +:100F8400380D0020380D0020400D0020400D0020B9 +:100F9400480D0020480D0020500D0020500D002069 +:100FA400580D0020580D0020600D0020600D002019 +:100FB400680D0020680D0020700D0020700D0020C9 +:100FC400780D0020780D0020800D0020800D002079 +:100FD400880D0020880D0020900D0020900D002029 +:100FE400980D0020980D0020A00D0020A00D0020D9 +:100FF400A80D0020A80D0020B00D0020B00D002089 +:10100400B80D0020B80D0020C00D0020C00D002038 +:10101400C80D0020C80D0020D00D0020D00D0020E8 +:10102400D80D0020D80D0020E00D0020E00D002098 +:10103400E80D0020E80D0020F00D0020F00D002048 +:10104400F80D0020F80D0020000E0020000E0020F6 +:10105400080E0020080E0020100E0020100E0020A4 +:10106400180E0020180E0020200E0020200E002054 +:10107400280E0020280E0020300E0020300E002004 +:10108400380E0020380E0020400E0020400E0020B4 +:10109400480E0020480E0020500E0020500E002064 +:1010A400580E0020580E0020600E0020600E002014 +:1010B400680E0020680E0020700E0020700E0020C4 +:1010C400780E0020780E0020FFFFFFFF00000200D2 +:1010D400D09D00204300000000000000000000003C +:1010E40000000000000000000000000000000000FC +:1010F40000000000430000000000000000000000A9 +:1011040000000000000000000000000000000000DB +:101114000000000043000000000000000000000088 +:1011240000000000000000000000000000000000BB +:101134000000000043000000000000000000000068 +:10114400000000000000000000000000000000009B +:101154000000000043000000000000000000000048 +:10116400000000000000000000000000000000007B +:101174000000000043000000000000000000000028 +:10118400000000000000000000000000000000005B +:101194000000000043000000000000000000000008 +:1011A400000000000000000000000000000000003B +:1011B40000000000359F0108458B01080000000075 +:1011C4004CFB010828FB0108E8FA0108E8FA0108C9 +:1011D400E8FA0108E8FA0108E8FA0108E8FA01085F +:1011E400E8FA0108E8FA0108E8FA0108FFFFFFFF3E +:1011F400FFFFFFFFFFFFFFFFFFFF00000100415360 +:101204004349490000000000000000000000000005 +:101214000000000000000000000000000000415336 +:1012240043494900000000000000000000000000E5 +:1012340000000000000000000000000000000000AA +:040000050800BEA58C +:00000001FF diff --git a/cmake-build-debug/basic_framework.map b/cmake-build-debug/basic_framework.map new file mode 100644 index 0000000..b98014b --- /dev/null +++ b/cmake-build-debug/basic_framework.map @@ -0,0 +1,8695 @@ +Archive member included to satisfy reference by file (symbol) + +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (arm_power_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_trans_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_sub_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_mult_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_inverse_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_init_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (arm_mat_add_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj (arm_sin_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj (arm_cos_f32) +D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) (sinTable_f32) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj (__aeabi_dmul) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (__aeabi_dsub) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj (__aeabi_ddiv) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (__aeabi_dcmplt) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj (__aeabi_d2iz) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj (__aeabi_d2f) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj (__aeabi_uldivmod) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) (__udivmoddi4) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_dvmd_tls.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) (__aeabi_ldiv0) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj (__errno) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o (exit) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) (_global_impure_ptr) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o (__libc_init_array) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj (__itoa) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj (malloc) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) (_malloc_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memcpy.o) + CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj (memcpy) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o (memset) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) (__malloc_lock) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) (_sbrk_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj (sprintf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj (strcat) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj (strcmp) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj (strcpy) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strlen.o) + CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj (strlen) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj (strnlen) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) (_svfprintf_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) (__utoa) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj (vsprintf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) (__call_exitprocs) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) (atexit) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (_dtoa_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) (__libc_fini_array) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) (_free_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (_localeconv_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) (__retarget_lock_acquire_recursive) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memchr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (memchr) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) (_Balloc) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) (errno) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (frexp) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (strncpy) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (__ssprint_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) (__register_exitproc) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) (__assert_func) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) (_calloc_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) (fiprintf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) (__global_locale) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) (__ascii_mbtowc) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) (memmove) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) (_realloc_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) (_vfiprintf_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) (__ascii_wctomb) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) (__swsetup_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) (abort) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) (_ctype_) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) (_fflush_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) (__sinit) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) (_fputwc_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) (__sfvwrite_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) (_fwalk) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) (__smakebuf_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) (raise) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) (_kill_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) (__sread) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) (__swbuf_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) (_wcrtomb_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) (_write_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) (_close_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) (_fclose_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) (_fstat_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) (_isatty_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) (_lseek_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) (_read_r) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) (__aeabi_dcmpun) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (cos) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (sin) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj (cosf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj (sinf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj (truncf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (log) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (acosf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (asinf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj (atan2f) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (powf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj (sqrtf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) (__ieee754_log) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) (__ieee754_rem_pio2) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) (__ieee754_acosf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) (__ieee754_asinf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) (__ieee754_atan2f) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) (__ieee754_powf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) (__ieee754_rem_pio2f) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) (__ieee754_sqrtf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) (__kernel_cos) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) (__kernel_rem_pio2) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) (__kernel_sin) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) (__kernel_cosf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) (__kernel_rem_pio2f) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) (__kernel_sinf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) (__math_uflowf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) (fabs) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) (floor) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) (nan) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) (scalbn) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) (atanf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) (fabsf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) (finitef) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) (floorf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) (nanf) +d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) (scalbnf) + +Discarded input sections + + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + .data 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .rodata 0x00000000 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .text 0x00000000 0x7c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .ARM.extab 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .ARM.exidx 0x00000000 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .ARM.attributes + 0x00000000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DeInit + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_InitTick + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetTickPrio + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_SetTickFreq + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetTickFreq + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_SuspendTick + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_ResumeTick + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetHalVersion + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetREVID + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetDEVID + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_EnableDBGSleepMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_DisableDBGSleepMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_EnableDBGStopMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_DisableDBGStopMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_EnableDBGStandbyMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DBGMCU_DisableDBGStandbyMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_EnableCompensationCell + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_DisableCompensationCell + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetUIDw0 + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetUIDw1 + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text.HAL_GetUIDw2 + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_DeInit + 0x00000000 0x3a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Start + 0x00000000 0x144 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Stop + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_PollForConversion + 0x00000000 0xb8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_PollForEvent + 0x00000000 0x7e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Start_IT + 0x00000000 0x150 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Stop_IT + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Start_DMA + 0x00000000 0x19c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Stop_DMA + 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_GetValue + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_ConvCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_ConvHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.ADC_DMAHalfConvCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_LevelOutOfWindowCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_ErrorCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_IRQHandler + 0x00000000 0x142 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.ADC_DMAError + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.ADC_DMAConvCplt + 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_AnalogWDGConfig + 0x00000000 0x76 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_GetState + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.ADC_MultiModeDMAError + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.ADC_MultiModeDMAHalfConvCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.ADC_MultiModeDMAConvCplt + 0x00000000 0x62 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedStart + 0x00000000 0x104 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedStart_IT + 0x00000000 0x10c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedStop + 0x00000000 0x62 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedPollForConversion + 0x00000000 0xac CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedStop_IT + 0x00000000 0x6a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedGetValue + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_MultiModeStart_DMA + 0x00000000 0x130 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_MultiModeStop_DMA + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_MultiModeGetValue + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedConvCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_InjectedConfigChannel + 0x00000000 0x210 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text.HAL_ADCEx_MultiModeConfigChannel + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_info 0x00000000 0xcaa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_abbrev 0x00000000 0x293 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_loc 0x00000000 0xa82 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_aranges + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_ranges 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_line 0x00000000 0xcec CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_str 0x00000000 0x9f7 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .debug_frame 0x00000000 0x18c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_Stop + 0x00000000 0x62 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_DeInit + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_RequestSleep + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_WakeUp + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_IsSleepActive + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_AbortTxRequest + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_IsTxMessagePending + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_GetTxTimestamp + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_DeactivateNotification + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_RxFifo0MsgPendingCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_RxFifo1MsgPendingCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_GetState + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text.HAL_CAN_ResetError + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_DisableIRQ + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_SystemReset + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_SYSTICK_Config + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_MPU_Disable + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_MPU_Enable + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_MPU_ConfigRegion + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_GetPriorityGrouping + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_GetPriority + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_SetPendingIRQ + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_GetPendingIRQ + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_ClearPendingIRQ + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_NVIC_GetActive + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_SYSTICK_CLKSourceConfig + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_SYSTICK_Callback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text.HAL_SYSTICK_IRQHandler + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_DeInit + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_Accumulate + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_Calculate + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text.HAL_CRC_GetState + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_DeInit + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_Start + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_Stop + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_Start_DMA + 0x00000000 0xfc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_Stop_DMA + 0x00000000 0x56 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_SetValue + 0x00000000 0x2e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_ConvCpltCallbackCh1 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.DAC_DMAConvCpltCh1 + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_ConvHalfCpltCallbackCh1 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.DAC_DMAHalfConvCpltCh1 + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_ErrorCallbackCh1 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.DAC_DMAErrorCh1 + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_DMAUnderrunCallbackCh1 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_IRQHandler + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_GetValue + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_GetState + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text.HAL_DAC_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_DualStart + 0x00000000 0x62 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_DualStop + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_TriangleWaveGenerate + 0x00000000 0x42 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_NoiseWaveGenerate + 0x00000000 0x42 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_DualSetValue + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_ConvCpltCallbackCh2 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_ConvHalfCpltCallbackCh2 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_ErrorCallbackCh2 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_DMAUnderrunCallbackCh2 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.HAL_DACEx_DualGetValue + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.DAC_DMAConvCpltCh2 + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.DAC_DMAHalfConvCpltCh2 + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text.DAC_DMAErrorCh2 + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_info 0x00000000 0x84f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_abbrev 0x00000000 0x1f8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_loc 0x00000000 0x442 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_aranges + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_ranges 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_line 0x00000000 0x57b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_str 0x00000000 0x713 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .debug_frame 0x00000000 0x110 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_DeInit + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_Start + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_PollForTransfer + 0x00000000 0x128 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_RegisterCallback + 0x00000000 0x5a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_UnRegisterCallback + 0x00000000 0x6e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.HAL_DMA_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .text.DMA_MultiBufferSetConfig + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .text.HAL_DMAEx_MultiBufferStart + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .text.HAL_DMAEx_MultiBufferStart_IT + 0x00000000 0xf00 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .text.HAL_DMAEx_ChangeMemory + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_info 0x00000000 0x5ac CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_abbrev 0x00000000 0x1b6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_loc 0x00000000 0x422 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_aranges + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_ranges 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_line 0x00000000 0xa6a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_str 0x00000000 0x58a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .debug_frame 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_SetConfigLine + 0x00000000 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_GetConfigLine + 0x00000000 0xa8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_ClearConfigLine + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_RegisterCallback + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_GetHandle + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_IRQHandler + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_GetPending + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_ClearPending + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text.HAL_EXTI_GenerateSWI + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_info 0x00000000 0x5c4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_abbrev 0x00000000 0x1e0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_loc 0x00000000 0x45f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_aranges + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_ranges 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_line 0x00000000 0x658 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_str 0x00000000 0x422 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .debug_frame 0x00000000 0xd4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.FLASH_Program_DoubleWord + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.FLASH_Program_Word + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.FLASH_Program_HalfWord + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.FLASH_Program_Byte + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_Program_IT + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_Unlock + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_Lock + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_OB_Unlock + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_OB_Lock + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_GetError + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.FLASH_WaitForLastOperation + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_Program + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_OB_Launch + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_MassErase + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_BOR_LevelConfig + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_GetUser + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_GetWRP + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_GetRDP + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_GetBOR + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_EnableWRP + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_DisableWRP + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_RDP_LevelConfig + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.FLASH_OB_UserConfig + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.HAL_FLASHEx_OBProgram + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.HAL_FLASHEx_OBGetConfig + 0x00000000 0x22 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.HAL_FLASHEx_Erase_IT + 0x00000000 0x6c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text.HAL_FLASHEx_Erase + 0x00000000 0x94 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .debug_info 0x00000000 0x6b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .debug_abbrev 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .debug_aranges + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .debug_line 0x00000000 0x1d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .debug_str 0x00000000 0x1fb CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text.HAL_GPIO_DeInit + 0x00000000 0x134 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text.HAL_GPIO_ReadPin + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text.HAL_GPIO_TogglePin + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text.HAL_GPIO_LockPin + 0x00000000 0x2e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text.HAL_GPIO_EXTI_Callback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_IsAcknowledgeFailed + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnFlagUntilTimeout + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnMasterAddressFlagUntilTimeout + 0x00000000 0xaa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_MasterRequestWrite + 0x00000000 0xb4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_MasterRequestRead + 0x00000000 0x120 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnTXEFlagUntilTimeout + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_RequestMemoryWrite + 0x00000000 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_RequestMemoryRead + 0x00000000 0x154 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnBTFFlagUntilTimeout + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnRXNEFlagUntilTimeout + 0x00000000 0x6a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnSTOPFlagUntilTimeout + 0x00000000 0x4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_DeInit + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Transmit + 0x00000000 0x178 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Receive + 0x00000000 0x2e8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Transmit + 0x00000000 0x1a4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Receive + 0x00000000 0x180 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Transmit_IT + 0x00000000 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Receive_IT + 0x00000000 0xe4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Transmit_IT + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Receive_IT + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Transmit_DMA + 0x00000000 0x190 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Receive_DMA + 0x00000000 0x190 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Transmit_DMA + 0x00000000 0x108 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Receive_DMA + 0x00000000 0x108 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Write + 0x00000000 0x164 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Read + 0x00000000 0x2e4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Write_IT + 0x00000000 0xe4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Read_IT + 0x00000000 0xf4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Write_DMA + 0x00000000 0x1d8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Mem_Read_DMA + 0x00000000 0x21c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_IsDeviceReady + 0x00000000 0x194 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Seq_Transmit_IT + 0x00000000 0x100 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Seq_Transmit_DMA + 0x00000000 0x1cc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Seq_Receive_IT + 0x00000000 0x150 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Seq_Receive_DMA + 0x00000000 0x23c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Seq_Transmit_IT + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Seq_Transmit_DMA + 0x00000000 0x19c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Seq_Receive_IT + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Slave_Seq_Receive_DMA + 0x00000000 0x19c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_EnableListen_IT + 0x00000000 0x3e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_DisableListen_IT + 0x00000000 0x42 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_MasterRxCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_MemRxCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_DMAError + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_DMAXferCplt + 0x00000000 0x122 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_Master_Abort_IT + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_GetMode + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .debug_info 0x00000000 0x6b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .debug_abbrev 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .debug_aranges + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .debug_line 0x00000000 0x1d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .debug_str 0x00000000 0x1f4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DeInit + 0x00000000 0x2e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_Stop + 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_WKUP_IRQHandler + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DataOutStageCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DataInStageCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_SetupStageCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_SOFCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ResetCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_SuspendCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ResumeCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ISOINIncompleteCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ConnectCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DisconnectCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DevConnect + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DevDisconnect + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_EP_Flush + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_ActivateRemoteWakeup + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_DeActivateRemoteWakeup + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_SetTestMode + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .text.HAL_PCDEx_BCD_Callback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DeInit + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnableBkUpAccess + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DisableBkUpAccess + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_ConfigPVD + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnablePVD + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DisablePVD + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnableWakeUpPin + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DisableWakeUpPin + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnterSLEEPMode + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnterSTOPMode + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnterSTANDBYMode + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_PVDCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_PVD_IRQHandler + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnableSleepOnExit + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DisableSleepOnExit + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_EnableSEVOnPend + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text.HAL_PWR_DisableSEVOnPend + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_info 0x00000000 0x730 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_abbrev 0x00000000 0x180 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_aranges + 0x00000000 0xa0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_ranges 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_line 0x00000000 0x4a1 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_str 0x00000000 0x582 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .debug_frame 0x00000000 0x138 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_EnableBkUpReg + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_DisableBkUpReg + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_EnableFlashPowerDown + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_DisableFlashPowerDown + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_GetVoltageRange + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text.HAL_PWREx_ControlVoltageScaling + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_info 0x00000000 0x44e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_abbrev 0x00000000 0x16d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_loc 0x00000000 0xb5 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_aranges + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_ranges 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_line 0x00000000 0x369 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_str 0x00000000 0x433 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .debug_frame 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_DeInit + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_MCOConfig + 0x00000000 0x9c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_EnableCSS + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_DisableCSS + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_GetOscConfig + 0x00000000 0xcc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_CSSCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text.HAL_RCC_NMI_IRQHandler + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text.HAL_RCCEx_GetPeriphCLKConfig + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text.HAL_RCCEx_GetPeriphCLKFreq + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text.HAL_RCCEx_EnablePLLI2S + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text.HAL_RCCEx_DisablePLLI2S + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text.HAL_RCC_DeInit + 0x00000000 0x13c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_DeInit + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GenerateRandomNumber + 0x00000000 0x6e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GenerateRandomNumber_IT + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GetRandomNumber + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GetRandomNumber_IT + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_ReadLastRandomNumber + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_ReadyDataCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_ErrorCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_IRQHandler + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GetState + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text.HAL_RNG_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DeactivateAlarm + 0x00000000 0xb8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_AlarmAEventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_AlarmIRQHandler + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_PollForAlarmAEvent + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DST_Add1Hour + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DST_Sub1Hour + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DST_SetStoreOperation + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DST_ClearStoreOperation + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DST_ReadStoreOperation + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_GetState + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_DeInit + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.RTC_ByteToBcd2 + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_SetTime + 0x00000000 0xbe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_SetDate + 0x00000000 0x9c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_SetAlarm + 0x00000000 0x178 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_SetAlarm_IT + 0x00000000 0x1b4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.RTC_Bcd2ToByte + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_GetTime + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_GetDate + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text.HAL_RTC_GetAlarm + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetTimeStamp + 0x00000000 0x7e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetTimeStamp_IT + 0x00000000 0xa0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateTimeStamp + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_GetTimeStamp + 0x00000000 0x86 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetTamper + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetTamper_IT + 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateTamper + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_TimeStampEventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_Tamper1EventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_Tamper2EventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_TamperTimeStampIRQHandler + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_PollForTimeStampEvent + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_PollForTamper1Event + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_PollForTamper2Event + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetWakeUpTimer + 0x00000000 0xcc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetWakeUpTimer_IT + 0x00000000 0xfc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateWakeUpTimer + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_GetWakeUpTimer + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_WakeUpTimerEventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_WakeUpTimerIRQHandler + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_PollForWakeUpTimerEvent + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_BKUPWrite + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_BKUPRead + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetCoarseCalib + 0x00000000 0x56 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateCoarseCalib + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetSmoothCalib + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetSynchroShift + 0x00000000 0xaa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetCalibrationOutPut + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateCalibrationOutPut + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_SetRefClock + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DeactivateRefClock + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_EnableBypassShadow + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_DisableBypassShadow + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_AlarmBEventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text.HAL_RTCEx_PollForAlarmBEvent + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_info 0x00000000 0x12b4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_abbrev 0x00000000 0x20b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_loc 0x00000000 0x1190 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_aranges + 0x00000000 0x130 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_ranges 0x00000000 0x120 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_line 0x00000000 0x176a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_str 0x00000000 0xafc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .debug_frame 0x00000000 0x38c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_AbortRx_ISR + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_AbortTx_ISR + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_EndRxTransaction + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_DeInit + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Transmit + 0x00000000 0x1b8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Receive + 0x00000000 0x180 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Transmit_IT + 0x00000000 0xa8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TransmitReceive_IT + 0x00000000 0xec CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Receive_IT + 0x00000000 0xdc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Transmit_DMA + 0x00000000 0xe0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TransmitReceive_DMA + 0x00000000 0x150 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Receive_DMA + 0x00000000 0xfc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Abort + 0x00000000 0x144 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_DMAPause + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_DMAResume + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_DMAStop + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TxCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_RxCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TxRxCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TxHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMAHalfTransmitCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_RxHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMAHalfReceiveCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_TxRxHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMAHalfTransmitReceiveCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_CloseTx_ISR + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_TxISR_8BIT + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_TxISR_16BIT + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_CloseRx_ISR + 0x00000000 0x56 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_RxISR_8BIT + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_RxISR_16BIT + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_CloseRxTx_ISR + 0x00000000 0xb0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_2linesTxISR_8BIT + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_2linesRxISR_8BIT + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_2linesTxISR_16BIT + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_2linesRxISR_16BIT + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMAError + 0x00000000 0x22 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMATransmitCplt + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMAReceiveCplt + 0x00000000 0x6e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMATransmitReceiveCplt + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_AbortCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Abort_IT + 0x00000000 0x15c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMARxAbortCallback + 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_DMATxAbortCallback + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI2_SetConfig + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI3_SetConfig + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI4_SetConfig + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_DeInit + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_Start + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_Stop + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_Stop_IT + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_Start_DMA + 0x00000000 0xd4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_Stop_DMA + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_DeInit + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_DeInit + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_DeInit + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_DeInit + 0x00000000 0x4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_DeInit + 0x00000000 0x4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_MultiWriteStart + 0x00000000 0x1a8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_WriteStart + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_WriteStop + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_MultiReadStart + 0x00000000 0x1a8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_ReadStart + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurst_ReadStop + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_GenerateEvent + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_ConfigTI1Input + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_ReadCapturedValue + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PeriodElapsedCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMAPeriodElapsedCplt + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PeriodElapsedHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMAPeriodElapsedHalfCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMACaptureCplt + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_CaptureHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMACaptureHalfCplt + 0x00000000 0x3e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_PulseFinishedCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMADelayPulseCplt + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMADelayPulseHalfCplt + 0x00000000 0x3e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMATriggerCplt + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_TriggerHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMATriggerHalfCplt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_ErrorCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_DMAError + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Base_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_GetActiveChannel + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_GetChannelState + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_DMABurstState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Init + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_Init + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Init + 0x00000000 0xb6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI1_SetConfig + 0x00000000 0x7c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_ConfigChannel + 0x00000000 0xc4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_ConfigChannel + 0x00000000 0xfa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_ConfigOCrefClear + 0x00000000 0xfa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_SlaveTimer_SetConfig + 0x00000000 0xb8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_SlaveConfigSynchro + 0x00000000 0x52 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_SlaveConfigSynchro_IT + 0x00000000 0x52 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Start + 0x00000000 0x104 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Stop + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Start_IT + 0x00000000 0x14c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Stop_IT + 0x00000000 0xdc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Start_DMA + 0x00000000 0x26c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OC_Stop_DMA + 0x00000000 0xf4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_Stop + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_Start_IT + 0x00000000 0x14c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_Stop_IT + 0x00000000 0xdc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_Start_DMA + 0x00000000 0x26c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_PWM_Stop_DMA + 0x00000000 0xf4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Start + 0x00000000 0x130 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Stop + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Start_IT + 0x00000000 0x174 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Stop_IT + 0x00000000 0xd0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Start_DMA + 0x00000000 0x258 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_IC_Stop_DMA + 0x00000000 0xe6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_Start + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_Stop + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_Start_IT + 0x00000000 0x98 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_OnePulse_Stop_IT + 0x00000000 0x94 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Start + 0x00000000 0xcc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Stop + 0x00000000 0xc4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Start_IT + 0x00000000 0xf6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Stop_IT + 0x00000000 0xee CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Start_DMA + 0x00000000 0x23c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.HAL_TIM_Encoder_Stop_DMA + 0x00000000 0x106 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.TIM_CCxNChannelCmd + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.TIM_DMAErrorCCxN + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.TIM_DMADelayPulseNCplt + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Init + 0x00000000 0xd4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_DeInit + 0x00000000 0x4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Start + 0x00000000 0xbc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Stop + 0x00000000 0x42 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Start_IT + 0x00000000 0xc8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Stop_IT + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Start_DMA + 0x00000000 0xf0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_Stop_DMA + 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Start + 0x00000000 0xf8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Stop + 0x00000000 0x76 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Start_IT + 0x00000000 0x130 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Stop_IT + 0x00000000 0xc2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Start_DMA + 0x00000000 0x214 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OCN_Stop_DMA + 0x00000000 0xc0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Start + 0x00000000 0xf8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Stop + 0x00000000 0x76 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Start_IT + 0x00000000 0x130 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Stop_IT + 0x00000000 0xc2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Start_DMA + 0x00000000 0x214 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_PWMN_Stop_DMA + 0x00000000 0xc0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OnePulseN_Start + 0x00000000 0x7a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OnePulseN_Stop + 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OnePulseN_Start_IT + 0x00000000 0x8e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_OnePulseN_Stop_IT + 0x00000000 0x86 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_ConfigCommutEvent + 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_ConfigCommutEvent_IT + 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_ConfigCommutEvent_DMA + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_RemapConfig + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.TIMEx_DMACommutationCplt + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_CommutHalfCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.TIMEx_DMACommutationHalfCplt + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_HallSensor_GetState + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text.HAL_TIMEx_GetChannelNState + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_MspInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_HalfDuplex_Init + 0x00000000 0x6a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_LIN_Init + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_MultiProcessor_Init + 0x00000000 0x8a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_MspDeInit + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_DeInit + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Receive + 0x00000000 0xe4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_DMAPause + 0x00000000 0xac CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_DMAResume + 0x00000000 0xb4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_DMAStop + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UARTEx_ReceiveToIdle + 0x00000000 0x138 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Abort + 0x00000000 0xf2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortTransmit + 0x00000000 0x6c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortReceive + 0x00000000 0xa6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_ErrorCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Abort_IT + 0x00000000 0x124 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMARxAbortCallback + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMATxAbortCallback + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortTransmitCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortTransmit_IT + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMATxOnlyAbortCallback + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortReceiveCpltCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_AbortReceive_IT + 0x00000000 0xbc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMARxOnlyAbortCallback + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UARTEx_RxEventCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_LIN_SendBreak + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_MultiProcessor_EnterMuteMode + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_MultiProcessor_ExitMuteMode + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_HalfDuplex_EnableTransmitter + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_HalfDuplex_EnableReceiver + 0x00000000 0x36 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_GetState + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_GetError + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_Start_Receive_IT + 0x00000000 0x3a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Receive_IT + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UARTEx_ReceiveToIdle_IT + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Receive_DMA + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .debug_line 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .debug_str 0x00000000 0x160 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_ActivateDedicatedEndpoint + 0x00000000 0x9c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_DeactivateDedicatedEndpoint + 0x00000000 0xa0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_StopDevice + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_ClearInterrupts + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_HostInit + 0x00000000 0xf8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_InitFSLSPClkSel + 0x00000000 0x3e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_ResetPort + 0x00000000 0x3e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_DriveVbus + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_GetHostSpeed + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_GetCurrentFrame + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_HC_Init + 0x00000000 0x128 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_HC_ReadInterrupt + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_HC_Halt + 0x00000000 0xe6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_DoPing + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_HC_StartXfer + 0x00000000 0x16c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_StopHost + 0x00000000 0x92 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_ActivateRemoteWakeup + 0x00000000 0x1a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_DeActivateRemoteWakeup + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .text.USBD_DeInit + 0x00000000 0x32 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .text.USBD_Stop + 0x00000000 0x1a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .text.USBD_RunTestMode + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .text.USBD_GetRxCount + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.makeCmsisPriority + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.inHandlerMode + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osKernelRunning + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osKernelSysTick + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadGetId + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadTerminate + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadYield + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadSetPriority + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadGetPriority + 0x00000000 0x22 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osTimerCreate + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osTimerStart + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osTimerStop + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osTimerDelete + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSignalSet + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSignalWait + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMutexCreate + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMutexWait + 0x00000000 0x60 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMutexRelease + 0x00000000 0x5a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMutexDelete + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSemaphoreCreate + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSemaphoreWait + 0x00000000 0x5e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSemaphoreRelease + 0x00000000 0x5a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSemaphoreDelete + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osPoolCreate + 0x00000000 0x6c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osPoolAlloc + 0x00000000 0x6e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osPoolCAlloc + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osPoolFree + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessageCreate + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessagePut + 0x00000000 0x66 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessageGet + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailCreate + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailAlloc + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailCAlloc + 0x00000000 0x22 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailPut + 0x00000000 0x66 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailGet + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMailFree + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSystickHandler + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadSuspend + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadResume + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadSuspendAll + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadResumeAll + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osDelayUntil + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osAbortDelay + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osThreadList + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessagePeek + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessageWaiting + 0x00000000 0x1a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessageAvailableSpace + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osMessageDelete + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osRecursiveMutexCreate + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osRecursiveMutexRelease + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osRecursiveMutexWait + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osSemaphoreGetCount + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .debug_info 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .debug_abbrev 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .debug_aranges + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .debug_line 0x00000000 0x1d CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .debug_str 0x00000000 0x1f4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.prvTestWaitCondition + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupCreateStatic + 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupCreate + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupWaitBits + 0x00000000 0x108 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupClearBits + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupGetBitsFromISR + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupSetBits + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.xEventGroupSync + 0x00000000 0xd8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.vEventGroupDelete + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.vEventGroupSetBitsCallback + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text.vEventGroupClearBitsCallback + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_info 0x00000000 0xda0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_abbrev 0x00000000 0x2c1 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_loc 0x00000000 0x98d CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_aranges + 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_ranges 0x00000000 0x98 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_line 0x00000000 0xaf2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_str 0x00000000 0x79e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .debug_frame 0x00000000 0x158 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text.vPortEndScheduler + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text.vPortValidateInterruptPriority + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.xPortGetFreeHeapSize + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.vPortInitialiseBlocks + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.vPortGetHeapStats + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvGetDisinheritPriorityAfterTimeout + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvIsQueueFull + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvIsQueueEmpty + 0x00000000 0x1a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvCopyDataToQueue + 0x00000000 0x76 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvCopyDataFromQueue + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvUnlockQueue + 0x00000000 0x6e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGenericReset + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvInitialiseNewQueue + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGenericCreateStatic + 0x00000000 0x94 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGenericCreate + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x46 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueCreateCountingSemaphore + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGenericSend + 0x00000000 0x188 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.prvInitialiseMutex + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueCreateMutex + 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueCreateMutexStatic + 0x00000000 0x1e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGenericSendFromISR + 0x00000000 0xce CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueGiveFromISR + 0x00000000 0xb2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueReceive + 0x00000000 0x15e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueSemaphoreTake + 0x00000000 0x1a6 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueuePeek + 0x00000000 0x15e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueReceiveFromISR + 0x00000000 0xa8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueuePeekFromISR + 0x00000000 0x7e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.uxQueueMessagesWaiting + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.uxQueueSpacesAvailable + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.xQueueIsQueueFullFromISR + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.vQueueAddToRegistry + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.pcQueueGetName + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.vQueueUnregisterQueue + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text.vQueueDelete + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .bss.xQueueRegistry + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_info 0x00000000 0x247f CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_abbrev 0x00000000 0x369 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_loc 0x00000000 0x1788 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_aranges + 0x00000000 0x118 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_ranges 0x00000000 0x1d8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_line 0x00000000 0x1e27 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_str 0x00000000 0xc08 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .debug_frame 0x00000000 0x394 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvBytesInBuffer + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvInitialiseNewStreamBuffer + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvWriteBytesToBuffer + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvWriteMessageToBuffer + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvReadBytesFromBuffer + 0x00000000 0x9c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.prvReadMessageFromBuffer + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferGenericCreate + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferGenericCreateStatic + 0x00000000 0xa6 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.vStreamBufferDelete + 0x00000000 0x2e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferReset + 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferSpacesAvailable + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferBytesAvailable + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferSend + 0x00000000 0x108 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferSendFromISR + 0x00000000 0xa4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferReceive + 0x00000000 0xea CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferNextMessageLengthBytes + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferReceiveFromISR + 0x00000000 0xa2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferIsEmpty + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferIsFull + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x52 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x52 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_info 0x00000000 0x1b3d CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_abbrev 0x00000000 0x313 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_loc 0x00000000 0x1876 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_aranges + 0x00000000 0xc8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_ranges 0x00000000 0xb8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_line 0x00000000 0x1637 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_str 0x00000000 0x986 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .debug_frame 0x00000000 0x350 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvTaskIsTaskSuspended + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.uxTaskPriorityGet + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.uxTaskPriorityGetFromISR + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskPrioritySet + 0x00000000 0xe8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskResume + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskResumeFromISR + 0x00000000 0xa4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskEndScheduler + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGetTickCount + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGetTickCountFromISR + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.uxTaskGetNumberOfTasks + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.pcTaskGetName + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskDelayUntil + 0x00000000 0xa4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskCatchUpTicks + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskSuspend + 0x00000000 0xe8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskPlaceOnEventList + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskRemoveFromEventList + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskRemoveFromUnorderedEventList + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskSetTimeOutState + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskInternalSetTimeOutState + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskCheckForTimeOut + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskMissedYield + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGetCurrentTaskHandle + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGetSchedulerState + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskPriorityInherit + 0x00000000 0xac CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskPriorityDisinherit + 0x00000000 0xb4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskPriorityDisinheritAfterTimeout + 0x00000000 0xb4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.uxTaskResetEventItemValue + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.pvTaskIncrementMutexHeldCount + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.ulTaskNotifyTake + 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskNotifyWait + 0x00000000 0x98 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGenericNotify + 0x00000000 0x100 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskGenericNotifyFromISR + 0x00000000 0x134 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.vTaskNotifyGiveFromISR + 0x00000000 0xd0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskNotifyStateClear + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.ulTaskNotifyValueClear + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .debug_info 0x00000000 0x72 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .debug_abbrev 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .debug_aranges + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .debug_line 0x00000000 0x1d CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .debug_str 0x00000000 0x1f2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text._PostTerminalSwitch + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_ReadUpBufferNoLock + 0x00000000 0xac CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_ReadNoLock + 0x00000000 0xa0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_ReadUpBuffer + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_Read + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WriteWithOverwriteNoLock + 0x00000000 0x118 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WriteDownBufferNoLock + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WriteDownBuffer + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WriteString + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_PutCharSkipNoLock + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_PutCharSkip + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_PutChar + 0x00000000 0x98 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_GetKey + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WaitKey + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_HasKey + 0x00000000 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_HasData + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_HasDataUp + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_AllocDownBuffer + 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_AllocUpBuffer + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_ConfigUpBuffer + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_ConfigDownBuffer + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_SetNameUpBuffer + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_SetNameDownBuffer + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_SetFlagsUpBuffer + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_SetFlagsDownBuffer + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_SetTerminal + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_TerminalOut + 0x00000000 0xec CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_GetAvailWriteSpace + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_GetBytesInBuffer + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .bss._ActiveTerminal + 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .rodata._aTerminalId + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text 0x00000000 0x94 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .debug_line 0x00000000 0xc7 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .debug_info 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .debug_abbrev 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .debug_aranges + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .debug_str 0x00000000 0x9b CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .ARM.attributes + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .text.HAL_ADC_MspDeInit + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .text.HAL_CAN_MspDeInit + 0x00000000 0x8c CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .text.HAL_CRC_MspDeInit + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .text.HAL_DAC_MspDeInit + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .text.HAL_I2C_MspDeInit + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .text.HAL_RNG_MspDeInit + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .text.HAL_RTC_MspDeInit + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .text.HAL_SPI_MspDeInit + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .text.HAL_SuspendTick + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .text.HAL_ResumeTick + 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text.initialise_monitor_handles + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._open 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._wait 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._unlink 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._times 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._stat 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._link 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._fork 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text._execve 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .bss.__env 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .data.environ 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .text.SystemCoreClockUpdate + 0x00000000 0xa0 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .text.HAL_TIM_Base_MspDeInit + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .text.HAL_UART_MspDeInit + 0x00000000 0xb8 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text.HAL_PCD_MspDeInit + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text.USBD_LL_Delay + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text.USBD_LL_DeInit + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text.USBD_LL_Stop + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text.USBD_LL_FlushEP + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .text 0x00000000 0x14 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.vofa_send_data + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .debug_line 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .debug_str 0x00000000 0x13e CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .text.CallbackTaskBase + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .rodata.CreateCallbackTask.str1.4 + 0x00000000 0x61 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .text.CreateCallbackTask + 0x00000000 0x90 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .bss.cbkid_list + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .bss.cbkinfo_list + 0x00000000 0x180 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .bss.sig_idx 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_info 0x00000000 0x530 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_abbrev 0x00000000 0x1ed CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_loc 0x00000000 0x1a9 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_aranges + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_ranges 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_line 0x00000000 0x39a CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_str 0x00000000 0x49a CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .debug_frame 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .rodata.CANSetDLC.str1.4 + 0x00000000 0x43 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .text.CANSetDLC + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .text.DWT_GetDeltaT64 + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .text.DWT_GetTimeline_us + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.ger_sector + 0x00000000 0xc2 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.flash_erase_address + 0x00000000 0x2a CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.flash_write_muli_address + 0x00000000 0x42 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.flash_read + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.get_next_flash_address + 0x00000000 0xf0 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text.flash_write_single_address + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .bss.data_buf.1 + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .bss.data_len.0 + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .bss.end_address.2 + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .bss.uw_address.3 + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_info 0x00000000 0x4d9 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_abbrev 0x00000000 0x174 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_loc 0x00000000 0x5a3 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_aranges + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_ranges 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_line 0x00000000 0x491 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_str 0x00000000 0x3a3 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .debug_frame 0x00000000 0xa4 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text.GPIORegister + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text.GPIOToggel + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text.GPIOSet 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text.GPIOReset + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text.GPIORead + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text.IICRegister + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text.IICSetMode + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text.IICTransmit + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text.IICReceive + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text.IICAccessMem + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .text.PrintLog + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .rodata.Float2Str.str1.4 + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .text.Float2Str + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .text.PWMStart + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .text.PWMStop 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .text.PWMStartDMA + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.SPIRegister + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.SPITransmit + 0x00000000 0x52 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.SPIRecv 0x00000000 0x56 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.SPITransRecv + 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.SPISetMode + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.HAL_SPI_RxCpltCallback + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text.HAL_SPI_TxRxCpltCallback + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .bss.idx 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .bss.spi_instance + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_info 0x00000000 0xc73 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_abbrev 0x00000000 0x247 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_loc 0x00000000 0x23a CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_aranges + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_ranges 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_line 0x00000000 0x5b4 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_str 0x00000000 0x8e2 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .debug_frame 0x00000000 0xd0 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .text.USARTIsReady + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088AccSPIFinishCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088GyroSPIFinishCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088AccINTCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088GyroINTCallback + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088GyroRead + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088AccelRead + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088AccelWriteSingleReg + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088AccelInit + 0x00000000 0xdc CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088GyroWriteSingleReg + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088GyroInit + 0x00000000 0xc4 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088Acquire + 0x00000000 0x124 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088CalibrateIMU + 0x00000000 0x340 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text.BMI088Register + 0x00000000 0xb4 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .bss.buf.4 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .bss.rx.0 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .bss.rx.2 0x00000000 0x7 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .bss.tx.1 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .data.tx.3 0x00000000 0x7 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .rodata.BMI088_Accel_Init_Table + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .rodata.BMI088_Gyro_Init_Table + 0x00000000 0x12 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_info 0x00000000 0x1fa8 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_abbrev 0x00000000 0x352 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_loc 0x00000000 0x75c CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_aranges + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_ranges 0x00000000 0xe8 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_line 0x00000000 0xbfe CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_str 0x00000000 0x1410 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .debug_frame 0x00000000 0x1a8 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .text.TFMiniRegister + 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .text.GetDistance + 0x00000000 0x58 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .rodata 0x00000000 0x5 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .bss.tfmini 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_info 0x00000000 0x8fe CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_abbrev 0x00000000 0x18a CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_loc 0x00000000 0x64 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_aranges + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_ranges 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_line 0x00000000 0x3a1 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_str 0x00000000 0x828 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .debug_frame 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .text.BuzzerRegister + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .text.AlarmSetStatus + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .text.init_crc16_tab + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .text.crc_modbus + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .text.update_crc_16 + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .bss.crc_tab16_init + 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .text.crc_8 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .text.update_crc_8 + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .rodata.sht75_crc_table + 0x00000000 0x100 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_info 0x00000000 0x186 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_abbrev 0x00000000 0xf3 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_loc 0x00000000 0x133 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_aranges + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_ranges 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_line 0x00000000 0x1d0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_str 0x00000000 0x232 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .debug_frame 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.zmalloc 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.abs_limit + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.sign 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.float_deadband + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.int16_constrain + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.loop_float_constrain + 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.theta_format + 0x00000000 0x18 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.NormOf3d + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.AverageFilter + 0x00000000 0x4c CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text.MatInit 0x00000000 0x16 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .rodata.k1 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommResetRx + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .rodata.CANCommLostCallback.str1.4 + 0x00000000 0x4d CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommLostCallback + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommRxCallback + 0x00000000 0xc0 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommInit + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommSend + 0x00000000 0x68 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommGet + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text.CANCommIsOnline + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .bss.crc8.1 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .bss.send_len.0 + 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_info 0x00000000 0xc37 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_abbrev 0x00000000 0x269 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_loc 0x00000000 0x246 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_aranges + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_ranges 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_line 0x00000000 0x6aa CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_str 0x00000000 0x800 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .debug_frame 0x00000000 0xc8 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .text.DaemonIsOnline + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.QuaternionUpdate + 0x00000000 0x96 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.QuaternionToEularAngle + 0x00000000 0xcc CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.EularAngleToQuaternion + 0x00000000 0xc8 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .text.IST8310Decode + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .text.IST8310StartTransfer + 0x00000000 0x26 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .rodata.IST8310Init.str1.4 + 0x00000000 0x39 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .text.IST8310Init + 0x00000000 0x118 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .bss.ist8310_instance + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .data.ist8310_write_reg_data_error + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_info 0x00000000 0xd9e CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_abbrev 0x00000000 0x23b CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_loc 0x00000000 0x134 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_aranges + 0x00000000 0x30 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_ranges 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_line 0x00000000 0x51f CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_str 0x00000000 0xa6d CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .debug_frame 0x00000000 0x78 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .text.LEDRegister + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .text.LEDSet 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .text.LEDSwitch + 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .text.LEDShow 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .bss.bsp_led_ins + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .bss.idx 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_info 0x00000000 0x975 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_abbrev 0x00000000 0x1ef CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_loc 0x00000000 0x61 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_aranges + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_ranges 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_line 0x00000000 0x330 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_str 0x00000000 0x868 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .debug_frame 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.CRC8_Check_Sum + 0x00000000 0x2c CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.protocol_heade_Check + 0x00000000 0x3a CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.CRC16_Check_Sum + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.Get_CRC8_Check + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.Get_CRC16_Check + 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.get_protocol_send_data + 0x00000000 0xa4 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text.get_protocol_info + 0x00000000 0x54 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .bss.crc16.2 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .bss.data_len.3 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .bss.date_length.0 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .bss.pro.1 0x00000000 0xa CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_info 0x00000000 0x505 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_abbrev 0x00000000 0x18e CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_loc 0x00000000 0x4c3 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_aranges + 0x00000000 0x50 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_ranges 0x00000000 0x40 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_line 0x00000000 0x474 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_str 0x00000000 0x39e CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .debug_frame 0x00000000 0xe0 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.uint_to_float + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorSetMode + 0x00000000 0x3c CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .rodata.HTMotorLostCallback.str1.4 + 0x00000000 0x35 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorLostCallback + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorDecode + 0x00000000 0xcc CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorCalibEncoder + 0x00000000 0x104 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorSetRef + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorStop + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorEnable + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorInit + 0x00000000 0xe8 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text.HTMotorOuterLoop + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .bss.zero_buff + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .rodata.LKMotorLostCallback.str1.4 + 0x00000000 0x39 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorLostCallback + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorDecode + 0x00000000 0x108 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorStop + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorEnable + 0x00000000 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorInit + 0x00000000 0xf0 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorSetRef + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text.LKMotorIsOnline + 0x00000000 0xc CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .text.ServoInit + 0x00000000 0x44 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .text.Servo_Motor_FreeAngle_Set + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .text.Servo_Motor_StartSTOP_Angle_Set + 0x00000000 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .text.Servo_Motor_Type_Select + 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .debug_line 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .debug_str 0x00000000 0x152 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.oled_write_byte + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_init + 0x00000000 0xe4 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_display_on + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_display_off + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_operate_gram + 0x00000000 0x5c CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_set_pos + 0x00000000 0x28 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_draw_point + 0x00000000 0x84 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_draw_line + 0x00000000 0xd8 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_show_char + 0x00000000 0x88 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_show_string + 0x00000000 0x2e CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_printf + 0x00000000 0x48 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_refresh_gram + 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text.OLED_LOGO + 0x00000000 0x74 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .bss.LCD_BUF.0 + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .bss.OLED_GRAM + 0x00000000 0x400 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .bss.ap.1 0x00000000 0x4 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .bss.cmd_data.2 + 0x00000000 0x2 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .rodata.LOGO_BMP + 0x00000000 0x400 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .rodata.asc2_1206 + 0x00000000 0x474 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_info 0x00000000 0x1166 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_abbrev 0x00000000 0x2a7 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_loc 0x00000000 0xa9c CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_aranges + 0x00000000 0x80 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_ranges 0x00000000 0x70 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_line 0x00000000 0x939 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_str 0x00000000 0x88e CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .debug_frame 0x00000000 0x1a4 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .text.Append_CRC8_Check_Sum + 0x00000000 0x1a CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .rodata.CRC8_INIT + 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .text.UICircleDraw + 0x00000000 0xf8 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .text.UIOvalDraw + 0x00000000 0x110 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .text.UIArcDraw + 0x00000000 0x138 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .text.UIIntDraw + 0x00000000 0x122 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text.RemoteControlIsOnline + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .debug_line 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .debug_str 0x00000000 0x14b CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .text.SuperCapSend + 0x00000000 0x1c CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .text.SuperCapGet + 0x00000000 0xe CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .debug_line 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .debug_str 0x00000000 0x146 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj + .text 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .data 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .bss 0x00000000 0x0 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .text.vofa_justfloat_output + 0x00000000 0xc4 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .bss.i.0 0x00000000 0x1 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_info 0x00000000 0x6c6 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_abbrev 0x00000000 0x1ce CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_loc 0x00000000 0x131 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_aranges + 0x00000000 0x20 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_ranges 0x00000000 0x10 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_line 0x00000000 0x377 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_str 0x00000000 0x68b CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .comment 0x00000000 0x4a CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .debug_frame 0x00000000 0x38 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .ARM.attributes + 0x00000000 0x34 CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .text 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .data 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .bss 0x00000000 0x0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ15_128 + 0x00000000 0x200 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ15_2048 + 0x00000000 0x2000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ15_512 + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ15_8192 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ31_128 + 0x00000000 0x400 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ31_2048 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ31_512 + 0x00000000 0x1000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.WeightsQ31_8192 + 0x00000000 0x10000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.Weights_128 + 0x00000000 0x400 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.Weights_2048 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.Weights_512 + 0x00000000 0x1000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.Weights_8192 + 0x00000000 0x10000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable1024 + 0x00000000 0xe10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable128 + 0x00000000 0x1a0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable16 + 0x00000000 0x28 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable2048 + 0x00000000 0x1dc0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable256 + 0x00000000 0x370 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable32 + 0x00000000 0x60 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable4096 + 0x00000000 0x1f80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable512 + 0x00000000 0x380 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable64 + 0x00000000 0x70 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_1024 + 0x00000000 0x7c0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_128 + 0x00000000 0xe0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_16 + 0x00000000 0x18 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_2048 + 0x00000000 0xf80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_256 + 0x00000000 0x1e0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_32 + 0x00000000 0x30 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_4096 + 0x00000000 0x1f80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_512 + 0x00000000 0x3c0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevIndexTable_fixed_64 + 0x00000000 0x70 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armBitRevTable + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armRecipTableQ15 + 0x00000000 0x80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.armRecipTableQ31 + 0x00000000 0x100 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ15_128 + 0x00000000 0x100 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ15_2048 + 0x00000000 0x1000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ15_512 + 0x00000000 0x400 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ15_8192 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ31_128 + 0x00000000 0x200 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ31_2048 + 0x00000000 0x2000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ31_512 + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factorsQ31_8192 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factors_128 + 0x00000000 0x200 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factors_2048 + 0x00000000 0x2000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factors_512 + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.cos_factors_8192 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefA + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefAQ15 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefAQ31 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefB + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefBQ15 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.realCoefBQ31 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.sinTable_q15 + 0x00000000 0x402 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.sinTable_q31 + 0x00000000 0x804 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_1024 + 0x00000000 0x2000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_1024_q15 + 0x00000000 0xc00 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_1024_q31 + 0x00000000 0x1800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_128 + 0x00000000 0x400 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_128_q15 + 0x00000000 0x180 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_128_q31 + 0x00000000 0x300 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_16 + 0x00000000 0x80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_16_q15 + 0x00000000 0x30 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_16_q31 + 0x00000000 0x60 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_2048 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_2048_q15 + 0x00000000 0x1800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_2048_q31 + 0x00000000 0x3000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_256 + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_256_q15 + 0x00000000 0x300 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_256_q31 + 0x00000000 0x600 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_32 + 0x00000000 0x100 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_32_q15 + 0x00000000 0x60 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_32_q31 + 0x00000000 0xc0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_4096 + 0x00000000 0x8000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_4096_q15 + 0x00000000 0x3000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_4096_q31 + 0x00000000 0x6000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_512 + 0x00000000 0x1000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_512_q15 + 0x00000000 0x600 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_512_q31 + 0x00000000 0xc00 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_64 + 0x00000000 0x200 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_64_q15 + 0x00000000 0xc0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_64_q31 + 0x00000000 0x180 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_1024 + 0x00000000 0x1000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_128 + 0x00000000 0x200 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_2048 + 0x00000000 0x2000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_256 + 0x00000000 0x400 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_32 + 0x00000000 0x80 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_4096 + 0x00000000 0x4000 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_512 + 0x00000000 0x800 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .rodata.twiddleCoef_rfft_64 + 0x00000000 0x100 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .text 0x00000000 0x254 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + .debug_frame 0x00000000 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + .ARM.attributes + 0x00000000 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldf3.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .ARM.extab 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_dvmd_tls.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_dvmd_tls.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .text.exit 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .debug_frame 0x00000000 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-exit.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .text.itoa 0x00000000 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .text.free 0x00000000 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memcpy.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memcpy.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .text._sprintf_r + 0x00000000 0x38 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .text.sprintf 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .debug_frame 0x00000000 0x74 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strlen.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strlen.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .text.utoa 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .text._vsprintf_r + 0x00000000 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .text.__call_exitprocs + 0x00000000 0xcc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .text.__localeconv_l + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .text.localeconv + 0x00000000 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_init + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_close + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_acquire + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_try_acquire + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_try_acquire_recursive + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .text.__retarget_lock_release + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss.__lock___arc4random_mutex + 0x00000000 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss.__lock___at_quick_exit_mutex + 0x00000000 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss.__lock___dd_hash_mutex + 0x00000000 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss.__lock___env_recursive_mutex + 0x00000000 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .bss.__lock___tz_mutex + 0x00000000 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memchr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memchr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__s2b 0x00000000 0xb4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__ulp 0x00000000 0x60 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__b2d 0x00000000 0xc0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__ratio 0x00000000 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text._mprec_log10 + 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__copybits + 0x00000000 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text.__any_on + 0x00000000 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .rodata.__mprec_tinytens + 0x00000000 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .text.cleanup_glue + 0x00000000 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .text._reclaim_reent + 0x00000000 0x90 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .rodata._svfiprintf_r.str1.4 + 0x00000000 0x2f d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .text._svfiprintf_r + 0x00000000 0xb98 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .rodata.blanks.1 + 0x00000000 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .rodata.zeroes.0 + 0x00000000 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .text.__assert + 0x00000000 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .text._fiprintf_r + 0x00000000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .text._setlocale_r + 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .text.setlocale + 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .bss._PathLocale + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .text._mbtowc_r + 0x00000000 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .text.__sprint_r + 0x00000000 0x18 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .text.vfiprintf + 0x00000000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .text._wctomb_r + 0x00000000 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .text.fflush 0x00000000 0x74 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__fp_lock + 0x00000000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__fp_unlock + 0x00000000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__sfmoreglue + 0x00000000 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text._cleanup + 0x00000000 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__sfp 0x00000000 0xc8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__sinit_lock_acquire + 0x00000000 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__sinit_lock_release + 0x00000000 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__fp_lock_all + 0x00000000 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text.__fp_unlock_all + 0x00000000 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .text.fputwc 0x00000000 0x74 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .text._fwalk 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .text.__swhatbuf_r + 0x00000000 0x60 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text._init_signal_r + 0x00000000 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text._signal_r + 0x00000000 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text._raise_r + 0x00000000 0x58 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text.__sigtramp_r + 0x00000000 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text.signal 0x00000000 0x54 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text._init_signal + 0x00000000 0x38 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text.__sigtramp + 0x00000000 0x68 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .text.__seofread + 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .text.__swbuf 0x00000000 0x18 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .text.wcrtomb 0x00000000 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .text.fclose 0x00000000 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .rodata 0x00000000 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .eh_frame 0x00000000 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + .debug_frame 0x00000000 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + .debug_frame 0x00000000 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + .debug_frame 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + .debug_frame 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .debug_frame 0x00000000 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .debug_frame 0x00000000 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + .debug_frame 0x00000000 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + .debug_frame 0x00000000 0x44 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + .debug_frame 0x00000000 0x44 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + .debug_frame 0x00000000 0x78 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .debug_frame 0x00000000 0x7c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + .debug_frame 0x00000000 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + .debug_frame 0x00000000 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .debug_frame 0x00000000 0x44 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + .debug_frame 0x00000000 0x9c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .debug_frame 0x00000000 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + .debug_frame 0x00000000 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .debug_frame 0x00000000 0x58 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + .debug_frame 0x00000000 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .debug_frame 0x00000000 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .text.__math_divzerof + 0x00000000 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .text.__math_invalidf + 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .debug_frame 0x00000000 0x80 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + .debug_frame 0x00000000 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + .debug_frame 0x00000000 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .debug_frame 0x00000000 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + .debug_frame 0x00000000 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + .debug_frame 0x00000000 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + .text 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + .data 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + .bss 0x00000000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + .debug_frame 0x00000000 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + .ARM.attributes + 0x00000000 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + +Memory Configuration + +Name Origin Length Attributes +CCMRAM 0x10000000 0x00010000 xrw +RAM 0x20000000 0x00020000 xrw +FLASH 0x08000000 0x00100000 xr +*default* 0x00000000 0xffffffff + +Linker script and memory map + +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/crt0.o +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_adc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/croutine.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/event_groups.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/queue.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/timers.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_ASM_ARMv7M.s.obj +LOAD CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/can.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/main.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj +LOAD CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/application/robot.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/adc/bsp_adc.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/bsp_tools.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/flash/bsp_flash.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/spi/bsp_spi.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/BMI088/bmi088.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/TFminiPlus/tfminiplus.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc8.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/can_comm/can_comm.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/ist8310/ist8310.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/led/led.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/master_machine/seasky_protocol.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/motor/step_motor/step_motor.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/oled/oled.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/standard_cmd/std_cmd.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/unicomm/unicomm.c.obj +LOAD CMakeFiles/basic_framework.elf.dir/modules/vofa/vofa.c.obj +LOAD D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a +START GROUP +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc.a +END GROUP +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtend.o +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x20020000 _estack = (ORIGIN (RAM) + LENGTH (RAM)) + 0x00005000 _Min_Heap_Size = 0x5000 + 0x00005000 _Min_Stack_Size = 0x5000 + +.isr_vector 0x08000000 0x188 + 0x08000000 . = ALIGN (0x4) + *(.isr_vector) + .isr_vector 0x08000000 0x188 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + 0x08000000 g_pfnVectors + 0x08000188 . = ALIGN (0x4) + +.text 0x080001c0 0x1dfc8 + 0x080001c0 . = ALIGN (0x4) + *(.text) + .text 0x080001c0 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .text 0x08000200 0x378 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + 0x08000200 __aeabi_drsub + 0x08000208 __aeabi_dsub + 0x08000208 __subdf3 + 0x0800020c __aeabi_dadd + 0x0800020c __adddf3 + 0x08000484 __floatunsidf + 0x08000484 __aeabi_ui2d + 0x080004a4 __floatsidf + 0x080004a4 __aeabi_i2d + 0x080004c8 __aeabi_f2d + 0x080004c8 __extendsfdf2 + 0x0800050c __floatundidf + 0x0800050c __aeabi_ul2d + 0x0800051c __floatdidf + 0x0800051c __aeabi_l2d + .text 0x08000578 0x424 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + 0x08000578 __aeabi_dmul + 0x08000578 __muldf3 + 0x080007cc __divdf3 + 0x080007cc __aeabi_ddiv + .text 0x0800099c 0x110 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + 0x0800099c __gtdf2 + 0x0800099c __gedf2 + 0x080009a4 __ltdf2 + 0x080009a4 __ledf2 + 0x080009ac __nedf2 + 0x080009ac __eqdf2 + 0x080009ac __cmpdf2 + 0x08000a28 __aeabi_cdrcmple + 0x08000a38 __aeabi_cdcmpeq + 0x08000a38 __aeabi_cdcmple + 0x08000a48 __aeabi_dcmpeq + 0x08000a5c __aeabi_dcmplt + 0x08000a70 __aeabi_dcmple + 0x08000a84 __aeabi_dcmpge + 0x08000a98 __aeabi_dcmpgt + .text 0x08000aac 0x50 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + 0x08000aac __aeabi_d2iz + 0x08000aac __fixdfsi + .text 0x08000afc 0xa0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + 0x08000afc __truncdfsf2 + 0x08000afc __aeabi_d2f + .text 0x08000b9c 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + 0x08000b9c __aeabi_uldivmod + .text 0x08000bcc 0x2d0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + 0x08000bcc __udivmoddi4 + .text 0x08000e9c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_dvmd_tls.o) + 0x08000e9c __aeabi_idiv0 + 0x08000e9c __aeabi_ldiv0 + .text 0x08000ea0 0x134 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memcpy.o) + 0x08000ea0 memcpy + *fill* 0x08000fd4 0xc + .text 0x08000fe0 0x2dc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + 0x08000fe8 strcmp + *fill* 0x080012bc 0x4 + .text 0x080012c0 0xdc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strlen.o) + 0x080012c0 strlen + *fill* 0x0800139c 0x4 + .text 0x080013a0 0xa0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memchr.o) + 0x080013a0 memchr + .text 0x08001440 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) + 0x08001440 __unorddf2 + 0x08001440 __aeabi_dcmpun + *(.text*) + .text.HAL_Init + 0x0800146c 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x0800146c HAL_Init + .text.HAL_IncTick + 0x080014a0 0x18 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x080014a0 HAL_IncTick + .text.HAL_GetTick + 0x080014b8 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x080014b8 HAL_GetTick + .text.HAL_Delay + 0x080014c4 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x080014c4 HAL_Delay + .text.ADC_Init + 0x080014ec 0x134 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .text.HAL_ADC_Init + 0x08001620 0x56 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + 0x08001620 HAL_ADC_Init + *fill* 0x08001676 0x2 + .text.HAL_ADC_ConfigChannel + 0x08001678 0x198 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + 0x08001678 HAL_ADC_ConfigChannel + .text.HAL_CAN_Init + 0x08001810 0x14c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001810 HAL_CAN_Init + .text.HAL_CAN_ConfigFilter + 0x0800195c 0x138 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x0800195c HAL_CAN_ConfigFilter + .text.HAL_CAN_Start + 0x08001a94 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001a94 HAL_CAN_Start + .text.HAL_CAN_AddTxMessage + 0x08001af0 0xfc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001af0 HAL_CAN_AddTxMessage + .text.HAL_CAN_GetTxMailboxesFreeLevel + 0x08001bec 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001bec HAL_CAN_GetTxMailboxesFreeLevel + .text.HAL_CAN_GetRxMessage + 0x08001c1e 0x14a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001c1e HAL_CAN_GetRxMessage + .text.HAL_CAN_GetRxFifoFillLevel + 0x08001d68 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001d68 HAL_CAN_GetRxFifoFillLevel + .text.HAL_CAN_ActivateNotification + 0x08001d8e 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001d8e HAL_CAN_ActivateNotification + .text.HAL_CAN_TxMailbox0CompleteCallback + 0x08001db2 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001db2 HAL_CAN_TxMailbox0CompleteCallback + .text.HAL_CAN_TxMailbox1CompleteCallback + 0x08001db4 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001db4 HAL_CAN_TxMailbox1CompleteCallback + .text.HAL_CAN_TxMailbox2CompleteCallback + 0x08001db6 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001db6 HAL_CAN_TxMailbox2CompleteCallback + .text.HAL_CAN_TxMailbox0AbortCallback + 0x08001db8 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001db8 HAL_CAN_TxMailbox0AbortCallback + .text.HAL_CAN_TxMailbox1AbortCallback + 0x08001dba 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dba HAL_CAN_TxMailbox1AbortCallback + .text.HAL_CAN_TxMailbox2AbortCallback + 0x08001dbc 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dbc HAL_CAN_TxMailbox2AbortCallback + .text.HAL_CAN_RxFifo0FullCallback + 0x08001dbe 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dbe HAL_CAN_RxFifo0FullCallback + .text.HAL_CAN_RxFifo1FullCallback + 0x08001dc0 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dc0 HAL_CAN_RxFifo1FullCallback + .text.HAL_CAN_SleepCallback + 0x08001dc2 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dc2 HAL_CAN_SleepCallback + .text.HAL_CAN_WakeUpFromRxMsgCallback + 0x08001dc4 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dc4 HAL_CAN_WakeUpFromRxMsgCallback + .text.HAL_CAN_ErrorCallback + 0x08001dc6 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dc6 HAL_CAN_ErrorCallback + .text.HAL_CAN_IRQHandler + 0x08001dc8 0x24a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0x08001dc8 HAL_CAN_IRQHandler + *fill* 0x08002012 0x2 + .text.HAL_NVIC_SetPriorityGrouping + 0x08002014 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + 0x08002014 HAL_NVIC_SetPriorityGrouping + .text.HAL_NVIC_SetPriority + 0x08002038 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + 0x08002038 HAL_NVIC_SetPriority + .text.HAL_NVIC_EnableIRQ + 0x080020a8 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + 0x080020a8 HAL_NVIC_EnableIRQ + .text.HAL_CRC_Init + 0x080020c4 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + 0x080020c4 HAL_CRC_Init + .text.HAL_DAC_Init + 0x080020e2 0x24 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + 0x080020e2 HAL_DAC_Init + .text.HAL_DAC_ConfigChannel + 0x08002106 0x56 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + 0x08002106 HAL_DAC_ConfigChannel + .text.DMA_SetConfig + 0x0800215c 0x2c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.DMA_CalcBaseAndBitshift + 0x08002188 0x44 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .text.DMA_CheckFifoParam + 0x080021cc 0x8e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + *fill* 0x0800225a 0x2 + .text.HAL_DMA_Init + 0x0800225c 0xcc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x0800225c HAL_DMA_Init + .text.HAL_DMA_Start_IT + 0x08002328 0x6a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x08002328 HAL_DMA_Start_IT + .text.HAL_DMA_Abort + 0x08002392 0x94 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x08002392 HAL_DMA_Abort + .text.HAL_DMA_Abort_IT + 0x08002426 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x08002426 HAL_DMA_Abort_IT + .text.HAL_DMA_IRQHandler + 0x0800244c 0x1dc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x0800244c HAL_DMA_IRQHandler + .text.HAL_DMA_GetState + 0x08002628 0x6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x08002628 HAL_DMA_GetState + *fill* 0x0800262e 0x2 + .text.FLASH_SetErrorCode + 0x08002630 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .text.HAL_FLASH_EndOfOperationCallback + 0x080026bc 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + 0x080026bc HAL_FLASH_EndOfOperationCallback + .text.HAL_FLASH_OperationErrorCallback + 0x080026be 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + 0x080026be HAL_FLASH_OperationErrorCallback + .text.HAL_FLASH_IRQHandler + 0x080026c0 0xf4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + 0x080026c0 HAL_FLASH_IRQHandler + .text.FLASH_Erase_Sector + 0x080027b4 0x54 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + 0x080027b4 FLASH_Erase_Sector + .text.FLASH_FlushCaches + 0x08002808 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + 0x08002808 FLASH_FlushCaches + .text.HAL_GPIO_Init + 0x08002868 0x1e4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + 0x08002868 HAL_GPIO_Init + .text.HAL_GPIO_WritePin + 0x08002a4c 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + 0x08002a4c HAL_GPIO_WritePin + .text.HAL_GPIO_EXTI_IRQHandler + 0x08002a58 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + 0x08002a58 HAL_GPIO_EXTI_IRQHandler + .text.I2C_Master_SB + 0x08002a74 0xa8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_Master_ADD10 + 0x08002b1c 0x2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_Master_ADDR + 0x08002b46 0x206 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_SlaveTransmit_BTF + 0x08002d4c 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_SlaveReceive_BTF + 0x08002d6c 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_WaitOnSTOPRequestThroughIT + 0x08002d8c 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_ConvertOtherXferOptions + 0x08002dd4 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + *fill* 0x08002df2 0x2 + .text.HAL_I2C_Init + 0x08002df4 0x1bc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08002df4 HAL_I2C_Init + .text.HAL_I2C_MasterTxCpltCallback + 0x08002fb0 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08002fb0 HAL_I2C_MasterTxCpltCallback + .text.HAL_I2C_SlaveTxCpltCallback + 0x08002fb2 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08002fb2 HAL_I2C_SlaveTxCpltCallback + .text.I2C_SlaveTransmit_TXE + 0x08002fb4 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_SlaveRxCpltCallback + 0x08003000 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08003000 HAL_I2C_SlaveRxCpltCallback + .text.I2C_SlaveReceive_RXNE + 0x08003002 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_AddrCallback + 0x0800304e 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x0800304e HAL_I2C_AddrCallback + .text.I2C_Slave_ADDR + 0x08003050 0x5a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_ListenCpltCallback + 0x080030aa 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x080030aa HAL_I2C_ListenCpltCallback + .text.I2C_Slave_AF + 0x080030ac 0x94 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_MemTxCpltCallback + 0x08003140 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08003140 HAL_I2C_MemTxCpltCallback + .text.I2C_MasterTransmit_BTF + 0x08003142 0x9e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_MemoryTransmit_TXE_BTF + 0x080031e0 0xbe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_MasterTransmit_TXE + 0x0800329e 0xd0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_MasterReceive_BTF + 0x0800336e 0x128 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_ErrorCallback + 0x08003496 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08003496 HAL_I2C_ErrorCallback + .text.I2C_MasterReceive_RXNE + 0x08003498 0xf6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_AbortCpltCallback + 0x0800358e 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x0800358e HAL_I2C_AbortCpltCallback + .text.I2C_DMAAbort + 0x08003590 0xe4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_ITError + 0x08003674 0x178 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.I2C_Slave_STOPF + 0x080037ec 0x18c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .text.HAL_I2C_EV_IRQHandler + 0x08003978 0x1a0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08003978 HAL_I2C_EV_IRQHandler + .text.HAL_I2C_ER_IRQHandler + 0x08003b18 0xc4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x08003b18 HAL_I2C_ER_IRQHandler + .text.PCD_WriteEmptyTxFifo + 0x08003bdc 0xd0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_Init + 0x08003cac 0x12e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08003cac HAL_PCD_Init + .text.HAL_PCD_Start + 0x08003dda 0x42 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08003dda HAL_PCD_Start + .text.PCD_EP_OutXfrComplete_int + 0x08003e1c 0x104 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.PCD_EP_OutSetupPacket_int + 0x08003f20 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .text.HAL_PCD_SetAddress + 0x08003f70 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08003f70 HAL_PCD_SetAddress + .text.HAL_PCD_EP_Open + 0x08003f98 0x8a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08003f98 HAL_PCD_EP_Open + .text.HAL_PCD_EP_Close + 0x08004022 0x72 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004022 HAL_PCD_EP_Close + .text.HAL_PCD_EP_Receive + 0x08004094 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004094 HAL_PCD_EP_Receive + .text.HAL_PCD_EP_GetRxCount + 0x080040f2 0x12 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x080040f2 HAL_PCD_EP_GetRxCount + .text.HAL_PCD_EP_Transmit + 0x08004104 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004104 HAL_PCD_EP_Transmit + .text.HAL_PCD_EP_SetStall + 0x08004162 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004162 HAL_PCD_EP_SetStall + .text.HAL_PCD_EP_ClrStall + 0x080041ea 0x76 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x080041ea HAL_PCD_EP_ClrStall + .text.HAL_PCD_EP_Abort + 0x08004260 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004260 HAL_PCD_EP_Abort + .text.HAL_PCD_IRQHandler + 0x08004294 0x5c4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0x08004294 HAL_PCD_IRQHandler + .text.HAL_PCDEx_SetTxFiFo + 0x08004858 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + 0x08004858 HAL_PCDEx_SetTxFiFo + .text.HAL_PCDEx_SetRxFiFo + 0x080048a4 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + 0x080048a4 HAL_PCDEx_SetRxFiFo + .text.HAL_PCDEx_LPM_Callback + 0x080048ac 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + 0x080048ac HAL_PCDEx_LPM_Callback + *fill* 0x080048ae 0x2 + .text.HAL_RCC_OscConfig + 0x080048b0 0x3f8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x080048b0 HAL_RCC_OscConfig + .text.HAL_RCC_GetSysClockFreq + 0x08004ca8 0xa4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004ca8 HAL_RCC_GetSysClockFreq + .text.HAL_RCC_ClockConfig + 0x08004d4c 0x160 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004d4c HAL_RCC_ClockConfig + .text.HAL_RCC_GetHCLKFreq + 0x08004eac 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004eac HAL_RCC_GetHCLKFreq + .text.HAL_RCC_GetPCLK1Freq + 0x08004eb8 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004eb8 HAL_RCC_GetPCLK1Freq + .text.HAL_RCC_GetPCLK2Freq + 0x08004ed8 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004ed8 HAL_RCC_GetPCLK2Freq + .text.HAL_RCC_GetClockConfig + 0x08004ef8 0x3c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x08004ef8 HAL_RCC_GetClockConfig + .text.HAL_RCCEx_PeriphCLKConfig + 0x08004f34 0x154 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + 0x08004f34 HAL_RCCEx_PeriphCLKConfig + .text.HAL_RNG_Init + 0x08005088 0x2e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + 0x08005088 HAL_RNG_Init + .text.HAL_RTC_WaitForSynchro + 0x080050b6 0x32 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + 0x080050b6 HAL_RTC_WaitForSynchro + .text.RTC_EnterInitMode + 0x080050e8 0x46 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + 0x080050e8 RTC_EnterInitMode + .text.RTC_ExitInitMode + 0x0800512e 0x2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + 0x0800512e RTC_ExitInitMode + .text.HAL_RTC_Init + 0x08005158 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + 0x08005158 HAL_RTC_Init + .text.SPI_WaitFlagStateUntilTimeout + 0x080051e4 0xd4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.SPI_EndRxTxTransaction + 0x080052b8 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.HAL_SPI_Init + 0x08005320 0xbe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + 0x08005320 HAL_SPI_Init + .text.HAL_SPI_TransmitReceive + 0x080053de 0x238 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + 0x080053de HAL_SPI_TransmitReceive + .text.HAL_SPI_ErrorCallback + 0x08005616 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + 0x08005616 HAL_SPI_ErrorCallback + .text.HAL_SPI_IRQHandler + 0x08005618 0x124 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + 0x08005618 HAL_SPI_IRQHandler + .text.SPI_DMAAbortOnError + 0x0800573c 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .text.TIM_OC1_SetConfig + 0x0800574c 0x68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_OC3_SetConfig + 0x080057b4 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_OC4_SetConfig + 0x08005824 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI1_ConfigInputStage + 0x08005874 0x26 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_TI2_ConfigInputStage + 0x0800589a 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .text.TIM_ITRx_SetConfig + 0x080058c2 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + *fill* 0x080058d2 0x2 + .text.HAL_TIM_Base_Start_IT + 0x080058d4 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x080058d4 HAL_TIM_Base_Start_IT + .text.HAL_TIM_OC_MspInit + 0x0800595c 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x0800595c HAL_TIM_OC_MspInit + .text.HAL_TIM_PWM_MspInit + 0x0800595e 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x0800595e HAL_TIM_PWM_MspInit + .text.HAL_TIM_OC_DelayElapsedCallback + 0x08005960 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005960 HAL_TIM_OC_DelayElapsedCallback + .text.HAL_TIM_IC_CaptureCallback + 0x08005962 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005962 HAL_TIM_IC_CaptureCallback + .text.HAL_TIM_TriggerCallback + 0x08005964 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005964 HAL_TIM_TriggerCallback + .text.HAL_TIM_IRQHandler + 0x08005966 0x17a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005966 HAL_TIM_IRQHandler + .text.TIM_Base_SetConfig + 0x08005ae0 0xc8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005ae0 TIM_Base_SetConfig + .text.HAL_TIM_Base_Init + 0x08005ba8 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005ba8 HAL_TIM_Base_Init + .text.HAL_TIM_OC_Init + 0x08005c00 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005c00 HAL_TIM_OC_Init + .text.HAL_TIM_PWM_Init + 0x08005c58 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005c58 HAL_TIM_PWM_Init + .text.TIM_OC2_SetConfig + 0x08005cb0 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005cb0 TIM_OC2_SetConfig + .text.HAL_TIM_OC_ConfigChannel + 0x08005d20 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005d20 HAL_TIM_OC_ConfigChannel + .text.HAL_TIM_PWM_ConfigChannel + 0x08005d7e 0xdc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005d7e HAL_TIM_PWM_ConfigChannel + .text.TIM_ETR_SetConfig + 0x08005e5a 0x1a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005e5a TIM_ETR_SetConfig + .text.HAL_TIM_ConfigClockSource + 0x08005e74 0xfe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005e74 HAL_TIM_ConfigClockSource + .text.TIM_CCxChannelCmd + 0x08005f72 0x1e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005f72 TIM_CCxChannelCmd + .text.HAL_TIM_PWM_Start + 0x08005f90 0x104 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x08005f90 HAL_TIM_PWM_Start + .text.HAL_TIMEx_MasterConfigSynchronization + 0x08006094 0x8c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + 0x08006094 HAL_TIMEx_MasterConfigSynchronization + .text.HAL_TIMEx_ConfigBreakDeadTime + 0x08006120 0x52 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + 0x08006120 HAL_TIMEx_ConfigBreakDeadTime + .text.HAL_TIMEx_CommutCallback + 0x08006172 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + 0x08006172 HAL_TIMEx_CommutCallback + .text.HAL_TIMEx_BreakCallback + 0x08006174 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + 0x08006174 HAL_TIMEx_BreakCallback + .text.UART_EndTxTransfer + 0x08006176 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_EndRxTransfer + 0x08006196 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_Transmit_IT + 0x080061f2 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + *fill* 0x08006252 0x2 + .text.UART_SetConfig + 0x08006254 0x110 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_WaitOnFlagUntilTimeout + 0x08006364 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_Init + 0x080063ec 0x5e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x080063ec HAL_UART_Init + .text.HAL_UART_Transmit + 0x0800644a 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x0800644a HAL_UART_Transmit + .text.HAL_UART_Transmit_IT + 0x08006522 0x4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006522 HAL_UART_Transmit_IT + .text.HAL_UART_Transmit_DMA + 0x08006570 0x9c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006570 HAL_UART_Transmit_DMA + .text.HAL_UART_TxCpltCallback + 0x0800660c 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x0800660c HAL_UART_TxCpltCallback + .text.UART_DMATransmitCplt + 0x0800660e 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_EndTransmit_IT + 0x0800665a 0x1a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_TxHalfCpltCallback + 0x08006674 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006674 HAL_UART_TxHalfCpltCallback + .text.UART_DMATxHalfCplt + 0x08006676 0xa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.HAL_UART_RxCpltCallback + 0x08006680 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006680 HAL_UART_RxCpltCallback + .text.HAL_UART_RxHalfCpltCallback + 0x08006682 0x2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006682 HAL_UART_RxHalfCpltCallback + .text.UART_DMAError + 0x08006684 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMAAbortOnError + 0x080066dc 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_Receive_IT + 0x080066ec 0xe2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + *fill* 0x080067ce 0x2 + .text.HAL_UART_IRQHandler + 0x080067d0 0x280 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x080067d0 HAL_UART_IRQHandler + .text.UART_DMARxHalfCplt + 0x08006a50 0x1a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_DMAReceiveCplt + 0x08006a6a 0x96 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .text.UART_Start_Receive_DMA + 0x08006b00 0xa8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006b00 UART_Start_Receive_DMA + .text.HAL_UARTEx_ReceiveToIdle_DMA + 0x08006ba8 0x70 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0x08006ba8 HAL_UARTEx_ReceiveToIdle_DMA + .text.USB_CoreReset + 0x08006c18 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .text.USB_CoreInit + 0x08006c68 0x8a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006c68 USB_CoreInit + *fill* 0x08006cf2 0x2 + .text.USB_SetTurnaroundTime + 0x08006cf4 0xe4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006cf4 USB_SetTurnaroundTime + .text.USB_EnableGlobalInt + 0x08006dd8 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006dd8 USB_EnableGlobalInt + .text.USB_DisableGlobalInt + 0x08006de4 0xc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006de4 USB_DisableGlobalInt + .text.USB_FlushTxFifo + 0x08006df0 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006df0 USB_FlushTxFifo + .text.USB_FlushRxFifo + 0x08006e40 0x4c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006e40 USB_FlushRxFifo + .text.USB_SetDevSpeed + 0x08006e8c 0xe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006e8c USB_SetDevSpeed + *fill* 0x08006e9a 0x2 + .text.USB_DevInit + 0x08006e9c 0x190 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08006e9c USB_DevInit + .text.USB_GetDevSpeed + 0x0800702c 0x22 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800702c USB_GetDevSpeed + .text.USB_ActivateEndpoint + 0x0800704e 0x9c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800704e USB_ActivateEndpoint + *fill* 0x080070ea 0x2 + .text.USB_DeactivateEndpoint + 0x080070ec 0xe0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080070ec USB_DeactivateEndpoint + .text.USB_EP0StartXfer + 0x080071cc 0x124 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080071cc USB_EP0StartXfer + .text.USB_EPStopXfer + 0x080072f0 0xbe CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080072f0 USB_EPStopXfer + .text.USB_WritePacket + 0x080073ae 0x2e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080073ae USB_WritePacket + .text.USB_EPStartXfer + 0x080073dc 0x234 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080073dc USB_EPStartXfer + .text.USB_ReadPacket + 0x08007610 0x54 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08007610 USB_ReadPacket + .text.USB_EPSetStall + 0x08007664 0x5a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08007664 USB_EPSetStall + .text.USB_EPClearStall + 0x080076be 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080076be USB_EPClearStall + .text.USB_SetDevAddress + 0x0800771a 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800771a USB_SetDevAddress + .text.USB_DevConnect + 0x0800773a 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800773a USB_DevConnect + .text.USB_DevDisconnect + 0x08007756 0x1c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08007756 USB_DevDisconnect + .text.USB_ReadInterrupts + 0x08007772 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08007772 USB_ReadInterrupts + .text.USB_ReadDevAllOutEpInterrupt + 0x0800777a 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800777a USB_ReadDevAllOutEpInterrupt + .text.USB_ReadDevAllInEpInterrupt + 0x0800778a 0x10 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800778a USB_ReadDevAllInEpInterrupt + .text.USB_ReadDevOutEPInterrupt + 0x0800779a 0x12 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800779a USB_ReadDevOutEPInterrupt + .text.USB_ReadDevInEPInterrupt + 0x080077ac 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080077ac USB_ReadDevInEPInterrupt + .text.USB_GetMode + 0x080077d4 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080077d4 USB_GetMode + .text.USB_SetCurrentMode + 0x080077dc 0x62 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x080077dc USB_SetCurrentMode + .text.USB_ActivateSetup + 0x0800783e 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x0800783e USB_ActivateSetup + *fill* 0x0800785e 0x2 + .text.USB_EP0_OutStart + 0x08007860 0x60 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0x08007860 USB_EP0_OutStart + .text.USBD_CDC_EP0_RxReady + 0x080078c0 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_GetDeviceQualifierDescriptor + 0x08007900 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007900 USBD_CDC_GetDeviceQualifierDescriptor + .text.USBD_CDC_GetOtherSpeedCfgDesc + 0x0800790c 0x48 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_GetFSCfgDesc + 0x08007954 0x48 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_GetHSCfgDesc + 0x0800799c 0x48 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_DataOut + 0x080079e4 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_DataIn + 0x08007a1c 0x7c CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_Setup + 0x08007a98 0x11a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_DeInit + 0x08007bb2 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_Init + 0x08007c16 0xee CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .text.USBD_CDC_RegisterInterface + 0x08007d04 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007d04 USBD_CDC_RegisterInterface + .text.USBD_CDC_SetTxBuffer + 0x08007d1a 0x1c CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007d1a USBD_CDC_SetTxBuffer + .text.USBD_CDC_SetRxBuffer + 0x08007d36 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007d36 USBD_CDC_SetRxBuffer + .text.USBD_CDC_TransmitPacket + 0x08007d4e 0x3a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007d4e USBD_CDC_TransmitPacket + .text.USBD_CDC_ReceivePacket + 0x08007d88 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x08007d88 USBD_CDC_ReceivePacket + .text.USBD_Init + 0x08007dc0 0x2e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007dc0 USBD_Init + .text.USBD_RegisterClass + 0x08007dee 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007dee USBD_RegisterClass + .text.USBD_Start + 0x08007e22 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007e22 USBD_Start + .text.USBD_SetClassConfig + 0x08007e2a 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007e2a USBD_SetClassConfig + .text.USBD_ClrClassConfig + 0x08007e3c 0x12 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007e3c USBD_ClrClassConfig + .text.USBD_LL_SetupStage + 0x08007e4e 0x58 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007e4e USBD_LL_SetupStage + .text.USBD_LL_Reset + 0x08007ea6 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007ea6 USBD_LL_Reset + .text.USBD_LL_SetSpeed + 0x08007f0a 0x6 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f0a USBD_LL_SetSpeed + .text.USBD_LL_Suspend + 0x08007f10 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f10 USBD_LL_Suspend + .text.USBD_LL_Resume + 0x08007f24 0x1a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f24 USBD_LL_Resume + .text.USBD_LL_SOF + 0x08007f3e 0x22 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f3e USBD_LL_SOF + .text.USBD_LL_IsoINIncomplete + 0x08007f60 0x2e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f60 USBD_LL_IsoINIncomplete + .text.USBD_LL_IsoOUTIncomplete + 0x08007f8e 0x2e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007f8e USBD_LL_IsoOUTIncomplete + .text.USBD_LL_DevConnected + 0x08007fbc 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007fbc USBD_LL_DevConnected + .text.USBD_LL_DevDisconnected + 0x08007fc0 0x20 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007fc0 USBD_LL_DevDisconnected + .text.USBD_CoreFindIF + 0x08007fe0 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007fe0 USBD_CoreFindIF + .text.USBD_CoreFindEP + 0x08007fe4 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007fe4 USBD_CoreFindEP + .text.USBD_LL_DataOutStage + 0x08007fe8 0xc6 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08007fe8 USBD_LL_DataOutStage + .text.USBD_LL_DataInStage + 0x080080ae 0xd6 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x080080ae USBD_LL_DataInStage + .text.USBD_GetNextDesc + 0x08008184 0xe CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08008184 USBD_GetNextDesc + .text.USBD_GetEpDesc + 0x08008192 0x3e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0x08008192 USBD_GetEpDesc + .text.USBD_GetLen + 0x080081d0 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_ParseSetupRequest + 0x080081e4 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x080081e4 USBD_ParseSetupRequest + .text.USBD_CtlError + 0x0800820c 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x0800820c USBD_CtlError + .text.USBD_GetDescriptor + 0x08008220 0x18a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_SetAddress + 0x080083aa 0x50 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + *fill* 0x080083fa 0x2 + .text.USBD_SetConfig + 0x080083fc 0xcc CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_GetConfig + 0x080084c8 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_GetStatus + 0x08008508 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_SetFeature + 0x08008540 0x2a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_ClrFeature + 0x0800856a 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .text.USBD_StdDevReq + 0x08008590 0x76 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x08008590 USBD_StdDevReq + .text.USBD_StdItfReq + 0x08008606 0x84 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x08008606 USBD_StdItfReq + .text.USBD_StdEPReq + 0x0800868a 0x230 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x0800868a USBD_StdEPReq + .text.USBD_GetString + 0x080088ba 0x3a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x080088ba USBD_GetString + .text.USBD_CtlSendData + 0x080088f4 0x1a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x080088f4 USBD_CtlSendData + .text.USBD_CtlContinueSendData + 0x0800890e 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x0800890e USBD_CtlContinueSendData + .text.USBD_CtlPrepareRx + 0x0800891e 0x1e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x0800891e USBD_CtlPrepareRx + .text.USBD_CtlContinueRx + 0x0800893c 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x0800893c USBD_CtlContinueRx + .text.USBD_CtlSendStatus + 0x0800894c 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x0800894c USBD_CtlSendStatus + .text.USBD_CtlReceiveStatus + 0x08008962 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x08008962 USBD_CtlReceiveStatus + .text.makeFreeRtosPriority + 0x08008978 0xc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .text.osKernelStart + 0x08008984 0xa CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + 0x08008984 osKernelStart + .text.osThreadCreate + 0x0800898e 0x6a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + 0x0800898e osThreadCreate + .text.osDelay 0x080089f8 0xe CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + 0x080089f8 osDelay + .text.vListInitialise + 0x08008a06 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x08008a06 vListInitialise + .text.vListInitialiseItem + 0x08008a1c 0x6 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x08008a1c vListInitialiseItem + .text.vListInsertEnd + 0x08008a22 0x16 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x08008a22 vListInsertEnd + .text.vListInsert + 0x08008a38 0x32 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x08008a38 vListInsert + .text.uxListRemove + 0x08008a6a 0x26 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x08008a6a uxListRemove + .text.prvTaskExitError + 0x08008a90 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text.prvPortStartFirstTask + 0x08008ad0 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text.vPortEnableVFP + 0x08008af8 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .text.pxPortInitialiseStack + 0x08008b0c 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008b0c pxPortInitialiseStack + *fill* 0x08008b38 0x8 + .text.SVC_Handler + 0x08008b40 0x24 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008b40 SVC_Handler + .text.vPortEnterCritical + 0x08008b64 0x44 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008b64 vPortEnterCritical + .text.vPortExitCritical + 0x08008ba8 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008ba8 vPortExitCritical + *fill* 0x08008bd4 0xc + .text.PendSV_Handler + 0x08008be0 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008be0 PendSV_Handler + .text.SysTick_Handler + 0x08008c44 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008c44 SysTick_Handler + .text.vPortSetupTimerInterrupt + 0x08008c70 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008c70 vPortSetupTimerInterrupt + .text.xPortStartScheduler + 0x08008c98 0x118 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x08008c98 xPortStartScheduler + .text.prvHeapInit + 0x08008db0 0x68 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.prvInsertBlockIntoFreeList + 0x08008e18 0x64 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .text.pvPortMalloc + 0x08008e7c 0xfc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + 0x08008e7c pvPortMalloc + .text.vPortFree + 0x08008f78 0x7c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + 0x08008f78 vPortFree + .text.prvResetNextTaskUnblockTime + 0x08008ff4 0x2c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvInitialiseNewTask + 0x08009020 0xa2 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + *fill* 0x080090c2 0x2 + .text.prvInitialiseTaskLists + 0x080090c4 0x68 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvAddNewTaskToReadyList + 0x0800912c 0xa8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvDeleteTCB + 0x080091d4 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvCheckTasksWaitingTermination + 0x0800920c 0x4c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvIdleTask + 0x08009258 0x28 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.prvAddCurrentTaskToDelayedList + 0x08009280 0x98 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .text.xTaskCreateStatic + 0x08009318 0x76 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x08009318 xTaskCreateStatic + .text.xTaskCreate + 0x0800938e 0x68 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x0800938e xTaskCreate + *fill* 0x080093f6 0x2 + .text.vTaskDelete + 0x080093f8 0xe0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x080093f8 vTaskDelete + .text.vTaskStartScheduler + 0x080094d8 0x74 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x080094d8 vTaskStartScheduler + .text.vTaskSuspendAll + 0x0800954c 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x0800954c vTaskSuspendAll + .text.xTaskIncrementTick + 0x0800955c 0x118 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x0800955c xTaskIncrementTick + .text.xTaskResumeAll + 0x08009674 0xf8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x08009674 xTaskResumeAll + .text.vTaskDelay + 0x0800976c 0x4c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x0800976c vTaskDelay + .text.vTaskSwitchContext + 0x080097b8 0x98 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x080097b8 vTaskSwitchContext + .text._GetAvailWriteSpace + 0x08009850 0x18 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text._WriteNoCheck + 0x08009868 0x4c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text._WriteBlocking + 0x080098b4 0x62 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + *fill* 0x08009916 0x2 + .text._DoInit 0x08009918 0x6c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .text.SEGGER_RTT_WriteNoLock + 0x08009984 0x6c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + 0x08009984 SEGGER_RTT_WriteNoLock + .text.SEGGER_RTT_Write + 0x080099f0 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + 0x080099f0 SEGGER_RTT_Write + .text.SEGGER_RTT_Init + 0x08009a24 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + 0x08009a24 SEGGER_RTT_Init + .text._StoreChar + 0x08009a2c 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .text._PrintUnsigned + 0x08009a6c 0xe0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .text._PrintInt + 0x08009b4c 0xea CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + *fill* 0x08009c36 0x2 + .text.SEGGER_RTT_vprintf + 0x08009c38 0x1f0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + 0x08009c38 SEGGER_RTT_vprintf + .text.SEGGER_RTT_printf + 0x08009e28 0x1e CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + 0x08009e28 SEGGER_RTT_printf + *fill* 0x08009e46 0x2 + .text.MX_ADC1_Init + 0x08009e48 0x70 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + 0x08009e48 MX_ADC1_Init + .text.HAL_ADC_MspInit + 0x08009eb8 0x74 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + 0x08009eb8 HAL_ADC_MspInit + .text.MX_CAN1_Init + 0x08009f2c 0x44 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0x08009f2c MX_CAN1_Init + .text.MX_CAN2_Init + 0x08009f70 0x44 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0x08009f70 MX_CAN2_Init + .text.HAL_CAN_MspInit + 0x08009fb4 0x140 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0x08009fb4 HAL_CAN_MspInit + .text.MX_CRC_Init + 0x0800a0f4 0x20 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + 0x0800a0f4 MX_CRC_Init + .text.HAL_CRC_MspInit + 0x0800a114 0x30 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + 0x0800a114 HAL_CRC_MspInit + .text.MX_DAC_Init + 0x0800a144 0x44 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + 0x0800a144 MX_DAC_Init + .text.HAL_DAC_MspInit + 0x0800a188 0x68 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + 0x0800a188 HAL_DAC_MspInit + .text.MX_DMA_Init + 0x0800a1f0 0xf8 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + 0x0800a1f0 MX_DMA_Init + .text.StartDefaultTask + 0x0800a2e8 0xe CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + 0x0800a2e8 StartDefaultTask + *fill* 0x0800a2f6 0x2 + .text.vApplicationGetIdleTaskMemory + 0x0800a2f8 0x18 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + 0x0800a2f8 vApplicationGetIdleTaskMemory + .text.MX_FREERTOS_Init + 0x0800a310 0x30 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + 0x0800a310 MX_FREERTOS_Init + .text.MX_GPIO_Init + 0x0800a340 0x1c8 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + 0x0800a340 MX_GPIO_Init + .text.MX_I2C2_Init + 0x0800a508 0x3c CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x0800a508 MX_I2C2_Init + .text.MX_I2C3_Init + 0x0800a544 0x3c CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x0800a544 MX_I2C3_Init + .text.HAL_I2C_MspInit + 0x0800a580 0x1b4 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x0800a580 HAL_I2C_MspInit + .text.HAL_TIM_PeriodElapsedCallback + 0x0800a734 0x18 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + 0x0800a734 HAL_TIM_PeriodElapsedCallback + .text.Error_Handler + 0x0800a74c 0x4 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + 0x0800a74c Error_Handler + .text.SystemClock_Config + 0x0800a750 0xa8 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + 0x0800a750 SystemClock_Config + .text.main 0x0800a7f8 0x90 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + 0x0800a7f8 main + .text.MX_RNG_Init + 0x0800a888 0x20 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + 0x0800a888 MX_RNG_Init + .text.HAL_RNG_MspInit + 0x0800a8a8 0x30 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + 0x0800a8a8 HAL_RNG_MspInit + .text.MX_RTC_Init + 0x0800a8d8 0x34 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + 0x0800a8d8 MX_RTC_Init + .text.HAL_RTC_MspInit + 0x0800a90c 0x48 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + 0x0800a90c HAL_RTC_MspInit + .text.MX_SPI1_Init + 0x0800a954 0x48 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x0800a954 MX_SPI1_Init + .text.MX_SPI2_Init + 0x0800a99c 0x48 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x0800a99c MX_SPI2_Init + .text.HAL_SPI_MspInit + 0x0800a9e4 0x228 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x0800a9e4 HAL_SPI_MspInit + .text.HAL_MspInit + 0x0800ac0c 0x54 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + 0x0800ac0c HAL_MspInit + .text.HAL_InitTick + 0x0800ac60 0xa4 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + 0x0800ac60 HAL_InitTick + .text.NMI_Handler + 0x0800ad04 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad04 NMI_Handler + .text.HardFault_Handler + 0x0800ad06 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad06 HardFault_Handler + .text.MemManage_Handler + 0x0800ad08 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad08 MemManage_Handler + .text.BusFault_Handler + 0x0800ad0a 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad0a BusFault_Handler + .text.UsageFault_Handler + 0x0800ad0c 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad0c UsageFault_Handler + .text.DebugMon_Handler + 0x0800ad0e 0x2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad0e DebugMon_Handler + .text.FLASH_IRQHandler + 0x0800ad10 0x8 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad10 FLASH_IRQHandler + .text.EXTI3_IRQHandler + 0x0800ad18 0xa CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad18 EXTI3_IRQHandler + .text.EXTI4_IRQHandler + 0x0800ad22 0xa CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad22 EXTI4_IRQHandler + .text.DMA1_Stream1_IRQHandler + 0x0800ad2c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad2c DMA1_Stream1_IRQHandler + .text.DMA1_Stream2_IRQHandler + 0x0800ad3c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad3c DMA1_Stream2_IRQHandler + .text.DMA1_Stream3_IRQHandler + 0x0800ad4c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad4c DMA1_Stream3_IRQHandler + .text.DMA1_Stream4_IRQHandler + 0x0800ad5c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad5c DMA1_Stream4_IRQHandler + .text.CAN1_RX0_IRQHandler + 0x0800ad6c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad6c CAN1_RX0_IRQHandler + .text.CAN1_RX1_IRQHandler + 0x0800ad7c 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad7c CAN1_RX1_IRQHandler + .text.EXTI9_5_IRQHandler + 0x0800ad8c 0xa CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad8c EXTI9_5_IRQHandler + *fill* 0x0800ad96 0x2 + .text.I2C2_EV_IRQHandler + 0x0800ad98 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ad98 I2C2_EV_IRQHandler + .text.I2C2_ER_IRQHandler + 0x0800ada8 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ada8 I2C2_ER_IRQHandler + .text.SPI1_IRQHandler + 0x0800adb8 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800adb8 SPI1_IRQHandler + .text.SPI2_IRQHandler + 0x0800adc8 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800adc8 SPI2_IRQHandler + .text.USART1_IRQHandler + 0x0800add8 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800add8 USART1_IRQHandler + .text.USART3_IRQHandler + 0x0800ade8 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ade8 USART3_IRQHandler + .text.TIM8_TRG_COM_TIM14_IRQHandler + 0x0800adf8 0x18 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800adf8 TIM8_TRG_COM_TIM14_IRQHandler + .text.DMA1_Stream7_IRQHandler + 0x0800ae10 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae10 DMA1_Stream7_IRQHandler + .text.DMA2_Stream0_IRQHandler + 0x0800ae20 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae20 DMA2_Stream0_IRQHandler + .text.DMA2_Stream2_IRQHandler + 0x0800ae30 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae30 DMA2_Stream2_IRQHandler + .text.DMA2_Stream3_IRQHandler + 0x0800ae40 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae40 DMA2_Stream3_IRQHandler + .text.DMA2_Stream4_IRQHandler + 0x0800ae50 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae50 DMA2_Stream4_IRQHandler + .text.CAN2_RX0_IRQHandler + 0x0800ae60 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae60 CAN2_RX0_IRQHandler + .text.CAN2_RX1_IRQHandler + 0x0800ae70 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae70 CAN2_RX1_IRQHandler + .text.OTG_FS_IRQHandler + 0x0800ae80 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae80 OTG_FS_IRQHandler + .text.DMA2_Stream5_IRQHandler + 0x0800ae90 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800ae90 DMA2_Stream5_IRQHandler + .text.DMA2_Stream6_IRQHandler + 0x0800aea0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800aea0 DMA2_Stream6_IRQHandler + .text.DMA2_Stream7_IRQHandler + 0x0800aeb0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800aeb0 DMA2_Stream7_IRQHandler + .text.USART6_IRQHandler + 0x0800aec0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800aec0 USART6_IRQHandler + .text.I2C3_EV_IRQHandler + 0x0800aed0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800aed0 I2C3_EV_IRQHandler + .text.I2C3_ER_IRQHandler + 0x0800aee0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x0800aee0 I2C3_ER_IRQHandler + .text._getpid 0x0800aef0 0x4 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800aef0 _getpid + .text._kill 0x0800aef4 0x10 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800aef4 _kill + .text._exit 0x0800af04 0xc CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af04 _exit + .text._read 0x0800af10 0x20 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af10 _read + .text._write 0x0800af30 0x1c CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af30 _write + .text._close 0x0800af4c 0x6 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af4c _close + .text._fstat 0x0800af52 0xa CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af52 _fstat + .text._isatty 0x0800af5c 0x4 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af5c _isatty + .text._lseek 0x0800af60 0x4 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x0800af60 _lseek + .text._sbrk 0x0800af64 0x48 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + 0x0800af64 _sbrk + .text.SystemInit + 0x0800afac 0x14 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + 0x0800afac SystemInit + .text.HAL_TIM_Base_MspInit + 0x0800afc0 0xd0 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800afc0 HAL_TIM_Base_MspInit + .text.HAL_TIM_MspPostInit + 0x0800b090 0x188 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b090 HAL_TIM_MspPostInit + .text.MX_TIM1_Init + 0x0800b218 0x120 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b218 MX_TIM1_Init + .text.MX_TIM4_Init + 0x0800b338 0xb0 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b338 MX_TIM4_Init + .text.MX_TIM5_Init + 0x0800b3e8 0xd4 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b3e8 MX_TIM5_Init + .text.MX_TIM8_Init + 0x0800b4bc 0x10c CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b4bc MX_TIM8_Init + .text.MX_TIM10_Init + 0x0800b5c8 0x74 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x0800b5c8 MX_TIM10_Init + .text.MX_USART1_UART_Init + 0x0800b63c 0x34 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x0800b63c MX_USART1_UART_Init + .text.MX_USART3_UART_Init + 0x0800b670 0x40 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x0800b670 MX_USART3_UART_Init + .text.MX_USART6_UART_Init + 0x0800b6b0 0x34 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x0800b6b0 MX_USART6_UART_Init + .text.HAL_UART_MspInit + 0x0800b6e4 0x2d4 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x0800b6e4 HAL_UART_MspInit + .text.MX_USB_DEVICE_Init + 0x0800b9b8 0x54 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + 0x0800b9b8 MX_USB_DEVICE_Init + .text.CDC_DeInit_FS + 0x0800ba0c 0x4 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text.CDC_Control_FS + 0x0800ba10 0x4 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text.CDC_TransmitCplt_FS + 0x0800ba14 0x14 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text.CDC_Receive_FS + 0x0800ba28 0x2c CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text.CDC_Init_FS + 0x0800ba54 0x28 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .text.CDC_Transmit_FS + 0x0800ba7c 0x2c CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x0800ba7c CDC_Transmit_FS + .text.CDCInitRxbufferNcallback + 0x0800baa8 0x18 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x0800baa8 CDCInitRxbufferNcallback + .text.HAL_PCD_MspInit + 0x0800bac0 0x84 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bac0 HAL_PCD_MspInit + .text.HAL_PCD_SetupStageCallback + 0x0800bb44 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bb44 HAL_PCD_SetupStageCallback + .text.HAL_PCD_DataOutStageCallback + 0x0800bb54 0x18 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bb54 HAL_PCD_DataOutStageCallback + .text.HAL_PCD_DataInStageCallback + 0x0800bb6c 0x16 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bb6c HAL_PCD_DataInStageCallback + .text.HAL_PCD_SOFCallback + 0x0800bb82 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bb82 HAL_PCD_SOFCallback + .text.HAL_PCD_ResetCallback + 0x0800bb8e 0x2c CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bb8e HAL_PCD_ResetCallback + *fill* 0x0800bbba 0x2 + .text.HAL_PCD_SuspendCallback + 0x0800bbbc 0x30 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bbbc HAL_PCD_SuspendCallback + .text.HAL_PCD_ResumeCallback + 0x0800bbec 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bbec HAL_PCD_ResumeCallback + .text.HAL_PCD_ISOOUTIncompleteCallback + 0x0800bbf8 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bbf8 HAL_PCD_ISOOUTIncompleteCallback + .text.HAL_PCD_ISOINIncompleteCallback + 0x0800bc04 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bc04 HAL_PCD_ISOINIncompleteCallback + .text.HAL_PCD_ConnectCallback + 0x0800bc10 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bc10 HAL_PCD_ConnectCallback + .text.HAL_PCD_DisconnectCallback + 0x0800bc1c 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bc1c HAL_PCD_DisconnectCallback + .text.USBD_LL_Init + 0x0800bc28 0x68 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bc28 USBD_LL_Init + .text.USBD_LL_IsStallEP + 0x0800bc90 0x2e CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bc90 USBD_LL_IsStallEP + .text.USBD_LL_GetRxDataSize + 0x0800bcbe 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bcbe USBD_LL_GetRxDataSize + *fill* 0x0800bcca 0x2 + .text.USBD_static_malloc + 0x0800bccc 0x8 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bccc USBD_static_malloc + .text.USBD_static_free + 0x0800bcd4 0x2 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bcd4 USBD_static_free + .text.USBD_Get_USB_Status + 0x0800bcd6 0x14 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bcd6 USBD_Get_USB_Status + .text.USBD_LL_Start + 0x0800bcea 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bcea USBD_LL_Start + .text.USBD_LL_OpenEP + 0x0800bcfa 0x16 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bcfa USBD_LL_OpenEP + .text.USBD_LL_CloseEP + 0x0800bd10 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd10 USBD_LL_CloseEP + .text.USBD_LL_StallEP + 0x0800bd20 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd20 USBD_LL_StallEP + .text.USBD_LL_ClearStallEP + 0x0800bd30 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd30 USBD_LL_ClearStallEP + .text.USBD_LL_SetUSBAddress + 0x0800bd40 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd40 USBD_LL_SetUSBAddress + .text.USBD_LL_Transmit + 0x0800bd50 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd50 USBD_LL_Transmit + .text.USBD_LL_PrepareReceive + 0x0800bd60 0x10 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x0800bd60 USBD_LL_PrepareReceive + .text.USBD_FS_DeviceDescriptor + 0x0800bd70 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800bd70 USBD_FS_DeviceDescriptor + .text.USBD_FS_LangIDStrDescriptor + 0x0800bd7c 0xc CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800bd7c USBD_FS_LangIDStrDescriptor + .text.IntToUnicode + 0x0800bd88 0x46 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + *fill* 0x0800bdce 0x2 + .text.Get_SerialNum + 0x0800bdd0 0x38 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .text.USBD_FS_SerialStrDescriptor + 0x0800be08 0x14 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800be08 USBD_FS_SerialStrDescriptor + .text.USBD_FS_ProductStrDescriptor + 0x0800be1c 0x24 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800be1c USBD_FS_ProductStrDescriptor + .text.USBD_FS_ManufacturerStrDescriptor + 0x0800be40 0x1c CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800be40 USBD_FS_ManufacturerStrDescriptor + .text.USBD_FS_ConfigStrDescriptor + 0x0800be5c 0x24 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800be5c USBD_FS_ConfigStrDescriptor + .text.USBD_FS_InterfaceStrDescriptor + 0x0800be80 0x24 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x0800be80 USBD_FS_InterfaceStrDescriptor + .text.Reset_Handler + 0x0800bea4 0x50 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + 0x0800bea4 Reset_Handler + .text.Default_Handler + 0x0800bef4 0x2 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + 0x0800bef4 RTC_Alarm_IRQHandler + 0x0800bef4 HASH_RNG_IRQHandler + 0x0800bef4 EXTI2_IRQHandler + 0x0800bef4 TIM8_CC_IRQHandler + 0x0800bef4 TIM1_CC_IRQHandler + 0x0800bef4 DMA1_Stream5_IRQHandler + 0x0800bef4 PVD_IRQHandler + 0x0800bef4 SDIO_IRQHandler + 0x0800bef4 TAMP_STAMP_IRQHandler + 0x0800bef4 TIM1_UP_TIM10_IRQHandler + 0x0800bef4 TIM8_UP_TIM13_IRQHandler + 0x0800bef4 EXTI0_IRQHandler + 0x0800bef4 FPU_IRQHandler + 0x0800bef4 OTG_HS_WKUP_IRQHandler + 0x0800bef4 CAN2_SCE_IRQHandler + 0x0800bef4 TIM6_DAC_IRQHandler + 0x0800bef4 TIM1_BRK_TIM9_IRQHandler + 0x0800bef4 DCMI_IRQHandler + 0x0800bef4 UART5_IRQHandler + 0x0800bef4 TIM4_IRQHandler + 0x0800bef4 I2C1_EV_IRQHandler + 0x0800bef4 DMA1_Stream6_IRQHandler + 0x0800bef4 UART4_IRQHandler + 0x0800bef4 TIM3_IRQHandler + 0x0800bef4 RCC_IRQHandler + 0x0800bef4 TIM8_BRK_TIM12_IRQHandler + 0x0800bef4 Default_Handler + 0x0800bef4 EXTI15_10_IRQHandler + 0x0800bef4 ADC_IRQHandler + 0x0800bef4 TIM7_IRQHandler + 0x0800bef4 CAN2_TX_IRQHandler + 0x0800bef4 TIM5_IRQHandler + 0x0800bef4 RTC_WKUP_IRQHandler + 0x0800bef4 ETH_WKUP_IRQHandler + 0x0800bef4 OTG_HS_EP1_IN_IRQHandler + 0x0800bef4 DMA1_Stream0_IRQHandler + 0x0800bef4 CAN1_TX_IRQHandler + 0x0800bef4 FSMC_IRQHandler + 0x0800bef4 ETH_IRQHandler + 0x0800bef4 OTG_HS_EP1_OUT_IRQHandler + 0x0800bef4 WWDG_IRQHandler + 0x0800bef4 TIM2_IRQHandler + 0x0800bef4 OTG_FS_WKUP_IRQHandler + 0x0800bef4 TIM1_TRG_COM_TIM11_IRQHandler + 0x0800bef4 OTG_HS_IRQHandler + 0x0800bef4 EXTI1_IRQHandler + 0x0800bef4 USART2_IRQHandler + 0x0800bef4 DMA2_Stream1_IRQHandler + 0x0800bef4 CAN1_SCE_IRQHandler + 0x0800bef4 SPI3_IRQHandler + 0x0800bef4 I2C1_ER_IRQHandler + *fill* 0x0800bef6 0x2 + .text.OmniCalculate + 0x0800bef8 0x94 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .text.LimitChassisOutput + 0x0800bf8c 0xb4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .text.ChassisInit + 0x0800c040 0x120 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + 0x0800c040 ChassisInit + .text.ChassisTask + 0x0800c160 0x150 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + 0x0800c160 ChassisTask + .text.CalcOffsetAngle + 0x0800c2b0 0x84 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.update_ui_data + 0x0800c334 0x38 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.RemoteControlSet + 0x0800c36c 0x2ec CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.auto_aim_mode + 0x0800c658 0x14c CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.MouseKeySet + 0x0800c7a4 0x21c CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.EmergencyHandler + 0x0800c9c0 0x98 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .text.RobotCMDInit + 0x0800ca58 0xcc CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + 0x0800ca58 RobotCMDInit + .text.RobotCMDTask + 0x0800cb24 0xc0 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + 0x0800cb24 RobotCMDTask + .text.GimbalInit + 0x0800cbe4 0x184 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + 0x0800cbe4 GimbalInit + .text.GimbalTask + 0x0800cd68 0x154 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + 0x0800cd68 GimbalTask + .text.StartINSTASK + 0x0800cebc 0x8c CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800cebc StartINSTASK + .text.StartMOTORTASK + 0x0800cf48 0x84 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800cf48 StartMOTORTASK + .text.StartDAEMONTASK + 0x0800cfcc 0x8c CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800cfcc StartDAEMONTASK + .text.StartUITASK + 0x0800d058 0x4c CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d058 StartUITASK + .text.BSPInit 0x0800d0a4 0xe CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d0a4 BSPInit + *fill* 0x0800d0b2 0x2 + .text.OSTaskInit + 0x0800d0b4 0xd8 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d0b4 OSTaskInit + .text.RobotInit + 0x0800d18c 0x20 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d18c RobotInit + .text.RobotTask + 0x0800d1ac 0x14 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d1ac RobotTask + .text.StartROBOTTASK + 0x0800d1c0 0x84 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x0800d1c0 StartROBOTTASK + .text.ShootInit + 0x0800d244 0x108 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + 0x0800d244 ShootInit + .text.stalled_detect + 0x0800d34c 0x84 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + 0x0800d34c stalled_detect + .text.ShootTask + 0x0800d3d0 0x1f0 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + 0x0800d3d0 ShootTask + .text.CANServiceInit + 0x0800d5c0 0x3c CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .text.CANAddFilter + 0x0800d5fc 0x60 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .text.CANFIFOxCallback + 0x0800d65c 0x78 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .text.CANRegister + 0x0800d6d4 0xf4 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0x0800d6d4 CANRegister + .text.CANTransmit + 0x0800d7c8 0xb8 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0x0800d7c8 CANTransmit + .text.HAL_CAN_RxFifo0MsgPendingCallback + 0x0800d880 0xa CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0x0800d880 HAL_CAN_RxFifo0MsgPendingCallback + .text.HAL_CAN_RxFifo1MsgPendingCallback + 0x0800d88a 0xa CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0x0800d88a HAL_CAN_RxFifo1MsgPendingCallback + .text.DWT_CNT_Update + 0x0800d894 0x4c CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .text.DWT_Init + 0x0800d8e0 0x70 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800d8e0 DWT_Init + .text.DWT_GetDeltaT + 0x0800d950 0x48 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800d950 DWT_GetDeltaT + .text.DWT_SysTimeUpdate + 0x0800d998 0xcc CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800d998 DWT_SysTimeUpdate + .text.DWT_GetTimeline_s + 0x0800da64 0x4c CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800da64 DWT_GetTimeline_s + .text.DWT_GetTimeline_ms + 0x0800dab0 0x3c CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800dab0 DWT_GetTimeline_ms + .text.DWT_Delay + 0x0800daec 0x34 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x0800daec DWT_Delay + .text.HAL_GPIO_EXTI_Callback + 0x0800db20 0x30 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + 0x0800db20 HAL_GPIO_EXTI_Callback + .text.HAL_I2C_MasterRxCpltCallback + 0x0800db50 0x54 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + 0x0800db50 HAL_I2C_MasterRxCpltCallback + .text.HAL_I2C_MemRxCpltCallback + 0x0800dba4 0x8 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + 0x0800dba4 HAL_I2C_MemRxCpltCallback + .text.BSPLogInit + 0x0800dbac 0x8 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + 0x0800dbac BSPLogInit + .text.PWMSelectTclk + 0x0800dbb4 0x74 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .text.HAL_TIM_PWM_PulseFinishedCallback + 0x0800dc28 0x44 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + 0x0800dc28 HAL_TIM_PWM_PulseFinishedCallback + .text.PWMSetPeriod + 0x0800dc6c 0x44 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + 0x0800dc6c PWMSetPeriod + .text.PWMSetDutyRatio + 0x0800dcb0 0x74 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + 0x0800dcb0 PWMSetDutyRatio + .text.PWMRegister + 0x0800dd24 0x7c CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + 0x0800dd24 PWMRegister + .text.USARTServiceInit + 0x0800dda0 0x24 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x0800dda0 USARTServiceInit + .text.USARTRegister + 0x0800ddc4 0xa8 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x0800ddc4 USARTRegister + .text.USARTSend + 0x0800de6c 0x30 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x0800de6c USARTSend + .text.HAL_UARTEx_RxEventCallback + 0x0800de9c 0x6c CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x0800de9c HAL_UARTEx_RxEventCallback + .text.HAL_UART_ErrorCallback + 0x0800df08 0x7c CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x0800df08 HAL_UART_ErrorCallback + .text.USBInit 0x0800df84 0x3c CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + 0x0800df84 USBInit + .text.USBTransmit + 0x0800dfc0 0x8 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + 0x0800dfc0 USBTransmit + .text.BuzzerInit + 0x0800dfc8 0x3c CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + 0x0800dfc8 BuzzerInit + .text.BuzzerTask + 0x0800e004 0xd4 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + 0x0800e004 BuzzerTask + .text.invSqrt 0x0800e0d8 0x30 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text.IMU_QuaternionEKF_F_Linearization_P_Fading + 0x0800e108 0x1a0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text.IMU_QuaternionEKF_Observe + 0x0800e2a8 0x38 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text.IMU_QuaternionEKF_xhatUpdate + 0x0800e2e0 0x43c CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text.IMU_QuaternionEKF_SetH + 0x0800e71c 0xe4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .text.IMU_QuaternionEKF_Init + 0x0800e800 0xe4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x0800e800 IMU_QuaternionEKF_Init + .text.IMU_QuaternionEKF_Update + 0x0800e8e4 0x448 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x0800e8e4 IMU_QuaternionEKF_Update + .text.f_Trapezoid_Intergral + 0x0800ed2c 0x2a CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Changing_Integration_Rate + 0x0800ed56 0x66 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Integral_Limit + 0x0800edbc 0x94 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Derivative_On_Measurement + 0x0800ee50 0x22 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Derivative_Filter + 0x0800ee72 0x2e CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Output_Filter + 0x0800eea0 0x2e CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_Output_Limit + 0x0800eece 0x2e CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.f_PID_ErrorHandle + 0x0800eefc 0x90 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .text.PIDInit 0x0800ef8c 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + 0x0800ef8c PIDInit + .text.PIDCalculate + 0x0800efd6 0x140 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + 0x0800efd6 PIDCalculate + *fill* 0x0800f116 0x2 + .text.crc_16 0x0800f118 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + 0x0800f118 crc_16 + .text.VerifyCRC16CheckSum + 0x0800f14c 0x42 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + 0x0800f14c VerifyCRC16CheckSum + *fill* 0x0800f18e 0x2 + .text.H_K_R_Adjustment + 0x0800f190 0x118 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .text.Kalman_Filter_Init + 0x0800f2a8 0x42c CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f2a8 Kalman_Filter_Init + .text.Kalman_Filter_Measure + 0x0800f6d4 0x4c CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f6d4 Kalman_Filter_Measure + .text.Kalman_Filter_xhatMinusUpdate + 0x0800f720 0x76 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f720 Kalman_Filter_xhatMinusUpdate + .text.Kalman_Filter_PminusUpdate + 0x0800f796 0x68 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f796 Kalman_Filter_PminusUpdate + .text.Kalman_Filter_SetK + 0x0800f7fe 0xcc CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f7fe Kalman_Filter_SetK + .text.Kalman_Filter_xhatUpdate + 0x0800f8ca 0x82 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f8ca Kalman_Filter_xhatUpdate + .text.Kalman_Filter_P_Update + 0x0800f94c 0x64 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f94c Kalman_Filter_P_Update + .text.Kalman_Filter_Update + 0x0800f9b0 0xf8 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x0800f9b0 Kalman_Filter_Update + .text.Sqrt 0x0800faa8 0x5c CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800faa8 Sqrt + .text.float_constrain + 0x0800fb04 0x20 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800fb04 float_constrain + .text.float_rounding + 0x0800fb24 0x40 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800fb24 float_rounding + .text.Norm3d 0x0800fb64 0x4c CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800fb64 Norm3d + .text.Cross3d 0x0800fbb0 0x62 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800fbb0 Cross3d + .text.Dot3d 0x0800fc12 0x2e CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x0800fc12 Dot3d + .text.aim_armor_select + 0x0800fc40 0x614 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + 0x0800fc40 aim_armor_select + *fill* 0x08010254 0x4 + .text.get_fly_time + 0x08010258 0xb8 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + 0x08010258 get_fly_time + .text.get_cmd_angle + 0x08010310 0x200 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + 0x08010310 get_cmd_angle + .text.auto_aim + 0x08010510 0x8c CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + 0x08010510 auto_aim + .text.DaemonRegister + 0x0801059c 0x48 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + 0x0801059c DaemonRegister + .text.DaemonReload + 0x080105e4 0x6 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + 0x080105e4 DaemonReload + *fill* 0x080105ea 0x2 + .text.DaemonTask + 0x080105ec 0x34 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + 0x080105ec DaemonTask + .text.BMI088_ACCEL_NS_L + 0x08010620 0x14 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x08010620 BMI088_ACCEL_NS_L + .text.BMI088_ACCEL_NS_H + 0x08010634 0x14 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x08010634 BMI088_ACCEL_NS_H + .text.BMI088_GYRO_NS_L + 0x08010648 0x14 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x08010648 BMI088_GYRO_NS_L + .text.BMI088_GYRO_NS_H + 0x0801065c 0x14 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x0801065c BMI088_GYRO_NS_H + .text.BMI088_read_write_byte + 0x08010670 0x30 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x08010670 BMI088_read_write_byte + .text.BMI088_read_muli_reg + 0x080106a0 0x24 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .text.BMI088_write_single_reg + 0x080106c4 0x10 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .text.BMI088_read_single_reg + 0x080106d4 0x16 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x080106ea 0x2 + .text.Calibrate_MPU_Offset + 0x080106ec 0x4cc CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .text.bmi088_accel_init + 0x08010bb8 0x18c CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x08010bb8 bmi088_accel_init + .text.bmi088_gyro_init + 0x08010d44 0x160 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x08010d44 bmi088_gyro_init + .text.BMI088Init + 0x08010ea4 0x6c CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x08010ea4 BMI088Init + .text.BMI088_Read + 0x08010f10 0x1f0 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x08010f10 BMI088_Read + .text.IMUPWMSet + 0x08011100 0xc CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.InitQuaternion + 0x0801110c 0x108 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.IMU_Param_Correction + 0x08011214 0x2c8 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.IMU_Temperature_Ctrl + 0x080114dc 0x54 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .text.INS_Init + 0x08011530 0xf8 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x08011530 INS_Init + .text.BodyFrameToEarthFrame + 0x08011628 0x126 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x08011628 BodyFrameToEarthFrame + .text.EarthFrameToBodyFrame + 0x0801174e 0x126 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x0801174e EarthFrameToBodyFrame + .text.INS_Task + 0x08011874 0x1a8 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x08011874 INS_Task + .text.VisionOfflineCallback + 0x08011a1c 0x2c CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .text.DecodeVision + 0x08011a48 0x44 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .text.VisionSetFlag + 0x08011a8c 0x18 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x08011a8c VisionSetFlag + .text.VisionSetAltitude + 0x08011aa4 0x18 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x08011aa4 VisionSetAltitude + .text.VisionSetAim + 0x08011abc 0x20 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x08011abc VisionSetAim + .text.VisionInit + 0x08011adc 0x50 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x08011adc VisionInit + .text.VisionSend + 0x08011b2c 0x3c CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x08011b2c VisionSend + .text.CheckName + 0x08011b68 0x38 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .text.CheckLen + 0x08011ba0 0x30 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .text.PubRegister + 0x08011bd0 0x60 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x08011bd0 PubRegister + .text.SubRegister + 0x08011c30 0x42 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x08011c30 SubRegister + .text.SubGetMessage + 0x08011c72 0x2e CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x08011c72 SubGetMessage + .text.PubPushMessage + 0x08011ca0 0x4c CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x08011ca0 PubPushMessage + .text.DJIMotorLostCallback + 0x08011cec 0x48 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .text.MotorSenderGrouping + 0x08011d34 0x1d4 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .text.DecodeDJIMotor + 0x08011f08 0x108 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .text.DJIMotorChangeFeed + 0x08012010 0x3c CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x08012010 DJIMotorChangeFeed + .text.DJIMotorStop + 0x0801204c 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x0801204c DJIMotorStop + .text.DJIMotorEnable + 0x08012054 0x8 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x08012054 DJIMotorEnable + .text.DJIMotorInit + 0x0801205c 0xd8 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x0801205c DJIMotorInit + .text.DJIMotorOuterLoop + 0x08012134 0x4 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x08012134 DJIMotorOuterLoop + .text.DJIMotorSetRef + 0x08012138 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x08012138 DJIMotorSetRef + *fill* 0x0801213e 0x2 + .text.DJIMotorControl + 0x08012140 0x248 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x08012140 DJIMotorControl + .text.float_to_uint + 0x08012388 0x2a CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + *fill* 0x080123b2 0x2 + .text.HTMotorTask + 0x080123b4 0x150 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + 0x080123b4 HTMotorTask + .text.HTMotorControlInit + 0x08012504 0x78 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + 0x08012504 HTMotorControlInit + .text.LKMotorControl + 0x0801257c 0x140 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + 0x0801257c LKMotorControl + .text.MotorControlTask + 0x080126bc 0x10 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + 0x080126bc MotorControlTask + .text.ServeoMotorControl + 0x080126cc 0x25c CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + 0x080126cc ServeoMotorControl + .text.Get_CRC8_Check_Sum + 0x08012928 0x24 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x08012928 Get_CRC8_Check_Sum + .text.Verify_CRC8_Check_Sum + 0x0801294c 0x2e CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x0801294c Verify_CRC8_Check_Sum + *fill* 0x0801297a 0x2 + .text.Get_CRC16_Check_Sum + 0x0801297c 0x38 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x0801297c Get_CRC16_Check_Sum + .text.Verify_CRC16_Check_Sum + 0x080129b4 0x48 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x080129b4 Verify_CRC16_Check_Sum + .text.Append_CRC16_Check_Sum + 0x080129fc 0x2c CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x080129fc Append_CRC16_Check_Sum + .text.UIDelete + 0x08012a28 0x7c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012a28 UIDelete + .text.UILineDraw + 0x08012aa4 0x110 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012aa4 UILineDraw + .text.UIRectangleDraw + 0x08012bb4 0x112 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012bb4 UIRectangleDraw + .text.UIFloatDraw + 0x08012cc6 0x134 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012cc6 UIFloatDraw + .text.UICharDraw + 0x08012dfa 0x122 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012dfa UICharDraw + .text.UIGraphRefresh + 0x08012f1c 0x120 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x08012f1c UIGraphRefresh + .text.UICharRefresh + 0x0801303c 0xa4 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x0801303c UICharRefresh + .text.DeterminRobotID + 0x080130e0 0x2c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .text.UIChangeCheck + 0x0801310c 0x74 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .text.MyUIRefresh + 0x08013180 0x424 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .text.UITaskInit + 0x080135a4 0x20 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x080135a4 UITaskInit + .text.UITask 0x080135c4 0x18 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x080135c4 UITask + .text.MyUIInit + 0x080135dc 0x724 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x080135dc MyUIInit + .text.RefereeLostCallback + 0x08013d00 0x38 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .text.JudgeReadData + 0x08013d38 0x1c0 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .text.RefereeRxCallback + 0x08013ef8 0x1c CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .text.RefereeInit + 0x08013f14 0x54 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + 0x08013f14 RefereeInit + .text.RefereeSend + 0x08013f68 0x1c CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + 0x08013f68 RefereeSend + .text.RectifyRCjoystick + 0x08013f84 0x30 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text.sbus_to_rc + 0x08013fb4 0x158 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text.RCLostCallback + 0x0801410c 0x44 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text.RemoteControlRxCallback + 0x08014150 0x1c CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .text.RemoteControlInit + 0x0801416c 0x5c CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + 0x0801416c RemoteControlInit + .text.SuperCapRxCallback + 0x080141c8 0x34 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .text.SuperCapInit + 0x080141fc 0x30 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + 0x080141fc SuperCapInit + .text.arm_power_f32 + 0x0801422c 0x8c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + 0x0801422c arm_power_f32 + .text.arm_mat_trans_f32 + 0x080142b8 0xb8 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + 0x080142b8 arm_mat_trans_f32 + .text.arm_mat_sub_f32 + 0x08014370 0xd4 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + 0x08014370 arm_mat_sub_f32 + .text.arm_mat_mult_f32 + 0x08014444 0x140 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + 0x08014444 arm_mat_mult_f32 + .text.arm_mat_inverse_f32 + 0x08014584 0x20c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + 0x08014584 arm_mat_inverse_f32 + .text.arm_mat_init_f32 + 0x08014790 0x8 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + 0x08014790 arm_mat_init_f32 + .text.arm_mat_add_f32 + 0x08014798 0xd4 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + 0x08014798 arm_mat_add_f32 + .text.arm_sin_f32 + 0x0801486c 0x8c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + 0x0801486c arm_sin_f32 + .text.arm_cos_f32 + 0x080148f8 0x94 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + 0x080148f8 arm_cos_f32 + .text.__errno 0x0801498c 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + 0x0801498c __errno + .text.__libc_init_array + 0x08014998 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + 0x08014998 __libc_init_array + .text.__itoa 0x080149e0 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + 0x080149e0 __itoa + .text.malloc 0x08014a0c 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + 0x08014a0c malloc + .text._malloc_r + 0x08014a1c 0x560 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x08014a1c _malloc_r + .text.memset 0x08014f7c 0xa4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + 0x08014f7c memset + .text.__malloc_lock + 0x08015020 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + 0x08015020 __malloc_lock + .text.__malloc_unlock + 0x0801502c 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + 0x0801502c __malloc_unlock + .text._sbrk_r 0x08015038 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + 0x08015038 _sbrk_r + .text.strcat 0x0801505c 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + 0x0801505c strcat + .text.strcpy 0x0801509c 0xbc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + 0x0801509c strcpy + .text.strnlen 0x08015158 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + 0x08015158 strnlen + *fill* 0x0801517c 0x4 + .text._svfprintf_r + 0x08015180 0x1acc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + 0x08015180 _svfprintf_r + .text.__utoa 0x08016c4c 0x9c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + 0x08016c4c __utoa + .text.vsprintf + 0x08016ce8 0x38 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + 0x08016ce8 vsprintf + .text.startup.register_fini + 0x08016d20 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .text.atexit 0x08016d34 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + 0x08016d34 atexit + .text.quorem 0x08016d40 0x128 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .text._dtoa_r 0x08016e68 0xf3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + 0x08016e68 _dtoa_r + .text.__libc_fini_array + 0x08017da4 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + 0x08017da4 __libc_fini_array + .text._malloc_trim_r + 0x08017dd0 0xa0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + 0x08017dd0 _malloc_trim_r + .text._free_r 0x08017e70 0x20c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + 0x08017e70 _free_r + .text._localeconv_r + 0x0801807c 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + 0x0801807c _localeconv_r + .text.__retarget_lock_init_recursive + 0x08018084 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x08018084 __retarget_lock_init_recursive + .text.__retarget_lock_close_recursive + 0x08018088 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x08018088 __retarget_lock_close_recursive + .text.__retarget_lock_acquire_recursive + 0x0801808c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x0801808c __retarget_lock_acquire_recursive + .text.__retarget_lock_release_recursive + 0x08018090 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x08018090 __retarget_lock_release_recursive + .text._Balloc 0x08018094 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x08018094 _Balloc + .text._Bfree 0x080180e0 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080180e0 _Bfree + .text.__multadd + 0x080180f4 0xa8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080180f4 __multadd + .text.__hi0bits + 0x0801819c 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x0801819c __hi0bits + .text.__lo0bits + 0x080181dc 0x60 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080181dc __lo0bits + .text.__i2b 0x0801823c 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x0801823c __i2b + .text.__multiply + 0x08018298 0x15c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x08018298 __multiply + .text.__pow5mult + 0x080183f4 0xc0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080183f4 __pow5mult + .text.__lshift + 0x080184b4 0xf0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080184b4 __lshift + .text.__mcmp 0x080185a4 0x44 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080185a4 __mcmp + .text.__mdiff 0x080185e8 0x14c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x080185e8 __mdiff + .text.__d2b 0x08018734 0xd0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x08018734 __d2b + .text.frexp 0x08018804 0x6c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + 0x08018804 frexp + .text.strncpy 0x08018870 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + 0x08018870 strncpy + .text.__ssprint_r + 0x080188d4 0xf8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + 0x080188d4 __ssprint_r + .text.__register_exitproc + 0x080189cc 0x8c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + 0x080189cc __register_exitproc + .text.__assert_func + 0x08018a58 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + 0x08018a58 __assert_func + .text._calloc_r + 0x08018a98 0x78 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + 0x08018a98 _calloc_r + .text.fiprintf + 0x08018b10 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + 0x08018b10 fiprintf + .text.__locale_mb_cur_max + 0x08018b38 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + 0x08018b38 __locale_mb_cur_max + .text.__ascii_mbtowc + 0x08018b44 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + 0x08018b44 __ascii_mbtowc + .text.memmove 0x08018b70 0xf8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + 0x08018b70 memmove + .text._realloc_r + 0x08018c68 0x3d8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + 0x08018c68 _realloc_r + .text.__sprint_r.part.0 + 0x08019040 0x78 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .text._vfiprintf_r + 0x080190b8 0xdfc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + 0x080190b8 _vfiprintf_r + .text.__sbprintf + 0x08019eb4 0x80 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .text.__ascii_wctomb + 0x08019f34 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + 0x08019f34 __ascii_wctomb + .text.__swsetup_r + 0x08019f50 0xd4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + 0x08019f50 __swsetup_r + .text.abort 0x0801a024 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + 0x0801a024 abort + .text.__sflush_r + 0x0801a034 0x130 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + 0x0801a034 __sflush_r + .text._fflush_r + 0x0801a164 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + 0x0801a164 _fflush_r + .text._cleanup_r + 0x0801a1c0 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + 0x0801a1c0 _cleanup_r + .text.__sinit 0x0801a1cc 0x10c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + 0x0801a1cc __sinit + .text.__sfp_lock_acquire + 0x0801a2d8 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + 0x0801a2d8 __sfp_lock_acquire + .text.__sfp_lock_release + 0x0801a2e4 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + 0x0801a2e4 __sfp_lock_release + .text.__fputwc + 0x0801a2f0 0xa8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + 0x0801a2f0 __fputwc + .text._fputwc_r + 0x0801a398 0x68 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + 0x0801a398 _fputwc_r + .text.__sfvwrite_r + 0x0801a400 0x2f0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + 0x0801a400 __sfvwrite_r + .text._fwalk_reent + 0x0801a6f0 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + 0x0801a6f0 _fwalk_reent + .text.__smakebuf_r + 0x0801a738 0xe0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + 0x0801a738 __smakebuf_r + .text.raise 0x0801a818 0x5c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + 0x0801a818 raise + .text._kill_r 0x0801a874 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + 0x0801a874 _kill_r + .text._getpid_r + 0x0801a8a0 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + 0x0801a8a0 _getpid_r + .text.__sread 0x0801a8a4 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + 0x0801a8a4 __sread + .text.__swrite + 0x0801a8c8 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + 0x0801a8c8 __swrite + .text.__sseek 0x0801a908 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + 0x0801a908 __sseek + .text.__sclose + 0x0801a928 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + 0x0801a928 __sclose + .text.__swbuf_r + 0x0801a930 0xb0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + 0x0801a930 __swbuf_r + .text._wcrtomb_r + 0x0801a9e0 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + 0x0801a9e0 _wcrtomb_r + .text._write_r + 0x0801aa1c 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + 0x0801aa1c _write_r + .text._close_r + 0x0801aa48 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + 0x0801aa48 _close_r + .text._fclose_r + 0x0801aa6c 0xcc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + 0x0801aa6c _fclose_r + .text._fstat_r + 0x0801ab38 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + 0x0801ab38 _fstat_r + .text._isatty_r + 0x0801ab64 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + 0x0801ab64 _isatty_r + .text._lseek_r + 0x0801ab88 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + 0x0801ab88 _lseek_r + .text._read_r 0x0801abb4 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + 0x0801abb4 _read_r + .text.cos 0x0801abe0 0x90 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_cos.o) + 0x0801abe0 cos + .text.sin 0x0801ac70 0x90 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_sin.o) + 0x0801ac70 sin + .text.cosf 0x0801ad00 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_cos.o) + 0x0801ad00 cosf + .text.sinf 0x0801ad70 0x74 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_sin.o) + 0x0801ad70 sinf + .text.truncf 0x0801ade4 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_trunc.o) + 0x0801ade4 truncf + *fill* 0x0801ae24 0x4 + .text.log 0x0801ae28 0x84 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + 0x0801ae28 log + .text.acosf 0x0801aeac 0x58 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + 0x0801aeac acosf + .text.asinf 0x0801af04 0x58 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + 0x0801af04 asinf + .text.atan2f 0x0801af5c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_atan2.o) + 0x0801af5c atan2f + .text.powf 0x0801af60 0xbc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_pow.o) + 0x0801af60 powf + .text.sqrtf 0x0801b01c 0x44 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_sqrt.o) + 0x0801b01c sqrtf + .text.__ieee754_log + 0x0801b060 0x438 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_log.o) + 0x0801b060 __ieee754_log + .text.__ieee754_rem_pio2 + 0x0801b498 0x44c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + 0x0801b498 __ieee754_rem_pio2 + .text.__ieee754_acosf + 0x0801b8e4 0x248 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_acos.o) + 0x0801b8e4 __ieee754_acosf + .text.__ieee754_asinf + 0x0801bb2c 0x20c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_asin.o) + 0x0801bb2c __ieee754_asinf + .text.__ieee754_atan2f + 0x0801bd38 0x150 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + 0x0801bd38 __ieee754_atan2f + .text.__ieee754_powf + 0x0801be88 0x628 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_pow.o) + 0x0801be88 __ieee754_powf + .text.__ieee754_rem_pio2f + 0x0801c4b0 0x264 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + 0x0801c4b0 __ieee754_rem_pio2f + .text.__ieee754_sqrtf + 0x0801c714 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_sqrt.o) + 0x0801c714 __ieee754_sqrtf + *fill* 0x0801c71c 0x4 + .text.__kernel_cos + 0x0801c720 0x27c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_cos.o) + 0x0801c720 __kernel_cos + *fill* 0x0801c99c 0x4 + .text.__kernel_rem_pio2 + 0x0801c9a0 0x850 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + 0x0801c9a0 __kernel_rem_pio2 + .text.__kernel_sin + 0x0801d1f0 0x17c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_sin.o) + 0x0801d1f0 __kernel_sin + .text.__kernel_cosf + 0x0801d36c 0x104 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_cos.o) + 0x0801d36c __kernel_cosf + .text.__kernel_rem_pio2f + 0x0801d470 0x674 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + 0x0801d470 __kernel_rem_pio2f + .text.__kernel_sinf + 0x0801dae4 0x90 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_sin.o) + 0x0801dae4 __kernel_sinf + .text.with_errnof + 0x0801db74 0x18 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .text.xflowf 0x0801db8c 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + .text.__math_uflowf + 0x0801dbac 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + 0x0801dbac __math_uflowf + .text.__math_oflowf + 0x0801dbb8 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-math_errf.o) + 0x0801dbb8 __math_oflowf + .text.fabs 0x0801dbc4 0x14 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_fabs.o) + 0x0801dbc4 fabs + .text.floor 0x0801dbd8 0x108 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_floor.o) + 0x0801dbd8 floor + .text.nan 0x0801dce0 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_nan.o) + 0x0801dce0 nan + .text.scalbn 0x0801dcf0 0x124 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-s_scalbn.o) + 0x0801dcf0 scalbn + .text.atanf 0x0801de14 0x1b4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + 0x0801de14 atanf + .text.fabsf 0x0801dfc8 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_fabs.o) + 0x0801dfc8 fabsf + .text.finitef 0x0801dfd8 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_finite.o) + 0x0801dfd8 finitef + .text.floorf 0x0801dff4 0x8c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_floor.o) + 0x0801dff4 floorf + .text.nanf 0x0801e080 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_nan.o) + 0x0801e080 nanf + .text.scalbnf 0x0801e08c 0xe4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_scalbn.o) + 0x0801e08c scalbnf + *(.glue_7) + .glue_7 0x0801e170 0x0 linker stubs + *(.glue_7t) + .glue_7t 0x0801e170 0x0 linker stubs + *(.eh_frame) + .eh_frame 0x0801e170 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + *(.init) + .init 0x0801e170 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0801e170 _init + .init 0x0801e174 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + *(.fini) + .fini 0x0801e17c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + 0x0801e17c _fini + .fini 0x0801e180 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x0801e188 . = ALIGN (0x4) + 0x0801e188 _etext = . + +.vfp11_veneer 0x0801e188 0x0 + .vfp11_veneer 0x0801e188 0x0 linker stubs + +.v4_bx 0x0801e188 0x0 + .v4_bx 0x0801e188 0x0 linker stubs + +.iplt 0x0801e188 0x0 + .iplt 0x0801e188 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + +.rodata 0x0801e188 0x20a8 + 0x0801e188 . = ALIGN (0x4) + *(.rodata) + .rodata 0x0801e188 0x1c CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .rodata 0x0801e1a4 0x8c CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .rodata 0x0801e230 0x8 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .rodata 0x0801e238 0x1c CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + *(.rodata*) + .rodata.flagBitshiftOffset.0 + 0x0801e254 0x8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .rodata.vTaskStartScheduler.str1.4 + 0x0801e25c 0x5 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + *fill* 0x0801e261 0x3 + .rodata._DoInit.str1.4 + 0x0801e264 0x9 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + *fill* 0x0801e26d 0x3 + .rodata._aInitStr.0 + 0x0801e270 0x11 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + *fill* 0x0801e281 0x3 + .rodata._aV2C.0 + 0x0801e284 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .rodata.str1.4 + 0x0801e294 0xc CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .rodata.main.str1.4 + 0x0801e2a0 0x45 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + *fill* 0x0801e2e5 0x3 + .rodata.AHBPrescTable + 0x0801e2e8 0x10 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + 0x0801e2e8 AHBPrescTable + .rodata.APBPrescTable + 0x0801e2f8 0x8 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + 0x0801e2f8 APBPrescTable + .rodata.USBD_FS_ProductStrDescriptor.str1.4 + 0x0801e300 0x11 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + *fill* 0x0801e311 0x3 + .rodata.USBD_FS_ManufacturerStrDescriptor.str1.4 + 0x0801e314 0xe CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + *fill* 0x0801e322 0x2 + .rodata.USBD_FS_ConfigStrDescriptor.str1.4 + 0x0801e324 0xb CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + *fill* 0x0801e32f 0x1 + .rodata.USBD_FS_InterfaceStrDescriptor.str1.4 + 0x0801e330 0xe CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + *fill* 0x0801e33e 0x2 + .rodata.ChassisInit.str1.4 + 0x0801e340 0x19 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + *fill* 0x0801e359 0x3 + .rodata.EmergencyHandler.str1.4 + 0x0801e35c 0x53 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + 0x67 (size before relaxing) + *fill* 0x0801e3af 0x1 + .rodata.RobotCMDInit.str1.4 + 0x0801e3b0 0x2f CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + 0x49 (size before relaxing) + .rodata.GimbalInit.str1.4 + 0x0801e3df 0x17 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + *fill* 0x0801e3df 0x1 + .rodata.str1.4 + 0x0801e3e0 0x33 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + *fill* 0x0801e413 0x1 + .rodata.StartINSTASK.str1.4 + 0x0801e414 0x5c CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x7c (size before relaxing) + .rodata.StartMOTORTASK.str1.4 + 0x0801e470 0x62 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + *fill* 0x0801e4d2 0x2 + .rodata.StartDAEMONTASK.str1.4 + 0x0801e4d4 0x63 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + *fill* 0x0801e537 0x1 + .rodata.StartUITASK.str1.4 + 0x0801e538 0x6e CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + *fill* 0x0801e5a6 0x2 + .rodata.StartROBOTTASK.str1.4 + 0x0801e5a8 0x6b CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .rodata.ShootInit.str1.4 + 0x0801e613 0x16 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + *fill* 0x0801e613 0x1 + .rodata.CANRegister.str1.4 + 0x0801e614 0xc9 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0xe9 (size before relaxing) + *fill* 0x0801e6dd 0x3 + .rodata.CANTransmit.str1.4 + 0x0801e6e0 0x84 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .rodata.USARTRegister.str1.4 + 0x0801e764 0x71 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x85 (size before relaxing) + *fill* 0x0801e7d5 0x3 + .rodata.HAL_UART_ErrorCallback.str1.4 + 0x0801e7d8 0x48 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x54 (size before relaxing) + .rodata.USBInit.str1.4 + 0x0801e820 0x1b CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + 0x2d (size before relaxing) + *fill* 0x0801e83b 0x1 + .rodata.IMU_QuaternionEKF_F + 0x0801e83c 0x90 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x0801e83c IMU_QuaternionEKF_F + .rodata.Calibrate_MPU_Offset.str1.4 + 0x0801e8cc 0x68 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x88 (size before relaxing) + .rodata.bmi088_accel_init.str1.4 + 0x0801e934 0x33 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x0801e967 0x1 + .rodata.bmi088_gyro_init.str1.4 + 0x0801e968 0x34 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .rodata.BMI088_Accel_Init_Table + 0x0801e99c 0x12 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x0801e9ae 0x2 + .rodata.BMI088_Gyro_Init_Table + 0x0801e9b0 0x12 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x0801e9c2 0x2 + .rodata.xb 0x0801e9c4 0xc CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x0801e9c4 xb + .rodata.yb 0x0801e9d0 0xc CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x0801e9d0 yb + .rodata.zb 0x0801e9dc 0xc CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x0801e9dc zb + .rodata.VisionOfflineCallback.str1.4 + 0x0801e9e8 0x3a CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x4d (size before relaxing) + *fill* 0x0801ea22 0x2 + .rodata.CheckName.str1.4 + 0x0801ea24 0x21 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x35 (size before relaxing) + *fill* 0x0801ea45 0x3 + .rodata.CheckLen.str1.4 + 0x0801ea48 0x23 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + *fill* 0x0801ea6b 0x1 + .rodata.DJIMotorLostCallback.str1.4 + 0x0801ea6c 0x39 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x4d (size before relaxing) + *fill* 0x0801eaa5 0x3 + .rodata.MotorSenderGrouping.str1.4 + 0x0801eaa8 0xf0 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0xfc (size before relaxing) + .rodata.DJIMotorChangeFeed.str1.4 + 0x0801eb98 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + *fill* 0x0801ebe2 0x2 + .rodata.str1.4 + 0x0801ebe4 0xd CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + *fill* 0x0801ebf1 0x3 + .rodata.CRC8_TAB + 0x0801ebf4 0x100 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x0801ebf4 CRC8_TAB + .rodata.wCRC_Table + 0x0801ecf4 0x200 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x0801ecf4 wCRC_Table + .rodata.MyUIRefresh.str1.4 + 0x0801eef4 0x78 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .rodata.MyUIInit.str1.4 + 0x0801ef6c 0x6c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .rodata.RefereeLostCallback.str1.4 + 0x0801efd8 0x25 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + 0x39 (size before relaxing) + *fill* 0x0801effd 0x3 + .rodata.RCLostCallback.str1.4 + 0x0801f000 0x23 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + 0x35 (size before relaxing) + *fill* 0x0801f023 0x1 + .rodata.sinTable_f32 + 0x0801f024 0x804 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + 0x0801f024 sinTable_f32 + .rodata._global_impure_ptr + 0x0801f828 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + 0x0801f828 _global_impure_ptr + .rodata._svfprintf_r.str1.4 + 0x0801f82c 0x42 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + *fill* 0x0801f86e 0x2 + .rodata.blanks.1 + 0x0801f870 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .rodata.zeroes.0 + 0x0801f880 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .rodata.__utoa.str1.4 + 0x0801f890 0x25 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + *fill* 0x0801f8b5 0x3 + .rodata._dtoa_r.str1.4 + 0x0801f8b8 0xa2 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + 0xa6 (size before relaxing) + *fill* 0x0801f95a 0x2 + .rodata.__multadd.str1.4 + 0x0801f95c 0x7f d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x93 (size before relaxing) + *fill* 0x0801f9db 0x5 + .rodata.__mprec_bigtens + 0x0801f9e0 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x0801f9e0 __mprec_bigtens + .rodata.__mprec_tens + 0x0801fa08 0xc8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + 0x0801fa08 __mprec_tens + .rodata.p05.0 0x0801fad0 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .rodata.__assert_func.str1.4 + 0x0801fadc 0x3f d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + 0x43 (size before relaxing) + *fill* 0x0801fb1b 0x1 + .rodata._setlocale_r.str1.4 + 0x0801fb1c 0xa d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + 0xd (size before relaxing) + *fill* 0x0801fb26 0x2 + .rodata.str1.4 + 0x0801fb28 0x2 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .rodata._vfiprintf_r.str1.4 + 0x0801fb2a 0x2f d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + *fill* 0x0801fb2a 0x2 + .rodata.blanks.1 + 0x0801fb2c 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .rodata.zeroes.0 + 0x0801fb3c 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .rodata._ctype_ + 0x0801fb4c 0x101 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + 0x0801fb4c _ctype_ + .rodata.log.str1.4 + 0x0801fc4d 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-w_log.o) + .rodata.acosf.str1.4 + 0x0801fc4d 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_acos.o) + .rodata.asinf.str1.4 + 0x0801fc4d 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-wf_asin.o) + *fill* 0x0801fc4d 0x3 + .rodata.npio2_hw + 0x0801fc50 0x80 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .rodata.two_over_pi + 0x0801fcd0 0x108 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-e_rem_pio2.o) + .rodata.CSWTCH.8 + 0x0801fdd8 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .rodata.CSWTCH.9 + 0x0801fde4 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_atan2.o) + .rodata.npio2_hw + 0x0801fdf0 0x80 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .rodata.two_over_pi + 0x0801fe70 0x318 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-ef_rem_pio2.o) + .rodata.PIo2 0x08020188 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .rodata.init_jk + 0x080201c8 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-k_rem_pio2.o) + .rodata.PIo2 0x080201d8 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .rodata.init_jk + 0x08020204 0xc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-kf_rem_pio2.o) + .rodata.atanhi + 0x08020210 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + .rodata.atanlo + 0x08020220 0x10 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a(lib_a-sf_atan.o) + 0x08020230 . = ALIGN (0x4) + +.ARM.extab 0x08020230 0x0 + 0x08020230 . = ALIGN (0x4) + *(.ARM.extab* .gnu.linkonce.armextab.*) + 0x08020230 . = ALIGN (0x4) + +.ARM 0x08020230 0x8 + 0x08020230 . = ALIGN (0x4) + 0x08020230 __exidx_start = . + *(.ARM.exidx*) + .ARM.exidx 0x08020230 0x8 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + 0x08020238 __exidx_end = . + 0x08020238 . = ALIGN (0x4) + +.rel.dyn 0x08020238 0x0 + .rel.iplt 0x08020238 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + +.preinit_array 0x08020238 0x0 + 0x08020238 . = ALIGN (0x4) + 0x08020238 PROVIDE (__preinit_array_start = .) + *(.preinit_array*) + 0x08020238 PROVIDE (__preinit_array_end = .) + 0x08020238 . = ALIGN (0x4) + +.init_array 0x08020238 0x8 + 0x08020238 . = ALIGN (0x4) + 0x08020238 PROVIDE (__init_array_start = .) + *(SORT_BY_NAME(.init_array.*)) + .init_array.00000 + 0x08020238 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + *(.init_array*) + .init_array 0x0802023c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x08020240 PROVIDE (__init_array_end = .) + 0x08020240 . = ALIGN (0x4) + +.fini_array 0x08020240 0x4 + 0x08020240 . = ALIGN (0x4) + 0x08020240 PROVIDE (__fini_array_start = .) + *(SORT_BY_NAME(.fini_array.*)) + *(.fini_array*) + .fini_array 0x08020240 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x08020244 PROVIDE (__fini_array_end = .) + 0x08020244 . = ALIGN (0x4) + 0x08020244 _sidata = LOADADDR (.data) + +.data 0x20000000 0x1000 load address 0x08020244 + 0x20000000 . = ALIGN (0x4) + 0x20000000 _sdata = . + *(.data) + *(.data*) + .data.uwTickFreq + 0x20000000 0x1 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x20000000 uwTickFreq + *fill* 0x20000001 0x3 + .data.uwTickPrio + 0x20000004 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x20000004 uwTickPrio + .data.USBD_CDC + 0x20000008 0x38 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0x20000008 USBD_CDC + .data.USBD_CDC_CfgDesc + 0x20000040 0x43 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + *fill* 0x20000083 0x1 + .data.USBD_CDC_DeviceQualifierDesc + 0x20000084 0xa CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + *fill* 0x2000008e 0x2 + .data.uxCriticalNesting + 0x20000090 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .data.SystemCoreClock + 0x20000094 0x4 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + 0x20000094 SystemCoreClock + .data.USBD_Interface_fops_FS + 0x20000098 0x14 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x20000098 USBD_Interface_fops_FS + .data.FS_Desc 0x200000ac 0x1c CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x200000ac FS_Desc + .data.USBD_FS_DeviceDesc + 0x200000c8 0x12 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x200000c8 USBD_FS_DeviceDesc + *fill* 0x200000da 0x2 + .data.USBD_LangIDDesc + 0x200000dc 0x4 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x200000dc USBD_LangIDDesc + .data.USBD_StringSerial + 0x200000e0 0x1a CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x200000e0 USBD_StringSerial + .data.can2_filter_idx.3 + 0x200000fa 0x1 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + *fill* 0x200000fb 0x1 + .data.IMU_QuaternionEKF_P + 0x200000fc 0x90 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x200000fc IMU_QuaternionEKF_P + .data.crc_tab16 + 0x2000018c 0x200 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .data.BMI088_ACCEL_SEN + 0x2000038c 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x2000038c BMI088_ACCEL_SEN + .data.BMI088_GYRO_SEN + 0x20000390 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x20000390 BMI088_GYRO_SEN + .data.caliOffset + 0x20000394 0x1 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x20000394 caliOffset + *fill* 0x20000395 0x3 + .data.message_center + 0x20000398 0x30 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .data.sender_assignment + 0x200003c8 0x28a CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .data.CRC_INIT + 0x20000652 0x2 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x20000652 CRC_INIT + .data._impure_ptr + 0x20000654 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + 0x20000654 _impure_ptr + .data.impure_data + 0x20000658 0x428 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + .data.__malloc_av_ + 0x20000a80 0x408 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20000a80 __malloc_av_ + .data.__malloc_sbrk_base + 0x20000e88 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20000e88 __malloc_sbrk_base + .data.__malloc_trim_threshold + 0x20000e8c 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20000e8c __malloc_trim_threshold + .data.__atexit_recursive_mutex + 0x20000e90 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + 0x20000e90 __atexit_recursive_mutex + .data.__global_locale + 0x20000e94 0x16c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + 0x20000e94 __global_locale + *(.RamFunc) + *(.RamFunc*) + 0x20001000 . = ALIGN (0x4) + 0x20001000 _edata = . + 0x08021244 _siccmram = LOADADDR (.ccmram) + +.igot.plt 0x20001000 0x0 load address 0x08021244 + .igot.plt 0x20001000 0x0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + +.ccmram 0x10000000 0x0 load address 0x08021244 + 0x10000000 . = ALIGN (0x4) + 0x10000000 _sccmram = . + *(.ccmram) + *(.ccmram*) + 0x10000000 . = ALIGN (0x4) + 0x10000000 _eccmram = . + 0x10000000 . = ALIGN (0x4) + +.bss 0x20001000 0x8de4 + 0x20001000 _sbss = . + 0x20001000 __bss_start__ = _sbss + *(.bss) + .bss 0x20001000 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + *(.bss*) + .bss.uwTick 0x2000101c 0x4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x2000101c uwTick + .bss.pFlash 0x20001020 0x20 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + 0x20001020 pFlash + .bss.cfgidx.0 0x20001040 0x1 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .bss.ucMaxSysCallPriority + 0x20001041 0x1 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + *fill* 0x20001042 0x2 + .bss.ulMaxPRIGROUPValue + 0x20001044 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .bss.pxEnd 0x20001048 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.ucHeap 0x2000104c 0x4e20 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xBlockAllocatedBit + 0x20005e6c 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xFreeBytesRemaining + 0x20005e70 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xMinimumEverFreeBytesRemaining + 0x20005e74 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xNumberOfSuccessfulAllocations + 0x20005e78 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xNumberOfSuccessfulFrees + 0x20005e7c 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.xStart 0x20005e80 0x8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .bss.pxCurrentTCB + 0x20005e88 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x20005e88 pxCurrentTCB + .bss.pxDelayedTaskList + 0x20005e8c 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.pxOverflowDelayedTaskList + 0x20005e90 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.pxReadyTasksLists + 0x20005e94 0x8c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.uxCurrentNumberOfTasks + 0x20005f20 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.uxDeletedTasksWaitingCleanUp + 0x20005f24 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.uxSchedulerSuspended + 0x20005f28 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.uxTaskNumber + 0x20005f2c 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.uxTopReadyPriority + 0x20005f30 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xDelayedTaskList1 + 0x20005f34 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xDelayedTaskList2 + 0x20005f48 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xIdleTaskHandle + 0x20005f5c 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xNextTaskUnblockTime + 0x20005f60 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xNumOfOverflows + 0x20005f64 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xPendedTicks + 0x20005f68 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xPendingReadyList + 0x20005f6c 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xSchedulerRunning + 0x20005f80 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xSuspendedTaskList + 0x20005f84 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xTasksWaitingTermination + 0x20005f98 0x14 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xTickCount + 0x20005fac 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss.xYieldPending + 0x20005fb0 0x4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .bss._SEGGER_RTT + 0x20005fb4 0xa8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + 0x20005fb4 _SEGGER_RTT + .bss._acDownBuffer + 0x2000605c 0x10 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .bss._acUpBuffer + 0x2000606c 0x400 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .bss.hadc1 0x2000646c 0x48 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + 0x2000646c hadc1 + .bss.hdma_adc1 + 0x200064b4 0x60 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + 0x200064b4 hdma_adc1 + .bss.HAL_RCC_CAN1_CLK_ENABLED + 0x20006514 0x4 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .bss.hcan1 0x20006518 0x28 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0x20006518 hcan1 + .bss.hcan2 0x20006540 0x28 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0x20006540 hcan2 + .bss.hcrc 0x20006568 0x8 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + 0x20006568 hcrc + .bss.hdac 0x20006570 0x14 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + 0x20006570 hdac + .bss.defaultTaskHandle + 0x20006584 0x4 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + 0x20006584 defaultTaskHandle + .bss.xIdleStack + 0x20006588 0x200 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .bss.xIdleTaskTCBBuffer + 0x20006788 0x64 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .bss.hdma_i2c2_rx + 0x200067ec 0x60 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x200067ec hdma_i2c2_rx + .bss.hdma_i2c2_tx + 0x2000684c 0x60 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x2000684c hdma_i2c2_tx + .bss.hi2c2 0x200068ac 0x54 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x200068ac hi2c2 + .bss.hi2c3 0x20006900 0x54 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0x20006900 hi2c3 + .bss.hrng 0x20006954 0x10 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + 0x20006954 hrng + .bss.hrtc 0x20006964 0x20 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + 0x20006964 hrtc + .bss.hdma_spi1_rx + 0x20006984 0x60 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x20006984 hdma_spi1_rx + .bss.hdma_spi1_tx + 0x200069e4 0x60 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x200069e4 hdma_spi1_tx + .bss.hdma_spi2_rx + 0x20006a44 0x60 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x20006a44 hdma_spi2_rx + .bss.hdma_spi2_tx + 0x20006aa4 0x60 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x20006aa4 hdma_spi2_tx + .bss.hspi1 0x20006b04 0x58 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x20006b04 hspi1 + .bss.hspi2 0x20006b5c 0x58 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0x20006b5c hspi2 + .bss.htim14 0x20006bb4 0x48 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + 0x20006bb4 htim14 + .bss.__sbrk_heap_end + 0x20006bfc 0x4 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .bss.htim1 0x20006c00 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x20006c00 htim1 + .bss.htim10 0x20006c48 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x20006c48 htim10 + .bss.htim4 0x20006c90 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x20006c90 htim4 + .bss.htim5 0x20006cd8 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x20006cd8 htim5 + .bss.htim8 0x20006d20 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x20006d20 htim8 + .bss.hdma_usart1_rx + 0x20006d68 0x60 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006d68 hdma_usart1_rx + .bss.hdma_usart1_tx + 0x20006dc8 0x60 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006dc8 hdma_usart1_tx + .bss.hdma_usart3_rx + 0x20006e28 0x60 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006e28 hdma_usart3_rx + .bss.hdma_usart6_rx + 0x20006e88 0x60 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006e88 hdma_usart6_rx + .bss.hdma_usart6_tx + 0x20006ee8 0x60 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006ee8 hdma_usart6_tx + .bss.huart1 0x20006f48 0x44 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006f48 huart1 + .bss.huart3 0x20006f8c 0x44 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006f8c huart3 + .bss.huart6 0x20006fd0 0x44 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0x20006fd0 huart6 + .bss.hUsbDeviceFS + 0x20007014 0x2dc CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + 0x20007014 hUsbDeviceFS + .bss.UserRxBufferFS + 0x200072f0 0x800 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x200072f0 UserRxBufferFS + .bss.UserTxBufferFS + 0x20007af0 0x800 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x20007af0 UserTxBufferFS + .bss.rx_cbk 0x200082f0 0x4 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .bss.tx_cbk 0x200082f4 0x4 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .bss.hpcd_USB_OTG_FS + 0x200082f8 0x50c CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x200082f8 hpcd_USB_OTG_FS + .bss.mem.0 0x20008804 0x220 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .bss.USBD_StrDesc + 0x20008a24 0x200 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x20008a24 USBD_StrDesc + .bss.cap 0x20008c24 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.chassis_cmd_recv + 0x20008c28 0x17 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + *fill* 0x20008c3f 0x1 + .bss.chassis_feedback_data + 0x20008c40 0x7 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + *fill* 0x20008c47 0x1 + .bss.chassis_pub + 0x20008c48 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.chassis_sub + 0x20008c4c 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.chassis_vx + 0x20008c50 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.chassis_vy + 0x20008c54 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.cos_theta.1 + 0x20008c58 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.motor_lb 0x20008c5c 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.motor_lf 0x20008c60 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.motor_rb 0x20008c64 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.motor_rf 0x20008c68 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.sin_theta.0 + 0x20008c6c 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.vt_lb 0x20008c70 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.vt_lf 0x20008c74 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.vt_rb 0x20008c78 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.vt_rf 0x20008c7c 0x4 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .bss.aim_select + 0x20008c80 0x84 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.angle.0 0x20008d04 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.auto_aim_flag + 0x20008d08 0x1 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d09 0x3 + .bss.chassis_cmd_pub + 0x20008d0c 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.chassis_cmd_send + 0x20008d10 0x17 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d27 0x1 + .bss.chassis_feed_sub + 0x20008d28 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.chassis_fetch_data + 0x20008d2c 0x7 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d33 0x1 + .bss.gimbal_cmd_pub + 0x20008d34 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.gimbal_cmd_send + 0x20008d38 0xd CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d45 0x3 + .bss.gimbal_feed_sub + 0x20008d48 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.gimbal_fetch_data + 0x20008d4c 0x2c CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.no_find_cnt + 0x20008d78 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.rc_data 0x20008d7c 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.referee_data + 0x20008d80 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.robot_state + 0x20008d84 0x1 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d85 0x3 + .bss.shoot_cmd_pub + 0x20008d88 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.shoot_cmd_send + 0x20008d8c 0xa CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d96 0x2 + .bss.shoot_feed_sub + 0x20008d98 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.shoot_fetch_data + 0x20008d9c 0x1 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + *fill* 0x20008d9d 0x3 + .bss.trajectory_cal + 0x20008da0 0x5c CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.vision_recv_data + 0x20008dfc 0x4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.vision_send_data + 0x20008e00 0x18 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .bss.gimba_IMU_data + 0x20008e18 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.gimbal_cmd_recv + 0x20008e1c 0xd CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + *fill* 0x20008e29 0x3 + .bss.gimbal_feedback_data + 0x20008e2c 0x2c CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.gimbal_pub + 0x20008e58 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.gimbal_sub + 0x20008e5c 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.gravity_current + 0x20008e60 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.pitch_motor + 0x20008e64 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.yaw_motor + 0x20008e68 0x4 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .bss.daemonTaskHandle + 0x20008e6c 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x20008e6c daemonTaskHandle + .bss.daemon_dt.2 + 0x20008e70 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.daemon_start.3 + 0x20008e74 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.insTaskHandle + 0x20008e78 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x20008e78 insTaskHandle + .bss.ins_dt.6 0x20008e7c 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.ins_start.7 + 0x20008e80 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.motorTaskHandle + 0x20008e84 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x20008e84 motorTaskHandle + .bss.motor_dt.4 + 0x20008e88 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.motor_start.5 + 0x20008e8c 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.robotTaskHandle + 0x20008e90 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x20008e90 robotTaskHandle + .bss.robot_dt.0 + 0x20008e94 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.robot_start.1 + 0x20008e98 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .bss.uiTaskHandle + 0x20008e9c 0x4 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x20008e9c uiTaskHandle + .bss.dead_time + 0x20008ea0 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.detect_time.2 + 0x20008ea4 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.friction_l + 0x20008ea8 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.friction_r + 0x20008eac 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.hibernate_time + 0x20008eb0 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.last_detect_time.1 + 0x20008eb4 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.loader 0x20008eb8 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.shoot_cmd_recv + 0x20008ebc 0xa CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + *fill* 0x20008ec6 0x2 + .bss.shoot_feedback_data + 0x20008ec8 0x1 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + *fill* 0x20008ec9 0x3 + .bss.shoot_pub + 0x20008ecc 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.shoot_sub + 0x20008ed0 0x4 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .bss.busy_count.2 + 0x20008ed4 0x4 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .bss.can1_filter_idx.4 + 0x20008ed8 0x1 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + *fill* 0x20008ed9 0x3 + .bss.can_instance + 0x20008edc 0x40 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .bss.idx 0x20008f1c 0x1 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + *fill* 0x20008f1d 0x3 + .bss.rxconf.0 0x20008f20 0x1c CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .bss.wait_time.1 + 0x20008f3c 0x4 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .bss.CNT_TEMP1.2 + 0x20008f40 0x8 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CNT_TEMP2.1 + 0x20008f48 0x8 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CNT_TEMP3.0 + 0x20008f50 0x8 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CPU_FREQ_Hz + 0x20008f58 0x4 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CPU_FREQ_Hz_ms + 0x20008f5c 0x4 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CPU_FREQ_Hz_us + 0x20008f60 0x4 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + *fill* 0x20008f64 0x4 + .bss.CYCCNT64 0x20008f68 0x8 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CYCCNT_LAST + 0x20008f70 0x4 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.CYCCNT_RountCount + 0x20008f74 0x4 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.SysTime 0x20008f78 0x8 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .bss.bit_locker.3 + 0x20008f80 0x1 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + *fill* 0x20008f81 0x3 + .bss.gpio_instance + 0x20008f84 0x28 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .bss.idx 0x20008fac 0x1 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .bss.idx 0x20008fad 0x1 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + *fill* 0x20008fae 0x2 + .bss.iic_instance + 0x20008fb0 0x8 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .bss.idx 0x20008fb8 0x1 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + *fill* 0x20008fb9 0x3 + .bss.pwm_instance + 0x20008fbc 0x40 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .bss.idx 0x20008ffc 0x1 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + *fill* 0x20008ffd 0x3 + .bss.usart_instance + 0x20009000 0xc CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .bss.bsp_usb_rx_buffer + 0x2000900c 0x4 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .bss.buzzer 0x20009010 0x4 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .bss.buzzer_list + 0x20009014 0x14 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .bss.IMU_QuaternionEKF_H + 0x20009028 0x48 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x20009028 IMU_QuaternionEKF_H + .bss.IMU_QuaternionEKF_K + 0x20009070 0x48 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x20009070 IMU_QuaternionEKF_K + .bss.QEKF_INS 0x200090b8 0x1e0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x200090b8 QEKF_INS + .bss.accelInvNorm.0 + 0x20009298 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.doubleq0.12 + 0x2000929c 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.doubleq1.11 + 0x200092a0 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.doubleq2.10 + 0x200092a4 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.doubleq3.9 + 0x200092a8 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.halfgxdt.3 + 0x200092ac 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.halfgydt.2 + 0x200092b0 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.halfgzdt.1 + 0x200092b4 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q0.16 0x200092b8 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q0.8 0x200092bc 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q1.15 0x200092c0 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q1.7 0x200092c4 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q2.14 0x200092c8 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q2.6 0x200092cc 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q3.13 0x200092d0 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.q3.5 0x200092d4 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.qInvNorm.4 + 0x200092d8 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .bss.temp_Iout.1 + 0x200092dc 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .bss.temp_Output.0 + 0x200092e0 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .bss.sizeof_double + 0x200092e4 0x2 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x200092e4 sizeof_double + .bss.sizeof_float + 0x200092e6 0x2 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x200092e6 sizeof_float + .bss.decimal.0 + 0x200092e8 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .bss.integer.1 + 0x200092ec 0x4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .bss.daemon_instances + 0x200092f0 0x100 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .bss.idx 0x200093f0 0x1 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + *fill* 0x200093f1 0x3 + .bss.BMI088_SPI + 0x200093f4 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x200093f4 BMI088_SPI + .bss.BMI088 0x200093f8 0x34 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x200093f8 BMI088 + .bss.bmi088_raw_temp.0 + 0x2000942c 0x2 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x2000942e 0x2 + .bss.buf.1 0x20009430 0x8 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .bss.caliCount + 0x20009438 0x2 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x20009438 caliCount + .bss.error 0x2000943a 0x1 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x2000943b 0x1 + .bss.gNormDiff + 0x2000943c 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x2000943c gNormDiff + .bss.gyroDiff 0x20009440 0xc CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0x20009440 gyroDiff + .bss.res 0x2000944c 0x1 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x2000944d 0x3 + .bss.startTime.3 + 0x20009450 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .bss.write_reg_num + 0x20009454 0x1 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + *fill* 0x20009455 0x3 + .bss.IMU_Param + 0x20009458 0x1c CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.INS 0x20009474 0x7c CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.INS_DWT_Count + 0x200094f0 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + *fill* 0x200094f4 0x4 + .bss.TempCtrl 0x200094f8 0x78 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_11.8 0x20009570 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_12.7 0x20009574 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_13.6 0x20009578 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_21.5 0x2000957c 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_22.4 0x20009580 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_23.3 0x20009584 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_31.2 0x20009588 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_32.1 0x2000958c 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.c_33.0 0x20009590 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.count.12 0x20009594 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.dt 0x20009598 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.lastPitchOffset.10 + 0x2000959c 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.lastRollOffset.9 + 0x200095a0 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.lastYawOffset.11 + 0x200095a4 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.t 0x200095a8 0x4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .bss.recv_data + 0x200095ac 0x30 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss.send_buffer.0 + 0x200095dc 0x18 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss.send_data + 0x200095f4 0x18 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss.vis_recv_buff + 0x2000960c 0x4 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss.vision_daemon_instance + 0x20009610 0x4 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .bss.iter.0 0x20009614 0x4 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .bss.dji_motor_instance + 0x20009618 0x30 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .bss.idx 0x20009648 0x1 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + *fill* 0x20009649 0x3 + .bss.sender_enable_flag + 0x2000964c 0x6 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + *fill* 0x20009652 0x2 + .bss.ht_motor_instance + 0x20009654 0x10 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .bss.ht_task_handle + 0x20009664 0x10 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .bss.idx 0x20009674 0x1 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .bss.idx 0x20009675 0x1 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + *fill* 0x20009676 0x2 + .bss.lkmotor_instance + 0x20009678 0x10 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .bss.sender_instance + 0x20009688 0x4 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .bss.compare_value + 0x2000968c 0xe CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .bss.servo_idx + 0x2000969a 0x1 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + *fill* 0x2000969b 0x1 + .bss.servo_motor_instance + 0x2000969c 0x1c CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .bss.UI_CharReFresh_data.0 + 0x200096b8 0x3c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .bss.UI_delete_data.2 + 0x200096f4 0x11 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + *fill* 0x20009705 0x3 + .bss.buffer.1 0x20009708 0x200 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .bss.Interactive_data + 0x20009908 0x4 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .bss.UI_Energy + 0x2000990c 0x3c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .bss.UI_Seq 0x20009948 0x1 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x20009948 UI_Seq + *fill* 0x20009949 0x3 + .bss.UI_State_dyn + 0x2000994c 0x13b CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + *fill* 0x20009a87 0x1 + .bss.UI_State_sta + 0x20009a88 0x13b CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + *fill* 0x20009bc3 0x1 + .bss.UI_shoot_line + 0x20009bc4 0x96 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + *fill* 0x20009c5a 0x2 + .bss.referee_recv_info + 0x20009c5c 0x4 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .bss.ui_data 0x20009c60 0x13 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x20009c60 ui_data + *fill* 0x20009c73 0x1 + .bss.referee_daemon + 0x20009c74 0x4 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .bss.referee_info + 0x20009c78 0x7d CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + *fill* 0x20009cf5 0x3 + .bss.referee_usart_instance + 0x20009cf8 0x4 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .bss.rc_ctrl 0x20009cfc 0x90 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .bss.rc_daemon_instance + 0x20009d8c 0x4 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .bss.rc_init_flag + 0x20009d90 0x1 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + *fill* 0x20009d91 0x3 + .bss.rc_usart_instance + 0x20009d94 0x4 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .bss.super_cap_instance + 0x20009d98 0x4 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .bss.__malloc_current_mallinfo + 0x20009d9c 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20009d9c __malloc_current_mallinfo + .bss.__malloc_max_sbrked_mem + 0x20009dc4 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20009dc4 __malloc_max_sbrked_mem + .bss.__malloc_max_total_mem + 0x20009dc8 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20009dc8 __malloc_max_total_mem + .bss.__malloc_top_pad + 0x20009dcc 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + 0x20009dcc __malloc_top_pad + .bss.__lock___atexit_recursive_mutex + 0x20009dd0 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x20009dd0 __lock___atexit_recursive_mutex + *fill* 0x20009dd1 0x3 + .bss.__lock___malloc_recursive_mutex + 0x20009dd4 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x20009dd4 __lock___malloc_recursive_mutex + *fill* 0x20009dd5 0x3 + .bss.__lock___sfp_recursive_mutex + 0x20009dd8 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x20009dd8 __lock___sfp_recursive_mutex + *fill* 0x20009dd9 0x3 + .bss.__lock___sinit_recursive_mutex + 0x20009ddc 0x1 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + 0x20009ddc __lock___sinit_recursive_mutex + *fill* 0x20009ddd 0x3 + .bss.errno 0x20009de0 0x4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + 0x20009de0 errno + *(COMMON) + 0x20009de4 . = ALIGN (0x4) + 0x20009de4 _ebss = . + 0x20009de4 __bss_end__ = _ebss + +._user_heap_stack + 0x20009de4 0xa004 + 0x20009de8 . = ALIGN (0x8) + *fill* 0x20009de4 0x4 + [!provide] PROVIDE (end = .) + 0x20009de8 PROVIDE (_end = .) + 0x2000ede8 . = (. + _Min_Heap_Size) + *fill* 0x20009de8 0x5000 + 0x20013de8 . = (. + _Min_Stack_Size) + *fill* 0x2000ede8 0x5000 + 0x20013de8 . = ALIGN (0x8) + +/DISCARD/ + libc.a(*) + libm.a(*) + libgcc.a(*) + +.ARM.attributes + 0x00000000 0x30 + *(.ARM.attributes) + .ARM.attributes + 0x00000000 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + .ARM.attributes + 0x0000001e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .ARM.attributes + 0x00000052 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .ARM.attributes + 0x00000086 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .ARM.attributes + 0x000000ba 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .ARM.attributes + 0x000000ee 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .ARM.attributes + 0x00000122 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .ARM.attributes + 0x00000156 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .ARM.attributes + 0x0000018a 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .ARM.attributes + 0x000001be 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .ARM.attributes + 0x000001f2 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .ARM.attributes + 0x00000226 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .ARM.attributes + 0x0000025a 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .ARM.attributes + 0x0000028e 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .ARM.attributes + 0x000002c2 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .ARM.attributes + 0x000002f6 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .ARM.attributes + 0x0000032a 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .ARM.attributes + 0x0000035e 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .ARM.attributes + 0x00000392 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .ARM.attributes + 0x000003c6 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .ARM.attributes + 0x000003fa 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .ARM.attributes + 0x0000042e 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .ARM.attributes + 0x00000462 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .ARM.attributes + 0x00000496 0x34 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .ARM.attributes + 0x000004ca 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .ARM.attributes + 0x000004fe 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .ARM.attributes + 0x00000532 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .ARM.attributes + 0x00000566 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .ARM.attributes + 0x0000059a 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .ARM.attributes + 0x000005ce 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .ARM.attributes + 0x00000602 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .ARM.attributes + 0x00000636 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .ARM.attributes + 0x0000066a 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .ARM.attributes + 0x0000069e 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .ARM.attributes + 0x000006d2 0x34 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .ARM.attributes + 0x00000706 0x34 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .ARM.attributes + 0x0000073a 0x34 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .ARM.attributes + 0x0000076e 0x34 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .ARM.attributes + 0x000007a2 0x34 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .ARM.attributes + 0x000007d6 0x34 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .ARM.attributes + 0x0000080a 0x34 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .ARM.attributes + 0x0000083e 0x34 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .ARM.attributes + 0x00000872 0x34 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .ARM.attributes + 0x000008a6 0x34 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .ARM.attributes + 0x000008da 0x34 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .ARM.attributes + 0x0000090e 0x34 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .ARM.attributes + 0x00000942 0x34 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .ARM.attributes + 0x00000976 0x34 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .ARM.attributes + 0x000009aa 0x34 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .ARM.attributes + 0x000009de 0x34 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .ARM.attributes + 0x00000a12 0x34 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .ARM.attributes + 0x00000a46 0x34 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .ARM.attributes + 0x00000a7a 0x34 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .ARM.attributes + 0x00000aae 0x34 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .ARM.attributes + 0x00000ae2 0x34 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .ARM.attributes + 0x00000b16 0x34 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .ARM.attributes + 0x00000b4a 0x34 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .ARM.attributes + 0x00000b7e 0x34 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .ARM.attributes + 0x00000bb2 0x34 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .ARM.attributes + 0x00000be6 0x21 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .ARM.attributes + 0x00000c07 0x34 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .ARM.attributes + 0x00000c3b 0x34 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .ARM.attributes + 0x00000c6f 0x34 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .ARM.attributes + 0x00000ca3 0x34 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .ARM.attributes + 0x00000cd7 0x34 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .ARM.attributes + 0x00000d0b 0x34 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .ARM.attributes + 0x00000d3f 0x34 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .ARM.attributes + 0x00000d73 0x34 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .ARM.attributes + 0x00000da7 0x34 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .ARM.attributes + 0x00000ddb 0x34 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .ARM.attributes + 0x00000e0f 0x34 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .ARM.attributes + 0x00000e43 0x34 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .ARM.attributes + 0x00000e77 0x34 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .ARM.attributes + 0x00000eab 0x34 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .ARM.attributes + 0x00000edf 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .ARM.attributes + 0x00000f13 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .ARM.attributes + 0x00000f47 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .ARM.attributes + 0x00000f7b 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .ARM.attributes + 0x00000faf 0x34 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .ARM.attributes + 0x00000fe3 0x34 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .ARM.attributes + 0x00001017 0x34 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .ARM.attributes + 0x0000104b 0x34 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .ARM.attributes + 0x0000107f 0x34 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .ARM.attributes + 0x000010b3 0x34 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .ARM.attributes + 0x000010e7 0x34 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .ARM.attributes + 0x0000111b 0x34 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .ARM.attributes + 0x0000114f 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .ARM.attributes + 0x00001183 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .ARM.attributes + 0x000011b7 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .ARM.attributes + 0x000011eb 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .ARM.attributes + 0x0000121f 0x34 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .ARM.attributes + 0x00001253 0x34 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .ARM.attributes + 0x00001287 0x34 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .ARM.attributes + 0x000012bb 0x34 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .ARM.attributes + 0x000012ef 0x34 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .ARM.attributes + 0x00001323 0x34 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .ARM.attributes + 0x00001357 0x34 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .ARM.attributes + 0x0000138b 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .ARM.attributes + 0x000013bf 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .ARM.attributes + 0x000013f3 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .ARM.attributes + 0x00001427 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .ARM.attributes + 0x0000145b 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .ARM.attributes + 0x0000148f 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .ARM.attributes + 0x000014c3 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .ARM.attributes + 0x000014f7 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .ARM.attributes + 0x0000152b 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .ARM.attributes + 0x0000155f 0x39 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + .ARM.attributes + 0x00001598 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + .ARM.attributes + 0x000015b6 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + .ARM.attributes + 0x000015d4 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + .ARM.attributes + 0x000015f2 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + .ARM.attributes + 0x00001610 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + .ARM.attributes + 0x0000162e 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + .ARM.attributes + 0x0000164c 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .ARM.attributes + 0x00001680 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_dvmd_tls.o) + .ARM.attributes + 0x0000169e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + .ARM.attributes + 0x000016d2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-impure.o) + .ARM.attributes + 0x00001706 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + .ARM.attributes + 0x0000173a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .ARM.attributes + 0x0000176e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .ARM.attributes + 0x000017a2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + .ARM.attributes + 0x000017d6 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memcpy.o) + .ARM.attributes + 0x000017f2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + .ARM.attributes + 0x00001826 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + .ARM.attributes + 0x0000185a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + .ARM.attributes + 0x0000188e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + .ARM.attributes + 0x000018c2 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + .ARM.attributes + 0x000018de 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + .ARM.attributes + 0x00001912 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strlen.o) + .ARM.attributes + 0x0000192e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + .ARM.attributes + 0x00001962 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .ARM.attributes + 0x00001996 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .ARM.attributes + 0x000019ca 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .ARM.attributes + 0x000019fe 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .ARM.attributes + 0x00001a32 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + .ARM.attributes + 0x00001a66 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .ARM.attributes + 0x00001a9a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + .ARM.attributes + 0x00001ace 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + .ARM.attributes + 0x00001b02 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .ARM.attributes + 0x00001b36 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .ARM.attributes + 0x00001b6a 0x1c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memchr.o) + .ARM.attributes + 0x00001b86 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .ARM.attributes + 0x00001bba 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .ARM.attributes + 0x00001bee 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + .ARM.attributes + 0x00001c22 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + .ARM.attributes + 0x00001c56 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .ARM.attributes + 0x00001c8a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + .ARM.attributes + 0x00001cbe 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .ARM.attributes + 0x00001cf2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + .ARM.attributes + 0x00001d26 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .ARM.attributes + 0x00001d5a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .ARM.attributes + 0x00001d8e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .ARM.attributes + 0x00001dc2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + .ARM.attributes + 0x00001df6 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + .ARM.attributes + 0x00001e2a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .ARM.attributes + 0x00001e5e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .ARM.attributes + 0x00001e92 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + .ARM.attributes + 0x00001ec6 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + .ARM.attributes + 0x00001efa 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-ctype_.o) + .ARM.attributes + 0x00001f2e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .ARM.attributes + 0x00001f62 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .ARM.attributes + 0x00001f96 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .ARM.attributes + 0x00001fca 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + .ARM.attributes + 0x00001ffe 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .ARM.attributes + 0x00002032 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .ARM.attributes + 0x00002066 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .ARM.attributes + 0x0000209a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + .ARM.attributes + 0x000020ce 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .ARM.attributes + 0x00002102 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .ARM.attributes + 0x00002136 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .ARM.attributes + 0x0000216a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + .ARM.attributes + 0x0000219e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + .ARM.attributes + 0x000021d2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .ARM.attributes + 0x00002206 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + .ARM.attributes + 0x0000223a 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + .ARM.attributes + 0x0000226e 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + .ARM.attributes + 0x000022a2 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + .ARM.attributes + 0x000022d6 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) + .ARM.attributes + 0x000022f4 0x1e d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o +OUTPUT(basic_framework.elf elf32-littlearm) +LOAD linker stubs +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc.a +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libm.a +LOAD d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a + +.debug_info 0x00000000 0x62165 + .debug_info 0x00000000 0x9f0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_info 0x000009f0 0xee1 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_info 0x000018d1 0x1269 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_info 0x00002b3a 0x1098 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_info 0x00003bd2 0x3e9 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_info 0x00003fbb 0xb31 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_info 0x00004aec 0xb3f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_info 0x0000562b 0x75a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_info 0x00005d85 0x84e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_info 0x000065d3 0x7b0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_info 0x00006d83 0x3944 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_info 0x0000a6c7 0x1b61 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_info 0x0000c228 0x726 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_info 0x0000c94e 0xb03 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_info 0x0000d451 0x684 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_info 0x0000dad5 0x56e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_info 0x0000e043 0x108a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_info 0x0000f0cd 0x1e96 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_info 0x00010f63 0x3d5b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_info 0x00014cbe 0x1ade CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_info 0x0001679c 0x424e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_info 0x0001a9ea 0x1f99 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_info 0x0001c983 0x16da CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_info 0x0001e05d 0x1223 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_info 0x0001f280 0x13f9 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_info 0x00020679 0x8ca CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_info 0x00020f43 0x22a8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_info 0x000231eb 0x2e0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_info 0x000234cb 0x587 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_info 0x00023a52 0x5d9 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_info 0x0002402b 0x2a92 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_info 0x00026abd 0x1e55 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_info 0x00028912 0x6bc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_info 0x00028fce 0x92b CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_info 0x000298f9 0xd3e CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_info 0x0002a637 0x48d CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_info 0x0002aac4 0x96b CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_info 0x0002b42f 0x743 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_info 0x0002bb72 0x471 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_info 0x0002bfe3 0x8d9 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_info 0x0002c8bc 0xf66 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_info 0x0002d822 0xda9 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_info 0x0002e5cb 0x456 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_info 0x0002ea21 0x59f CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_info 0x0002efc0 0xf1b CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_info 0x0002fedb 0x537 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_info 0x00030412 0xc9e CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_info 0x000310b0 0x1c58 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_info 0x00032d08 0x7af CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_info 0x000334b7 0x174 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_info 0x0003362b 0x538 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_info 0x00033b63 0x17e1 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_info 0x00035344 0x101b CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_info 0x0003635f 0x79f CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_info 0x00036afe 0xa73 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_info 0x00037571 0x1f35 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_info 0x000394a6 0x5ff CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_info 0x00039aa5 0x22 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .debug_info 0x00039ac7 0x160d CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_info 0x0003b0d4 0x1ef4 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_info 0x0003cfc8 0x1452 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_info 0x0003e41a 0xb25 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_info 0x0003ef3f 0x1597 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_info 0x000404d6 0xd8a CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_info 0x00041260 0x63c CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_info 0x0004189c 0x4cf CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_info 0x00041d6b 0xb75 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_info 0x000428e0 0x2be CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_info 0x00042b9e 0xc85 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_info 0x00043823 0xa1b CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_info 0x0004423e 0x1fe CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_info 0x0004443c 0xaf7 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_info 0x00044f33 0xf7a CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_info 0x00045ead 0x652 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_info 0x000464ff 0x305 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_info 0x00046804 0x1188 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_info 0x0004798c 0x6ba CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_info 0x00048046 0xf0b CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_info 0x00048f51 0x2ad CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_info 0x000491fe 0x7fb CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_info 0x000499f9 0x1299 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_info 0x0004ac92 0x2050 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_info 0x0004cce2 0xae8 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_info 0x0004d7ca 0x55d CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_info 0x0004dd27 0x1801 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_info 0x0004f528 0x1bbb CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_info 0x000510e3 0x131d CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_info 0x00052400 0xde CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_info 0x000524de 0xa6a CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_info 0x00052f48 0x3ce CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_info 0x00053316 0x104a CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_info 0x00054360 0x1d68 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_info 0x000560c8 0x10f4 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_info 0x000571bc 0xc70 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_info 0x00057e2c 0x83e CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_info 0x0005866a 0xb01 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_info 0x0005916b 0xc1e D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_info 0x00059d89 0xbf9 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_info 0x0005a982 0xcb5 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_info 0x0005b637 0xd81 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_info 0x0005c3b8 0xb0c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_info 0x0005cec4 0xbf9 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_info 0x0005dabd 0x1612 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_info 0x0005f0cf 0x1612 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .debug_info 0x000606e1 0x1a84 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + +.debug_abbrev 0x00000000 0xdeae + .debug_abbrev 0x00000000 0x206 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_abbrev 0x00000206 0x23a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_abbrev 0x00000440 0x267 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_abbrev 0x000006a7 0x36a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_abbrev 0x00000a11 0x1c2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_abbrev 0x00000bd3 0x1c6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_abbrev 0x00000d99 0x2c2 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_abbrev 0x0000105b 0x26c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_abbrev 0x000012c7 0x257 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_abbrev 0x0000151e 0x1ef CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_abbrev 0x0000170d 0x27f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_abbrev 0x0000198c 0x2b5 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_abbrev 0x00001c41 0x1e5 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_abbrev 0x00001e26 0x28a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_abbrev 0x000020b0 0x180 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_abbrev 0x00002230 0x1a4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_abbrev 0x000023d4 0x20b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_abbrev 0x000025df 0x24e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_abbrev 0x0000282d 0x22b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_abbrev 0x00002a58 0x241 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_abbrev 0x00002c99 0x2fd CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_abbrev 0x00002f96 0x2cb CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_abbrev 0x00003261 0x317 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_abbrev 0x00003578 0x2a8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_abbrev 0x00003820 0x32e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_abbrev 0x00003b4e 0x184 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_abbrev 0x00003cd2 0x35b CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_abbrev 0x0000402d 0x106 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_abbrev 0x00004133 0x26b CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_abbrev 0x0000439e 0x24b CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_abbrev 0x000045e9 0x313 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_abbrev 0x000048fc 0x23a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_abbrev 0x00004b36 0x1f8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_abbrev 0x00004d2e 0x1db CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_abbrev 0x00004f09 0x1f6 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_abbrev 0x000050ff 0x177 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_abbrev 0x00005276 0x1d3 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_abbrev 0x00005449 0x126 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_abbrev 0x0000556f 0x183 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_abbrev 0x000056f2 0x16a CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_abbrev 0x0000585c 0x1ef CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_abbrev 0x00005a4b 0x20f CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_abbrev 0x00005c5a 0x18a CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_abbrev 0x00005de4 0x183 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_abbrev 0x00005f67 0x1ef CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_abbrev 0x00006156 0x126 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_abbrev 0x0000627c 0x1ff CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_abbrev 0x0000647b 0x228 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_abbrev 0x000066a3 0x1a3 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_abbrev 0x00006846 0xe7 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_abbrev 0x0000692d 0x119 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_abbrev 0x00006a46 0x22d CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_abbrev 0x00006c73 0x226 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_abbrev 0x00006e99 0x196 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_abbrev 0x0000702f 0x2bf CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_abbrev 0x000072ee 0x2d2 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_abbrev 0x000075c0 0x1ca CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_abbrev 0x0000778a 0x12 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .debug_abbrev 0x0000779c 0x2dd CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_abbrev 0x00007a79 0x2a6 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_abbrev 0x00007d1f 0x232 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_abbrev 0x00007f51 0x1c3 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_abbrev 0x00008114 0x24c CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_abbrev 0x00008360 0x2ab CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_abbrev 0x0000860b 0x193 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_abbrev 0x0000879e 0x202 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_abbrev 0x000089a0 0x24b CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_abbrev 0x00008beb 0x178 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_abbrev 0x00008d63 0x290 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_abbrev 0x00008ff3 0x267 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_abbrev 0x0000925a 0x140 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_abbrev 0x0000939a 0x231 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_abbrev 0x000095cb 0x2d5 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_abbrev 0x000098a0 0x195 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_abbrev 0x00009a35 0x134 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_abbrev 0x00009b69 0x22c CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_abbrev 0x00009d95 0x1b2 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_abbrev 0x00009f47 0x2c5 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_abbrev 0x0000a20c 0x192 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_abbrev 0x0000a39e 0x1ce CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_abbrev 0x0000a56c 0x2f3 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_abbrev 0x0000a85f 0x389 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_abbrev 0x0000abe8 0x263 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_abbrev 0x0000ae4b 0x17a CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_abbrev 0x0000afc5 0x354 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_abbrev 0x0000b319 0x344 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_abbrev 0x0000b65d 0x2c8 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_abbrev 0x0000b925 0x62 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_abbrev 0x0000b987 0x224 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_abbrev 0x0000bbab 0x103 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_abbrev 0x0000bcae 0x2ea CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_abbrev 0x0000bf98 0x2be CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_abbrev 0x0000c256 0x27a CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_abbrev 0x0000c4d0 0x2db CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_abbrev 0x0000c7ab 0x22c CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_abbrev 0x0000c9d7 0x210 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_abbrev 0x0000cbe7 0x216 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_abbrev 0x0000cdfd 0x202 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_abbrev 0x0000cfff 0x225 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_abbrev 0x0000d224 0x26c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_abbrev 0x0000d490 0x1e7 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_abbrev 0x0000d677 0x202 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_abbrev 0x0000d879 0x22c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_abbrev 0x0000daa5 0x22c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .debug_abbrev 0x0000dcd1 0x1dd D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + +.debug_loc 0x00000000 0x2e72c + .debug_loc 0x00000000 0x141 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_loc 0x00000141 0xba1 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_loc 0x00000ce2 0xde6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_loc 0x00001ac8 0x744 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_loc 0x0000220c 0x213 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_loc 0x0000241f 0x78f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_loc 0x00002bae 0xbf9 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_loc 0x000037a7 0x3cc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_loc 0x00003b73 0x57f CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_loc 0x000040f2 0x520 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_loc 0x00004612 0x41b6 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_loc 0x000087c8 0x1423 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_loc 0x00009beb 0xde CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_loc 0x00009cc9 0x58c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_loc 0x0000a255 0x3cf CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_loc 0x0000a624 0x3c9 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_loc 0x0000a9ed 0xea8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_loc 0x0000b895 0x1ded CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_loc 0x0000d682 0x506c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_loc 0x000126ee 0x1cd7 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_loc 0x000143c5 0x49ab CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_loc 0x00018d70 0x255e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_loc 0x0001b2ce 0xa5b CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_loc 0x0001bd29 0xdd6 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_loc 0x0001caff 0x1869 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_loc 0x0001e368 0x2b8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_loc 0x0001e620 0x135a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_loc 0x0001f97a 0xad CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_loc 0x0001fa27 0x124 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_loc 0x0001fb4b 0x434 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_loc 0x0001ff7f 0x1f71 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_loc 0x00021ef0 0x2605 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_loc 0x000244f5 0x739 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_loc 0x00024c2e 0x64 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_loc 0x00024c92 0xcb CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_loc 0x00024d5d 0x84 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_loc 0x00024de1 0x25 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_loc 0x00024e06 0xb8 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_loc 0x00024ebe 0x42 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_loc 0x00024f00 0x42 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_loc 0x00024f42 0xac CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_loc 0x00024fee 0xf2 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_loc 0x000250e0 0x3c5 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_loc 0x000254a5 0x64 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_loc 0x00025509 0x158 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_loc 0x00025661 0x13a CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_loc 0x0002579b 0xe0 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_loc 0x0002587b 0x1d9 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_loc 0x00025a54 0xba2 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_loc 0x000265f6 0x38f CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_loc 0x00026985 0x2c CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_loc 0x000269b1 0x3a CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_loc 0x000269eb 0x2e CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_loc 0x00026a19 0xb9 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_loc 0x00026ad2 0x8c CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_loc 0x00026b5e 0x2a9 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_loc 0x00026e07 0x161 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_loc 0x00026f68 0x145 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_loc 0x000270ad 0x51a CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_loc 0x000275c7 0x2d1 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_loc 0x00027898 0x2d6 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_loc 0x00027b6e 0x38d CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_loc 0x00027efb 0x4a CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_loc 0x00027f45 0x99 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_loc 0x00027fde 0x532 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_loc 0x00028510 0x121 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_loc 0x00028631 0x418 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_loc 0x00028a49 0x2ea CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_loc 0x00028d33 0x456 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_loc 0x00029189 0x677 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_loc 0x00029800 0xb1 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_loc 0x000298b1 0x23 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_loc 0x000298d4 0x4d2 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_loc 0x00029da6 0x682 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_loc 0x0002a428 0x6f CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_loc 0x0002a497 0x2ab CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_loc 0x0002a742 0x769 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_loc 0x0002aeab 0x5cb CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_loc 0x0002b476 0x2b8 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_loc 0x0002b72e 0x12f CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_loc 0x0002b85d 0x4a4 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_loc 0x0002bd01 0xa33 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_loc 0x0002c734 0x9c CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_loc 0x0002c7d0 0x11c CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_loc 0x0002c8ec 0x203 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_loc 0x0002caef 0xaa CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_loc 0x0002cb99 0x2a2 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_loc 0x0002ce3b 0x30f D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_loc 0x0002d14a 0x2e6 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_loc 0x0002d430 0x62c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_loc 0x0002da5c 0x7f6 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_loc 0x0002e252 0x2e6 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_loc 0x0002e538 0xfa D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_loc 0x0002e632 0xfa D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + +.debug_aranges 0x00000000 0x3418 + .debug_aranges + 0x00000000 0xf0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_aranges + 0x000000f0 0xe8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_aranges + 0x000001d8 0x138 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_aranges + 0x00000310 0xa8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_aranges + 0x000003b8 0x50 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_aranges + 0x00000408 0xc0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_aranges + 0x000004c8 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_aranges + 0x00000558 0xa0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_aranges + 0x000005f8 0x98 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_aranges + 0x00000690 0x58 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_aranges + 0x000006e8 0x2a0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_aranges + 0x00000988 0x148 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_aranges + 0x00000ad0 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_aranges + 0x00000b08 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_aranges + 0x00000b90 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_aranges + 0x00000bd8 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_aranges + 0x00000c60 0xe8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_aranges + 0x00000d48 0x1d0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_aranges + 0x00000f18 0x3d0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_aranges + 0x000012e8 0x168 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_aranges + 0x00001450 0x200 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_aranges + 0x00001650 0x1a0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_aranges + 0x000017f0 0x90 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_aranges + 0x00001880 0xd8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_aranges + 0x00001958 0x88 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_aranges + 0x000019e0 0x50 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_aranges + 0x00001a30 0x1d8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_aranges + 0x00001c08 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_aranges + 0x00001c48 0x80 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_aranges + 0x00001cc8 0x58 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_aranges + 0x00001d20 0x1c0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_aranges + 0x00001ee0 0x138 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_aranges + 0x00002018 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_aranges + 0x00002058 0x30 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_aranges + 0x00002088 0x38 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_aranges + 0x000020c0 0x30 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_aranges + 0x000020f0 0x30 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_aranges + 0x00002120 0x20 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_aranges + 0x00002140 0x30 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_aranges + 0x00002170 0x20 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_aranges + 0x00002190 0x38 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_aranges + 0x000021c8 0x38 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_aranges + 0x00002200 0x30 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_aranges + 0x00002230 0x30 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_aranges + 0x00002260 0x38 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_aranges + 0x00002298 0x20 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_aranges + 0x000022b8 0x30 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_aranges + 0x000022e8 0x140 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_aranges + 0x00002428 0xa8 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_aranges + 0x000024d0 0x20 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_aranges + 0x000024f0 0x28 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_aranges + 0x00002518 0x58 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_aranges + 0x00002570 0x40 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_aranges + 0x000025b0 0x20 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_aranges + 0x000025d0 0x50 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_aranges + 0x00002620 0x110 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_aranges + 0x00002730 0x60 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_aranges + 0x00002790 0x28 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .debug_aranges + 0x000027b8 0x38 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_aranges + 0x000027f0 0x58 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_aranges + 0x00002848 0x28 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_aranges + 0x00002870 0x60 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_aranges + 0x000028d0 0x30 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_aranges + 0x00002900 0x58 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_aranges + 0x00002958 0x60 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_aranges + 0x000029b8 0x48 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_aranges + 0x00002a00 0x50 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_aranges + 0x00002a50 0x30 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_aranges + 0x00002a80 0x58 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_aranges + 0x00002ad8 0x48 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_aranges + 0x00002b20 0x28 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_aranges + 0x00002b48 0x38 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_aranges + 0x00002b80 0x50 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_aranges + 0x00002bd0 0x68 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_aranges + 0x00002c38 0x40 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_aranges + 0x00002c78 0x60 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_aranges + 0x00002cd8 0x98 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_aranges + 0x00002d70 0x38 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_aranges + 0x00002da8 0x38 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_aranges + 0x00002de0 0x40 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_aranges + 0x00002e20 0x58 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_aranges + 0x00002e78 0x70 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_aranges + 0x00002ee8 0x50 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_aranges + 0x00002f38 0x48 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_aranges + 0x00002f80 0x68 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_aranges + 0x00002fe8 0x80 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_aranges + 0x00003068 0x58 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_aranges + 0x000030c0 0x20 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_aranges + 0x000030e0 0x40 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_aranges + 0x00003120 0x48 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_aranges + 0x00003168 0x70 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_aranges + 0x000031d8 0x48 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_aranges + 0x00003220 0x40 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_aranges + 0x00003260 0x48 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_aranges + 0x000032a8 0x38 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_aranges + 0x000032e0 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_aranges + 0x00003300 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_aranges + 0x00003320 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_aranges + 0x00003340 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_aranges + 0x00003360 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_aranges + 0x00003380 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_aranges + 0x000033a0 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_aranges + 0x000033c0 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_aranges + 0x000033e0 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .debug_aranges + 0x00003400 0x18 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + +.debug_ranges 0x00000000 0x3388 + .debug_ranges 0x00000000 0xe0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_ranges 0x000000e0 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_ranges 0x000001b8 0x128 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_ranges 0x000002e0 0xf8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_ranges 0x000003d8 0x40 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_ranges 0x00000418 0xb0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_ranges 0x000004c8 0x80 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_ranges 0x00000548 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_ranges 0x000005d8 0x88 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_ranges 0x00000660 0x48 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_ranges 0x000006a8 0x2a8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_ranges 0x00000950 0x138 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_ranges 0x00000a88 0x28 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_ranges 0x00000ab0 0x90 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_ranges 0x00000b40 0x38 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_ranges 0x00000b78 0x78 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_ranges 0x00000bf0 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_ranges 0x00000cc8 0x1c0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_ranges 0x00000e88 0x3c0 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_ranges 0x00001248 0x158 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_ranges 0x000013a0 0x208 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_ranges 0x000015a8 0x190 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_ranges 0x00001738 0x80 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_ranges 0x000017b8 0xc8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_ranges 0x00001880 0x78 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_ranges 0x000018f8 0x40 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_ranges 0x00001938 0x1c8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_ranges 0x00001b00 0x30 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_ranges 0x00001b30 0x88 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_ranges 0x00001bb8 0x48 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_ranges 0x00001c00 0x2a0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_ranges 0x00001ea0 0x360 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_ranges 0x00002200 0x30 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_ranges 0x00002230 0x20 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_ranges 0x00002250 0x28 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_ranges 0x00002278 0x20 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_ranges 0x00002298 0x20 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_ranges 0x000022b8 0x10 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_ranges 0x000022c8 0x20 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_ranges 0x000022e8 0x10 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_ranges 0x000022f8 0x28 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_ranges 0x00002320 0x28 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_ranges 0x00002348 0x20 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_ranges 0x00002368 0x20 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_ranges 0x00002388 0x28 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_ranges 0x000023b0 0x10 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_ranges 0x000023c0 0x20 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_ranges 0x000023e0 0x130 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_ranges 0x00002510 0x98 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_ranges 0x000025a8 0x10 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_ranges 0x000025b8 0x18 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_ranges 0x000025d0 0x48 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_ranges 0x00002618 0x30 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_ranges 0x00002648 0x10 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_ranges 0x00002658 0x40 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_ranges 0x00002698 0x100 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_ranges 0x00002798 0x50 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_ranges 0x000027e8 0x20 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .debug_ranges 0x00002808 0x28 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_ranges 0x00002830 0x60 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_ranges 0x00002890 0x18 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_ranges 0x000028a8 0x50 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_ranges 0x000028f8 0x20 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_ranges 0x00002918 0x48 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_ranges 0x00002960 0x50 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_ranges 0x000029b0 0x38 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_ranges 0x000029e8 0x60 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_ranges 0x00002a48 0x20 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_ranges 0x00002a68 0x48 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_ranges 0x00002ab0 0x50 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_ranges 0x00002b00 0x18 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_ranges 0x00002b18 0x40 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_ranges 0x00002b58 0x40 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_ranges 0x00002b98 0x58 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_ranges 0x00002bf0 0x30 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_ranges 0x00002c20 0x50 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_ranges 0x00002c70 0xa0 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_ranges 0x00002d10 0xd0 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_ranges 0x00002de0 0x28 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_ranges 0x00002e08 0x30 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_ranges 0x00002e38 0x90 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_ranges 0x00002ec8 0x60 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_ranges 0x00002f28 0x40 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_ranges 0x00002f68 0x50 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_ranges 0x00002fb8 0xb8 CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_ranges 0x00003070 0x70 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_ranges 0x000030e0 0x48 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_ranges 0x00003128 0x10 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_ranges 0x00003138 0x30 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_ranges 0x00003168 0x38 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_ranges 0x000031a0 0x78 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_ranges 0x00003218 0x38 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_ranges 0x00003250 0x30 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_ranges 0x00003280 0x50 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_ranges 0x000032d0 0x28 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_ranges 0x000032f8 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_ranges 0x00003308 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_ranges 0x00003318 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_ranges 0x00003328 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_ranges 0x00003338 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_ranges 0x00003348 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_ranges 0x00003358 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_ranges 0x00003368 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_ranges 0x00003378 0x10 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + +.debug_line 0x00000000 0x3f93a + .debug_line 0x00000000 0x60d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_line 0x0000060d 0x1139 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_line 0x00001746 0x1185 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_line 0x000028cb 0x820 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_line 0x000030eb 0x459 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_line 0x00003544 0x8ab CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_line 0x00003def 0xead CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_line 0x00004c9c 0x7eb CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_line 0x00005487 0x76a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_line 0x00005bf1 0x769 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_line 0x0000635a 0x53eb CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_line 0x0000b745 0x15e4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_line 0x0000cd29 0x33d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_line 0x0000d066 0xb97 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_line 0x0000dbfd 0x66d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_line 0x0000e26a 0x616 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_line 0x0000e880 0x10b9 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_line 0x0000f939 0x2571 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_line 0x00011eaa 0x4b2a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_line 0x000169d4 0x1d4e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_line 0x00018722 0x4696 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_line 0x0001cdb8 0x1eda CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_line 0x0001ec92 0xad2 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_line 0x0001f764 0xa32 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_line 0x00020196 0xda9 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_line 0x00020f3f 0x312 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_line 0x00021251 0x1254 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_line 0x000224a5 0x3e1 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_line 0x00022886 0x78d CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_line 0x00023013 0x7ce CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_line 0x000237e1 0x26fc CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_line 0x00025edd 0x1464 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_line 0x00027341 0x68c CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_line 0x000279cd 0x3d0 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_line 0x00027d9d 0x57f CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_line 0x0002831c 0x2b8 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_line 0x000285d4 0x33b CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_line 0x0002890f 0x222 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_line 0x00028b31 0x2e5 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_line 0x00028e16 0x332 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_line 0x00029148 0x550 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_line 0x00029698 0x581 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_line 0x00029c19 0x2b8 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_line 0x00029ed1 0x33d CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_line 0x0002a20e 0x691 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_line 0x0002a89f 0x21b CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_line 0x0002aaba 0x36e CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_line 0x0002ae28 0x6b9 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_line 0x0002b4e1 0x445 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_line 0x0002b926 0x219 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_line 0x0002bb3f 0x2d3 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_line 0x0002be12 0xa38 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_line 0x0002c84a 0x75b CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_line 0x0002cfa5 0x2a5 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_line 0x0002d24a 0x352 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_line 0x0002d59c 0x8d1 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_line 0x0002de6d 0x3e0 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_line 0x0002e24d 0xa0 CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + .debug_line 0x0002e2ed 0x72e CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_line 0x0002ea1b 0xc37 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_line 0x0002f652 0x57c CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_line 0x0002fbce 0x89e CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_line 0x0003046c 0x653 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_line 0x00030abf 0x70a CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_line 0x000311c9 0x435 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_line 0x000315fe 0x438 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_line 0x00031a36 0x582 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_line 0x00031fb8 0x21f CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_line 0x000321d7 0x538 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_line 0x0003270f 0x533 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_line 0x00032c42 0x20d CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_line 0x00032e4f 0x4a5 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_line 0x000332f4 0xe4b CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_line 0x0003413f 0x5c9 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_line 0x00034708 0x386 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_line 0x00034a8e 0xa39 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_line 0x000354c7 0x6c4 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_line 0x00035b8b 0xb99 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_line 0x00036724 0x381 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_line 0x00036aa5 0x2d3 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_line 0x00036d78 0xb9e CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_line 0x00037916 0xe1f CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_line 0x00038735 0x4ad CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_line 0x00038be2 0x505 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_line 0x000390e7 0xbde CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_line 0x00039cc5 0xacd CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_line 0x0003a792 0x82a CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_line 0x0003afbc 0x146 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_line 0x0003b102 0x5ab CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_line 0x0003b6ad 0x31c CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_line 0x0003b9c9 0xae2 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_line 0x0003c4ab 0x6d4 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_line 0x0003cb7f 0x4e4 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_line 0x0003d063 0x5ff CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_line 0x0003d662 0x385 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_line 0x0003d9e7 0x318 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_line 0x0003dcff 0x330 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_line 0x0003e02f 0x31e D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_line 0x0003e34d 0x39a D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_line 0x0003e6e7 0x4f6 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_line 0x0003ebdd 0x259 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_line 0x0003ee36 0x31e D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_line 0x0003f154 0x2d0 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_line 0x0003f424 0x2d3 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .debug_line 0x0003f6f7 0x243 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + +.debug_str 0x00000000 0x11ab7 + .debug_str 0x00000000 0xb33 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0xb9b (size before relaxing) + .debug_str 0x00000b33 0x6de CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + 0x9a3 (size before relaxing) + .debug_str 0x00001211 0x78a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + 0xa8c (size before relaxing) + .debug_str 0x0000199b 0x4bf CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + 0xc6d (size before relaxing) + .debug_str 0x00001e5a 0x173 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + 0x3e4 (size before relaxing) + .debug_str 0x00001fcd 0x35d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + 0x7ee (size before relaxing) + .debug_str 0x0000232a 0x2fa CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + 0x7b7 (size before relaxing) + .debug_str 0x00002624 0x2cb CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + 0x58b (size before relaxing) + .debug_str 0x000028ef 0x24a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + 0x5db (size before relaxing) + .debug_str 0x00002b39 0x1de CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + 0x521 (size before relaxing) + .debug_str 0x00002d17 0xb29 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + 0x1071 (size before relaxing) + .debug_str 0x00003840 0xb68 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + 0xe03 (size before relaxing) + .debug_str 0x000043a8 0x16d CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + 0x767 (size before relaxing) + .debug_str 0x00004515 0x2ff CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + 0x747 (size before relaxing) + .debug_str 0x00004814 0x18e CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + 0x508 (size before relaxing) + .debug_str 0x000049a2 0x23c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + 0x49a (size before relaxing) + .debug_str 0x00004bde 0x548 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + 0x820 (size before relaxing) + .debug_str 0x00005126 0x6f9 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + 0xc3b (size before relaxing) + .debug_str 0x0000581f 0x119b CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + 0x16fa (size before relaxing) + .debug_str 0x000069ba 0x5b1 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + 0xefb (size before relaxing) + .debug_str 0x00006f6b 0x7a7 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + 0xd9a (size before relaxing) + .debug_str 0x00007712 0x475 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + 0xce0 (size before relaxing) + .debug_str 0x00007b87 0x734 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + 0xdb4 (size before relaxing) + .debug_str 0x000082bb 0x37f CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + 0xa18 (size before relaxing) + .debug_str 0x0000863a 0x156 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + 0x843 (size before relaxing) + .debug_str 0x00008790 0x6e CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + 0x718 (size before relaxing) + .debug_str 0x000087fe 0xdeb CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + 0x10dc (size before relaxing) + .debug_str 0x000095e9 0x156 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + 0x343 (size before relaxing) + .debug_str 0x0000973f 0x256 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + 0x4bf (size before relaxing) + .debug_str 0x00009995 0x2e8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + 0x551 (size before relaxing) + .debug_str 0x00009c7d 0x968 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + 0x109b (size before relaxing) + .debug_str 0x0000a5e5 0x508 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + 0x718 (size before relaxing) + .debug_str 0x0000aaed 0x138 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + 0x345 (size before relaxing) + .debug_str 0x0000ac25 0x5f CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + 0x7a3 (size before relaxing) + .debug_str 0x0000ac84 0x73 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + 0xbbd (size before relaxing) + .debug_str 0x0000acf7 0x40 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + 0x455 (size before relaxing) + .debug_str 0x0000ad37 0x40 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + 0x79a (size before relaxing) + .debug_str 0x0000ad77 0x36 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + 0x7ff (size before relaxing) + .debug_str 0x0000adad 0xdc CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + 0x509 (size before relaxing) + .debug_str 0x0000ae89 0x38 CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + 0x8be (size before relaxing) + .debug_str 0x0000aec1 0x74 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + 0xe47 (size before relaxing) + .debug_str 0x0000af35 0x10b CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + 0xb5d (size before relaxing) + .debug_str 0x0000b040 0x34 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + 0x446 (size before relaxing) + .debug_str 0x0000b074 0x48 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + 0x50e (size before relaxing) + .debug_str 0x0000b0bc 0x74 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + 0xdbe (size before relaxing) + .debug_str 0x0000b130 0x38 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + 0x80d (size before relaxing) + .debug_str 0x0000b168 0x7e CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + 0xe9f (size before relaxing) + .debug_str 0x0000b1e6 0x385 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + 0x1776 (size before relaxing) + .debug_str 0x0000b56b 0x21e CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + 0x435 (size before relaxing) + .debug_str 0x0000b789 0x8d CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + 0x261 (size before relaxing) + .debug_str 0x0000b816 0x62 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + 0x3b1 (size before relaxing) + .debug_str 0x0000b878 0x7a CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + 0x1139 (size before relaxing) + .debug_str 0x0000b8f2 0x37 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + 0xdff (size before relaxing) + .debug_str 0x0000b929 0x5d CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + 0x6e8 (size before relaxing) + .debug_str 0x0000b986 0xf5 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + 0x812 (size before relaxing) + .debug_str 0x0000ba7b 0x77 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + 0x15e0 (size before relaxing) + .debug_str 0x0000baf2 0x182 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + 0x494 (size before relaxing) + .debug_str 0x0000bc74 0x4e CMakeFiles/basic_framework.elf.dir/Startup/startup_stm32f407ighx.s.obj + 0x80 (size before relaxing) + .debug_str 0x0000bcc2 0xc63 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + 0x1220 (size before relaxing) + .debug_str 0x0000c925 0xce5 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + 0x168b (size before relaxing) + .debug_str 0x0000d60a 0xf6 CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + 0x1065 (size before relaxing) + .debug_str 0x0000d700 0x247 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + 0x6bf (size before relaxing) + .debug_str 0x0000d947 0x134 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + 0x1179 (size before relaxing) + .debug_str 0x0000da7b 0xef CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + 0x866 (size before relaxing) + .debug_str 0x0000db6a 0x22f CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + 0x490 (size before relaxing) + .debug_str 0x0000dd99 0x141 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + 0x3f1 (size before relaxing) + .debug_str 0x0000deda 0x165 CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + 0x96f (size before relaxing) + .debug_str 0x0000e03f 0x45 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + 0x25d (size before relaxing) + .debug_str 0x0000e084 0xea CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + 0x9a0 (size before relaxing) + .debug_str 0x0000e16e 0x12b CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + 0x849 (size before relaxing) + .debug_str 0x0000e299 0x73 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + 0x296 (size before relaxing) + .debug_str 0x0000e30c 0x1b3 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + 0x946 (size before relaxing) + .debug_str 0x0000e4bf 0x60c CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + 0x87c (size before relaxing) + .debug_str 0x0000eacb 0x10e CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + 0x53e (size before relaxing) + .debug_str 0x0000ebd9 0xc6 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + 0x2ab (size before relaxing) + .debug_str 0x0000ec9f 0xf3 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + 0x640 (size before relaxing) + .debug_str 0x0000ed92 0x10d CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + 0x388 (size before relaxing) + .debug_str 0x0000ee9f 0x231 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + 0x5a6 (size before relaxing) + .debug_str 0x0000f0d0 0x99 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + 0x2e4 (size before relaxing) + .debug_str 0x0000f169 0xae CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + 0x72c (size before relaxing) + .debug_str 0x0000f217 0x3c6 CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + 0xa9a (size before relaxing) + .debug_str 0x0000f5dd 0x246 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + 0x14a2 (size before relaxing) + .debug_str 0x0000f823 0xb1 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + 0x8bf (size before relaxing) + .debug_str 0x0000f8d4 0x98 CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + 0x369 (size before relaxing) + .debug_str 0x0000f96c 0x13c CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + 0x1002 (size before relaxing) + .debug_str 0x0000faa8 0x216 CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + 0x11a5 (size before relaxing) + .debug_str 0x0000fcbe 0x112 CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + 0xebc (size before relaxing) + .debug_str 0x0000fdd0 0x4e CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + 0x22c (size before relaxing) + .debug_str 0x0000fe1e 0x1ff CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + 0x94f (size before relaxing) + .debug_str 0x0001001d 0x109 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + 0x307 (size before relaxing) + .debug_str 0x00010126 0x56d CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + 0x8b9 (size before relaxing) + .debug_str 0x00010693 0x1f2 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + 0x11cc (size before relaxing) + .debug_str 0x00010885 0x1e0 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + 0x111a (size before relaxing) + .debug_str 0x00010a65 0x142 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + 0x968 (size before relaxing) + .debug_str 0x00010ba7 0x8d CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + 0x658 (size before relaxing) + .debug_str 0x00010c34 0x548 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + 0x672 (size before relaxing) + .debug_str 0x0001117c 0x3d D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + 0x755 (size before relaxing) + .debug_str 0x000111b9 0x50 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + 0x768 (size before relaxing) + .debug_str 0x00011209 0x5c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + 0x784 (size before relaxing) + .debug_str 0x00011265 0x91 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + 0x7c8 (size before relaxing) + .debug_str 0x000112f6 0x39 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + 0x693 (size before relaxing) + .debug_str 0x0001132f 0x2f D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + 0x768 (size before relaxing) + .debug_str 0x0001135e 0x6f7 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + 0xd42 (size before relaxing) + .debug_str 0x00011a55 0x34 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + 0xd42 (size before relaxing) + .debug_str 0x00011a89 0x2e D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + 0xd1d (size before relaxing) + +.comment 0x00000000 0xbe + .comment 0x00000000 0x49 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + 0x4a (size before relaxing) + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .comment 0x00000049 0x4a CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .comment 0x00000049 0x75 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + 0x76 (size before relaxing) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .comment 0x000000be 0x76 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_common_tables.o) + +.debug_frame 0x00000000 0xa310 + .debug_frame 0x00000000 0x1ec CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj + .debug_frame 0x000001ec 0x268 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_adc.c.obj + .debug_frame 0x00000454 0x2d8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.c.obj + .debug_frame 0x0000072c 0x148 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj + .debug_frame 0x00000874 0xb8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_crc.c.obj + .debug_frame 0x0000092c 0x1e8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dac.c.obj + .debug_frame 0x00000b14 0x188 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj + .debug_frame 0x00000c9c 0x168 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj + .debug_frame 0x00000e04 0x164 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj + .debug_frame 0x00000f68 0xd8 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj + .debug_frame 0x00001040 0x970 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_i2c.c.obj + .debug_frame 0x000019b0 0x388 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd.c.obj + .debug_frame 0x00001d38 0x5c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pcd_ex.c.obj + .debug_frame 0x00001d94 0x16c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj + .debug_frame 0x00001f00 0xa4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj + .debug_frame 0x00001fa4 0x128 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rng.c.obj + .debug_frame 0x000020cc 0x284 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rtc.c.obj + .debug_frame 0x00002350 0x5a4 CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj + .debug_frame 0x000028f4 0xb0c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c.obj + .debug_frame 0x00003400 0x40c CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c.obj + .debug_frame 0x0000380c 0x5cc CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj + .debug_frame 0x00003dd8 0x4ac CMakeFiles/basic_framework.elf.dir/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usb.c.obj + .debug_frame 0x00004284 0x190 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Class/CDC/Src/usbd_cdc.c.obj + .debug_frame 0x00004414 0x240 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_core.c.obj + .debug_frame 0x00004654 0x180 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ctlreq.c.obj + .debug_frame 0x000047d4 0xb8 CMakeFiles/basic_framework.elf.dir/Middlewares/ST/STM32_USB_Device_Library/Core/Src/usbd_ioreq.c.obj + .debug_frame 0x0000488c 0x594 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.c.obj + .debug_frame 0x00004e20 0x70 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/list.c.obj + .debug_frame 0x00004e90 0x110 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.c.obj + .debug_frame 0x00004fa0 0xd0 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.c.obj + .debug_frame 0x00005070 0x5a8 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/FreeRTOS/Source/tasks.c.obj + .debug_frame 0x00005618 0x414 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c.obj + .debug_frame 0x00005a2c 0xd4 CMakeFiles/basic_framework.elf.dir/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT_printf.c.obj + .debug_frame 0x00005b00 0x68 CMakeFiles/basic_framework.elf.dir/Src/adc.c.obj + .debug_frame 0x00005b68 0x78 CMakeFiles/basic_framework.elf.dir/Src/can.c.obj + .debug_frame 0x00005be0 0x50 CMakeFiles/basic_framework.elf.dir/Src/crc.c.obj + .debug_frame 0x00005c30 0x68 CMakeFiles/basic_framework.elf.dir/Src/dac.c.obj + .debug_frame 0x00005c98 0x30 CMakeFiles/basic_framework.elf.dir/Src/dma.c.obj + .debug_frame 0x00005cc8 0x58 CMakeFiles/basic_framework.elf.dir/Src/freertos.c.obj + .debug_frame 0x00005d20 0x3c CMakeFiles/basic_framework.elf.dir/Src/gpio.c.obj + .debug_frame 0x00005d5c 0x84 CMakeFiles/basic_framework.elf.dir/Src/i2c.c.obj + .debug_frame 0x00005de0 0x70 CMakeFiles/basic_framework.elf.dir/Src/main.c.obj + .debug_frame 0x00005e50 0x50 CMakeFiles/basic_framework.elf.dir/Src/rng.c.obj + .debug_frame 0x00005ea0 0x58 CMakeFiles/basic_framework.elf.dir/Src/rtc.c.obj + .debug_frame 0x00005ef8 0x84 CMakeFiles/basic_framework.elf.dir/Src/spi.c.obj + .debug_frame 0x00005f7c 0x30 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_msp.c.obj + .debug_frame 0x00005fac 0x54 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_hal_timebase_tim.c.obj + .debug_frame 0x00006000 0x358 CMakeFiles/basic_framework.elf.dir/Src/stm32f4xx_it.c.obj + .debug_frame 0x00006358 0x190 CMakeFiles/basic_framework.elf.dir/Src/syscalls.c.obj + .debug_frame 0x000064e8 0x28 CMakeFiles/basic_framework.elf.dir/Src/sysmem.c.obj + .debug_frame 0x00006510 0x30 CMakeFiles/basic_framework.elf.dir/Src/system_stm32f4xx.c.obj + .debug_frame 0x00006540 0x114 CMakeFiles/basic_framework.elf.dir/Src/tim.c.obj + .debug_frame 0x00006654 0x98 CMakeFiles/basic_framework.elf.dir/Src/usart.c.obj + .debug_frame 0x000066ec 0x28 CMakeFiles/basic_framework.elf.dir/Src/usb_device.c.obj + .debug_frame 0x00006714 0xa4 CMakeFiles/basic_framework.elf.dir/Src/usbd_cdc_if.c.obj + .debug_frame 0x000067b8 0x2e4 CMakeFiles/basic_framework.elf.dir/Src/usbd_conf.c.obj + .debug_frame 0x00006a9c 0xe0 CMakeFiles/basic_framework.elf.dir/Src/usbd_desc.c.obj + .debug_frame 0x00006b7c 0x94 CMakeFiles/basic_framework.elf.dir/application/chassis/chassis.c.obj + .debug_frame 0x00006c10 0xd0 CMakeFiles/basic_framework.elf.dir/application/cmd/robot_cmd.c.obj + .debug_frame 0x00006ce0 0x6c CMakeFiles/basic_framework.elf.dir/application/gimbal/gimbal.c.obj + .debug_frame 0x00006d4c 0xf0 CMakeFiles/basic_framework.elf.dir/application/robot.c.obj + .debug_frame 0x00006e3c 0x84 CMakeFiles/basic_framework.elf.dir/application/shoot/shoot.c.obj + .debug_frame 0x00006ec0 0x108 CMakeFiles/basic_framework.elf.dir/bsp/can/bsp_can.c.obj + .debug_frame 0x00006fc8 0x120 CMakeFiles/basic_framework.elf.dir/bsp/dwt/bsp_dwt.c.obj + .debug_frame 0x000070e8 0xa0 CMakeFiles/basic_framework.elf.dir/bsp/gpio/bsp_gpio.c.obj + .debug_frame 0x00007188 0xdc CMakeFiles/basic_framework.elf.dir/bsp/iic/bsp_iic.c.obj + .debug_frame 0x00007264 0x74 CMakeFiles/basic_framework.elf.dir/bsp/log/bsp_log.c.obj + .debug_frame 0x000072d8 0xc4 CMakeFiles/basic_framework.elf.dir/bsp/pwm/bsp_pwm.c.obj + .debug_frame 0x0000739c 0xb4 CMakeFiles/basic_framework.elf.dir/bsp/usart/bsp_usart.c.obj + .debug_frame 0x00007450 0x48 CMakeFiles/basic_framework.elf.dir/bsp/usb/bsp_usb.c.obj + .debug_frame 0x00007498 0x70 CMakeFiles/basic_framework.elf.dir/modules/alarm/buzzer.c.obj + .debug_frame 0x00007508 0x128 CMakeFiles/basic_framework.elf.dir/modules/algorithm/QuaternionEKF.c.obj + .debug_frame 0x00007630 0xd8 CMakeFiles/basic_framework.elf.dir/modules/algorithm/controller.c.obj + .debug_frame 0x00007708 0x98 CMakeFiles/basic_framework.elf.dir/modules/algorithm/crc16.c.obj + .debug_frame 0x000077a0 0x130 CMakeFiles/basic_framework.elf.dir/modules/algorithm/kalman_filter.c.obj + .debug_frame 0x000078d0 0x158 CMakeFiles/basic_framework.elf.dir/modules/algorithm/user_lib.c.obj + .debug_frame 0x00007a28 0xf0 CMakeFiles/basic_framework.elf.dir/modules/auto_aim/auto_aim.c.obj + .debug_frame 0x00007b18 0x60 CMakeFiles/basic_framework.elf.dir/modules/daemon/daemon.c.obj + .debug_frame 0x00007b78 0x8c CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088Middleware.c.obj + .debug_frame 0x00007c04 0x13c CMakeFiles/basic_framework.elf.dir/modules/imu/BMI088driver.c.obj + .debug_frame 0x00007d40 0x1b4 CMakeFiles/basic_framework.elf.dir/modules/imu/ins_task.c.obj + .debug_frame 0x00007ef4 0xb4 CMakeFiles/basic_framework.elf.dir/modules/master_machine/master_process.c.obj + .debug_frame 0x00007fa8 0xbc CMakeFiles/basic_framework.elf.dir/modules/message_center/message_center.c.obj + .debug_frame 0x00008064 0x11c CMakeFiles/basic_framework.elf.dir/modules/motor/DJImotor/dji_motor.c.obj + .debug_frame 0x00008180 0x15c CMakeFiles/basic_framework.elf.dir/modules/motor/HTmotor/HT04.c.obj + .debug_frame 0x000082dc 0xcc CMakeFiles/basic_framework.elf.dir/modules/motor/LKmotor/LK9025.c.obj + .debug_frame 0x000083a8 0x28 CMakeFiles/basic_framework.elf.dir/modules/motor/motor_task.c.obj + .debug_frame 0x000083d0 0x78 CMakeFiles/basic_framework.elf.dir/modules/motor/servo_motor/servo_motor.c.obj + .debug_frame 0x00008448 0xe4 CMakeFiles/basic_framework.elf.dir/modules/referee/crc_ref.c.obj + .debug_frame 0x0000852c 0x1c0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_UI.c.obj + .debug_frame 0x000086ec 0xc0 CMakeFiles/basic_framework.elf.dir/modules/referee/referee_task.c.obj + .debug_frame 0x000087ac 0x98 CMakeFiles/basic_framework.elf.dir/modules/referee/rm_referee.c.obj + .debug_frame 0x00008844 0xa8 CMakeFiles/basic_framework.elf.dir/modules/remote/remote_control.c.obj + .debug_frame 0x000088ec 0x64 CMakeFiles/basic_framework.elf.dir/modules/super_cap/super_cap.c.obj + .debug_frame 0x00008950 0x30 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_power_f32.o) + .debug_frame 0x00008980 0x40 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_trans_f32.o) + .debug_frame 0x000089c0 0x38 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_sub_f32.o) + .debug_frame 0x000089f8 0x44 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_mult_f32.o) + .debug_frame 0x00008a3c 0x4c D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_inverse_f32.o) + .debug_frame 0x00008a88 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_init_f32.o) + .debug_frame 0x00008aa8 0x38 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_mat_add_f32.o) + .debug_frame 0x00008ae0 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_sin_f32.o) + .debug_frame 0x00008b00 0x20 D:\zhandui\cqdm\basic_framework\Middlewares\ST\ARM\DSP\Lib\libarm_cortexM4lf_math.a(arm_cos_f32.o) + .debug_frame 0x00008b20 0xac d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_addsubdf3.o) + .debug_frame 0x00008bcc 0x50 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_muldivdf3.o) + .debug_frame 0x00008c1c 0xc4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_cmpdf2.o) + .debug_frame 0x00008ce0 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_fixdfsi.o) + .debug_frame 0x00008d04 0x24 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_truncdfsf2.o) + .debug_frame 0x00008d28 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x00008d54 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .debug_frame 0x00008d88 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-errno.o) + .debug_frame 0x00008da8 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-init.o) + .debug_frame 0x00008dd4 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-itoa.o) + .debug_frame 0x00008e14 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-malloc.o) + .debug_frame 0x00008e44 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mallocr.o) + .debug_frame 0x00008e90 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memset.o) + .debug_frame 0x00008ebc 0x30 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mlock.o) + .debug_frame 0x00008eec 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-sbrkr.o) + .debug_frame 0x00008f18 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcat.o) + .debug_frame 0x00008f40 0x68 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcmp.o) + .debug_frame 0x00008fa8 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strcpy.o) + .debug_frame 0x00008fc8 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strnlen.o) + .debug_frame 0x00008fe8 0x7c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfprintf.o) + .debug_frame 0x00009064 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-utoa.o) + .debug_frame 0x000090b0 0x54 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vsprintf.o) + .debug_frame 0x00009104 0x68 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__call_atexit.o) + .debug_frame 0x0000916c 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-atexit.o) + .debug_frame 0x0000918c 0xdc d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-dtoa.o) + .debug_frame 0x00009268 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fini.o) + .debug_frame 0x0000929c 0x8c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-freer.o) + .debug_frame 0x00009328 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-localeconv.o) + .debug_frame 0x00009368 0xb0 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lock.o) + .debug_frame 0x00009418 0x280 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mprec.o) + .debug_frame 0x00009698 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reent.o) + .debug_frame 0x000096fc 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-s_frexp.o) + .debug_frame 0x00009728 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-strncpy.o) + .debug_frame 0x00009754 0x88 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-svfiprintf.o) + .debug_frame 0x000097dc 0x34 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-__atexit.o) + .debug_frame 0x00009810 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-assert.o) + .debug_frame 0x00009850 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-callocr.o) + .debug_frame 0x0000987c 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fiprintf.o) + .debug_frame 0x000098ec 0x68 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-locale.o) + .debug_frame 0x00009954 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-mbtowc_r.o) + .debug_frame 0x000099a0 0x40 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-memmove.o) + .debug_frame 0x000099e0 0x48 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-reallocr.o) + .debug_frame 0x00009a28 0xf4 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-vfiprintf.o) + .debug_frame 0x00009b1c 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wctomb_r.o) + .debug_frame 0x00009b58 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wsetup.o) + .debug_frame 0x00009b84 0x28 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-abort.o) + .debug_frame 0x00009bac 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fflush.o) + .debug_frame 0x00009c1c 0x154 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-findfp.o) + .debug_frame 0x00009d70 0x8c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fputwc.o) + .debug_frame 0x00009dfc 0x64 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fvwrite.o) + .debug_frame 0x00009e60 0x54 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fwalk.o) + .debug_frame 0x00009eb4 0x70 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-makebuf.o) + .debug_frame 0x00009f24 0x114 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signal.o) + .debug_frame 0x0000a038 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-signalr.o) + .debug_frame 0x0000a074 0x8c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-stdio.o) + .debug_frame 0x0000a100 0x4c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wbuf.o) + .debug_frame 0x0000a14c 0x60 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-wcrtomb.o) + .debug_frame 0x0000a1ac 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-writer.o) + .debug_frame 0x0000a1d8 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-closer.o) + .debug_frame 0x0000a204 0x3c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fclose.o) + .debug_frame 0x0000a240 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-fstatr.o) + .debug_frame 0x0000a26c 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-isattyr.o) + .debug_frame 0x0000a298 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-lseekr.o) + .debug_frame 0x0000a2c4 0x2c d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg.a(lib_a-readr.o) + .debug_frame 0x0000a2f0 0x20 d:/gcc-arm-none-eabi-10.3-2021.10-win32/gcc-arm-none-eabi-10.3-2021.10/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_arm_unorddf2.o) diff --git a/cmake-build-debug/cmake_install.cmake b/cmake-build-debug/cmake_install.cmake new file mode 100644 index 0000000..b0a1eb7 --- /dev/null +++ b/cmake-build-debug/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: D:/zhandui/cqdm/basic_framework + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/basic_framework") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "arm-none-eabi-objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "D:/zhandui/cqdm/basic_framework/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/daplink.cfg b/daplink.cfg new file mode 100644 index 0000000..b1832f5 --- /dev/null +++ b/daplink.cfg @@ -0,0 +1,19 @@ +# choose st-link/j-link/dap-link etc. +# choose CMSIS-DAP Debugger +adapter driver cmsis-dap +# select SWD port +transport select swd + +# 0x10000 = 64K Flash Size +# 1MB on robomaster-C +set FLASH_SIZE 0x100000 + +source [find target/stm32f4x.cfg] + + +# download speed = 10MHz +# 10MHz on FireDebugger +adapter speed 10000 + +# connect under reset +# reset_config srst_only \ No newline at end of file diff --git a/modules/BMI088/bmi088-datasheet.pdf b/modules/BMI088/bmi088-datasheet.pdf new file mode 100644 index 0000000..eecb83d --- /dev/null +++ b/modules/BMI088/bmi088-datasheet.pdf @@ -0,0 +1,2721 @@ +BMI088 +6-axis Motion Tracking for +High-performance Applications + +BMI088: Data Sheet + +Document revision 1.8 +Document release date +Document number January 2022 +Technical reference code +Notes BST-BMI088-DS000-18 + + 0 273 141 365 + + Data and descriptions in this document are subject to change without + notice. Product photos and pictures are for illustration purposes only + and may differ from the real product appearance +Bosch Sensortec | BMI088 Data sheet 2 | 62 + + Basic Description + +BMI088 is an inertial measurement unit (IMU) for the detection of movements and rotations in 6 degrees +of freedom (6DoF). It combines the functionality of two inertial sensors in one device: an advanced +triaxial 16-bit gyroscope and a versatile, leading-edge triaxial 16-bit accelerometer. + +BMI088 is designed to meet all requirements for high performance consumer applications in harsh +vibration environments such as those encountered in drones and robotics applications. The IMU is +designed to effectively suppress vibrations above a few hundred Hz that could occasionally occur due +to resonances on the pcb or the structure of the total system. + +The sensor has an extended measurement range of up to ±24g to avoid signal clipping under strong +signal exposure. + +An evaluation circuitry (ASIC) converts the output of the micro-electro-mechanical sensing structures +(MEMS), which are developed, produced and tested in BOSCH facilities. The corresponding chip-sets +are packed into one single LGA 3.0mm x 4.5mm x 0.95mm housing. For optimum system integration, +BMI088 is fitted with digital interfaces (SPI or I2C), offering a wide VDDIO voltage range from 1.2V to +3.6V. To provide maximum performance and reliability, each device is tested and is ready-to-use +calibrated. + +To increase flexibility, both gyroscope and accelerometer can not only be operated individually, but tied +together for data synchronization purposes. The on-chip features comprise FIFOs for acceleration and +gyroscope data and interrupt controllers. + +The BMI088 has an excellent temperature behavior with an outstanding low temperature coefficient of +the offset (TCO) and temperature coefficient of the sensitivity (TCS). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 3 | 62 + +Index of Contents + +Basic Description .................................................................................................................................. 2 + +1. Specification ..................................................................................................................................... 7 + 1.1 Electrical Specifications ............................................................................................................. 7 + Electrical Specifications: Accelerometer/Gyroscope ................................................ 8 + 1.2 Accelerometer Specifications .................................................................................................... 9 + 1.3 Gyroscope Specifications ........................................................................................................ 10 + 1.4 Temperature Sensor Specifications......................................................................................... 11 + 1.5 Absolute Maximum Ratings.....................................................................................................12 + +2. Block Diagram ................................................................................................................................ 13 + +3. Quick Start Guide – Device Initialization ..................................................................................... 13 + +4. Functional Description .................................................................................................................. 14 + 4.1 Power Management and Power Modes .................................................................................. 14 + 4.1.1 Power Modes: Accelerometer................................................................................. 14 + 4.1.2 Power Modes: Gyroscope ...................................................................................... 15 + 4.2 Sensor Data.............................................................................................................................15 + 4.3 Sensor Time............................................................................................................................. 16 + 4.4 Output Data Rate (ODR) and Low-pass Filter.........................................................................16 + 4.4.1 Accelerometer......................................................................................................... 16 + 4.4.2 Gyroscope .............................................................................................................. 16 + 4.5 Range Settings ........................................................................................................................ 16 + 4.6 Self-test....................................................................................................................................16 + 4.6.1 Accelerometer......................................................................................................... 17 + 4.6.2 Gyroscope .............................................................................................................. 17 + 4.7 New Data Interrupt .................................................................................................................. 18 + 4.7.1 Accelerometer......................................................................................................... 18 + 4.7.2 Gyroscope .............................................................................................................. 18 + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 4 | 62 + + 4.8 Soft-Reset................................................................................................................................18 + 4.8.1 Soft-Reset Accelerometer....................................................................................... 18 + + 4.9 FIFO.........................................................................................................................................19 + 4.9.1 FIFO operating modes............................................................................................ 19 + 4.9.2 FIFO interrupts........................................................................................................ 19 + 4.9.3 Accelerometer sensor FIFO buffer ......................................................................... 19 + 4.9.4 Gyroscope sensor FIFO buffer ............................................................................... 22 + +5. Register Maps ................................................................................................................................. 24 + 5.1 Communication with the sensor .............................................................................................. 24 + 5.2 Register Map: Accelerometer .................................................................................................. 25 + 5.3 Register Description: Accelerometer ....................................................................................... 26 + 5.3.1 Register 0x00: ACC_CHIP_ID ................................................................................ 26 + 5.3.2 Register 0x02: ACC_ERR_REG............................................................................. 26 + 5.3.3 Register 0x03: ACC_STATUS ................................................................................ 26 + 5.3.4 Register 0x12 – 0x17: ACC data ............................................................................ 27 + 5.3.5 Register 0x18 – 0x1A: Sensortime data ................................................................. 27 + 5.3.6 Register 0x1D: ACC_INT_STAT_1 ......................................................................... 27 + 5.3.7 Register 0x22 – 0x23: Temperature sensor data.................................................... 28 + 5.3.8 Register 0x24-0x25: FIFO_LENGTH...................................................................... 28 + 5.3.9 Register 0x26: FIFO_DATA .................................................................................... 28 + 5.3.10 Register 0x40: ACC_CONF .................................................................................... 29 + 5.3.11 Register 0x41: ACC_RANGE ................................................................................. 30 + 5.3.12 Register 0x45: FIFO_DOWNS ............................................................................... 30 + 5.3.13 Register 0x46 – 0x47: FIFO_WTM ......................................................................... 30 + 5.3.14 Register 0x48: FIFO_CONFIG_0 ........................................................................... 31 + 5.3.15 Register 0x49: FIFO_CONFIG_1 ........................................................................... 31 + 5.3.16 Register 0x53: INT1_IO_CONF.............................................................................. 32 + 5.3.17 Register 0x54: INT2_IO_CONF.............................................................................. 33 + 5.3.18 Register 0x58: INT1_INT2_MAP_DATA ................................................................. 33 + 5.3.19 Register 0x6D: ACC_SELF_TEST ......................................................................... 34 + 5.3.20 Register 0x7C: ACC_PWR_CONF ......................................................................... 34 + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 5 | 62 + + 5.3.21 Register 0x7D: ACC_PWR_CTRL.......................................................................... 34 + 5.3.22 Register 0x7E: ACC_SOFTRESET ........................................................................ 35 +5.4 Register Map: Gyroscope........................................................................................................36 +5.5 Register Description: Gyroscope.............................................................................................37 + 5.5.1 Register 0x00: GYRO_CHIP_ID............................................................................. 37 + 5.5.2 Register 0x02 – 0x07: Rate data ............................................................................ 37 + 5.5.3 Register 0x0A: GYRO_INT_STAT_1 ...................................................................... 38 + 5.5.4 Register 0x0E: FIFO_STATUS ............................................................................... 38 + 5.5.5 Register 0x0F: GYRO_RANGE .............................................................................. 39 + 5.5.6 Register 0x10: GYRO_BANDWIDTH ..................................................................... 39 + 5.5.7 Register 0x11: GYRO_LPM1.................................................................................. 40 + 5.5.8 Register 0x14: GYRO_SOFTRESET ..................................................................... 40 + 5.5.9 Register 0x15: GYRO_INT_CTRL.......................................................................... 40 + 5.5.10 Register 0x16: INT3_INT4_IO_CONF.................................................................... 41 + 5.5.11 Register 0x18: INT3_INT4_IO_MAP ...................................................................... 41 + 5.5.12 Register 0x1E: FIFO_WM_ENABLE ...................................................................... 42 + 5.5.13 Register 0x34: FIFO_EXT_INT_S .......................................................................... 42 + 5.5.14 Register 0x3C: GYRO_SELF_TEST ...................................................................... 42 + 5.5.15 Register 0x3D: FIFO_CONFIG_0........................................................................... 43 + 5.5.16 Register 0x3E: FIFO_CONFIG_1 ........................................................................... 43 + 5.5.17 Register 0x3F: FIFO_DATA .................................................................................... 43 + +6. Digital Interface .............................................................................................................................. 44 + 6.1 Serial Peripheral Interface (SPI)..............................................................................................45 + 6.1.1 SPI interface of gyroscope part .............................................................................. 47 + 6.1.2 SPI interface of accelerometer part ........................................................................ 48 + 6.2 Inter-Integrated Circuit (I²C).....................................................................................................48 + +7. Pin-out and Connection Diagram ................................................................................................. 52 + 7.1 Pin-out ..................................................................................................................................... 52 + 7.2 Connection diagram SPI..........................................................................................................53 + 7.3 Connection diagram I2C .......................................................................................................... 53 + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 6 | 62 + +8. Package ........................................................................................................................................... 54 + 8.1 Outline Dimensions ................................................................................................................. 54 + 8.2 Landing pattern........................................................................................................................55 + 8.3 Sensing axes orientation ......................................................................................................... 56 + 8.4 Marking .................................................................................................................................... 57 + 8.4.1 Mass production samples ....................................................................................... 57 + 8.4.2 Engineering samples .............................................................................................. 57 + 8.5 PCB layout and soldering guidelines.......................................................................................57 + 8.6 Handling instructions ............................................................................................................... 58 + 8.7 Tape and Reel specification.....................................................................................................58 + 8.7.1 Orientation within the reel ....................................................................................... 59 + 8.8 Environmental safety ............................................................................................................... 59 + 8.8.1 Halogen content...................................................................................................... 59 + +9. Legal Disclaimer ............................................................................................................................. 60 + 9.1 Engineering samples ............................................................................................................... 60 + 9.2 Product use..............................................................................................................................60 + 9.3 Application examples and hints ............................................................................................... 60 + +10. Document History and Modification............................................................................................ 61 + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 7 | 62 + +1. Specification + +If not stated otherwise, the given values are over lifetime and full performance temperature and voltage +ranges, minimum/maximum values are ±3σ. + +1.1 Electrical Specifications + +Table 1: Electrical parameter specification + +Parameter Symbol Condition Min Max Unit + + Supply Voltage VDD 2.4 3.6 V +Internal Domains + +Supply Voltage VDDIO 1.2 3.6 V + I/O Domain + +Voltage Input VIL,a SPI & I²C 0.3VDDIO - + +Low Level + +Voltage Input VIH,a SPI & I²C 0.7VDDIO - + +High Level + +Voltage Output VOL,a IOL<= 2mA, SPI 0.23VDDIO - + Low Level + +Voltage Output VOH IOH <= 2mA, SPI 0.8VDDIO - + +High Level + +Operating TA -40 +85 °C + +Temperature + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 8 | 62 + +Electrical Specifications: Accelerometer/Gyroscope + +Table 2: Electrical parameter specification accelerometer + +Parameter Symbol Condition Min Typ Max Units + +Total Supply IDD VDD = VDDIO =3.0V, 150 µA + +Current in 25°C, gFS4g + +Normal mode + +Total Supply IDDsum VDD = VDDIO =3.0V, 3 µA + +Current in 25°C + +Suspend Mode + +Power-up time ts_up Time to first valid 1 ms + + sample from suspend + + mode + +Table 3: Electrical parameter specification gyroscope + +Parameter Symbol Condition Min Typ Max Unit + +Supply Current in IDD VDD = VDDIO = 3.0V, 5 mA + +Normal Mode 25°C, ODR =1kHz + +Supply Current in IDDsum VDD = VDDIO = 3.0V, 25 µA + +Suspend Mode 25°C + +Supply Current in IDDdsum VDD = VDDIO = 3.0V, <5 µA + +Deep Suspend 25°C + +Mode + +Start-up time tsu to ±1º/s of final value; 30 ms + + from power-off + +Wake-up time twusm From suspend- and 30 ms + + deep suspend-modes + +Wake-up time twufpm From fast power-up 10 ms + + mode + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 9 | 62 + +1.2 Accelerometer Specifications + +Table 4: Accelerometer specifications + + Parameter Symbol Condition Min Typ Max Units +Acceleration Range gFS3g 12.5 ±3 1600 g + gFS6g Selectable ±6 g + Sensitivity gFS12g via serial digital interface ±12 g + gFS24g ±24 g + Sensitivity S3g gFS3g, TA=25°C 10920 + Temperature Drift S6g gFS6g, TA=25°C 5460 LSB/g + S12g gFS12g, TA=25°C 2730 LSB/g + Zero-g Offset S24g gFS24g, TA=25°C 1365 LSB/g + Zero-g Offset TCS 0.002 LSB/g + Temperature Drift Nominal VDD and VDDIO, %/K + Output Data Rate Off 25°C, gFS6g 20 + mg + TCO <0.2 + mg/K + ODR + Hz + +Bandwidth range BW 3dB cut-off frequency of 5 280 Hz + + Nonlinearity the accelerometer (245 for + Output Noise + depends on ODR and Z axis) + Density + OSR + Cross Axis + Sensitivity NL best fit straight line, gFS3g 0.5 %FS +Alignment Error 190 µg/√Hz + nrms gFS3g, TA=25°C (Z-axis) + % + Nominal VDD supplies 160 + (X- & Y- + Normal mode + axis) + S relative contribution 0.5 + + between any two of the + + three axes + + EA relative to package outline 0.5 ° + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 10 | 62 + +1.3 Gyroscope Specifications + +Table 5: Gyroscope specifications + +Parameter Symbol Condition Min Typ Max Unit + Range 125 + RFS125 250 °/s + 500 + RFS250 Selectable 1000 °/s + RFS500 via serial digital interface 2000 + 262.144 °/s + 131.072 + RFS1000 65.536 °/s + 32.768 + RFS2000 16.384 °/s + ±1 + Sensitivity Ta=25°C, RFS125 ±0.03 LSB/°/s + Ta=25°C, RFS250 LSB/°/s + Sensitivity Ta=25°C, RFS500 <0.4 LSB/°/s + tolerance Ta=25°C, RFS1000 ±0.05 LSB/°/s +Sensitivity Change Ta=25°C, RFS2000 LSB/°/s +over Temperature Ta=25°C, RFS2000 ±1 + % + Sensitivity Nominal VDD supplies ±0.015 + Supply Volt. Drift TCS -40°C ≤ TA ≤ +85°C %/K + RFS2000 <0.1 + Nonlinearity SVDD TA=25°C, 0.1 %/V + NL %FS + VDDmin ≤ VDD ≤ VDDmax + best fit straight line + RFS1000, RFS2000 + + g-Sensitivity Sensitivity to 0.1 °/s/g + acceleration stimuli in +Zero-rate Offset + all three axis +Zero-rate Offset (frequency <20kHz) + Change over + Temperature Off Ωx Ωy Nominal VDD supplies °/s + and Ωz °/s per K +Zero-rate Offset TA=25°C, slow and fast +Supply Volt. Drift offset cancellation off °/s /V + °/s + Output Noise TCO Nominal VDD supplies + OffΩ VDD -40°C ≤ TA ≤ +85°C + RFS2000 + + TA=25°C, + VDDmin ≤ VDD ≤ VDDmax + + nrms rms, BW=47Hz + + (@ 0.014°/s/√Hz) + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 11 | 62 + +Bandwidth BW f-3dB 523 Hz + + 230 + + 116 + + 64 + + 47 + + 32 + + 23 + + 12 + + Data rate 2000 Hz +(set of x,y,z rate) + 1000 + + 400 + + 200 + + 100 + +Data rate tolerance ±0.3 % + (set of x,y,z rate) + +Cross Axis Sensitivity to stimuli in ±1 % +Sensitivity + non-sense-direction + +1.4 Temperature Sensor Specifications + +Table 6: Temperature sensor specifications + + Parameter Symbol Condition Min Typ Max Units +Temperature Sensor TS at 25°C -104 +Measurement Range 150 °C + +Temperature Sensor dTS 0.125 K/LSB + +Slope + +Temperature Sensor OTS ±1 K + +Offset error + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 12 | 62 + +1.5 Absolute Maximum Ratings + +Table 7: Absolute maximum ratings + +Parameter Condition Min Max Units + +Voltage at Supply Pin VDD Pin -0.3 4 V + + VDDIO Pin -0.3 4 V + +Voltage at any Logic Pin Non-Supply Pin -0.3 VDDIO+0.3 V + +Passive Storage Temp. Range ≤ 65% rel. H. -50 +150 °C + + Duration ≤ 200µs 10,000 g + Duration ≤ 1.0ms +Mechanical Shock 2,000 g + + Free fall 1.8 m + onto hard surfaces + +ESD HBM, at any Pin 2 kV + + CDM 500 V + + MM 200 V + +Note: Stress above these limits may cause damage to the device. Exceeding the specified electrical +limits may affect the device reliability or cause malfunction. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 13 | 62 + +2. Block Diagram + +Figure 1 shows the basic building blocks of the BMI088: + +Figure 1: Block diagram of BMI088 + +3. Quick Start Guide – Device Initialization + +For a proper device initialization, the following steps should be considered: + • The user must decide on the interface (I2C or SPI) already during HW design: with the PS pin + the user determines which interface the sensor should listen to (see chapter 6). + • The gyroscope part of the BMI088 initializes its I/O pins according to the selection given by the + PS pin. + • The accelerometer part starts in I2C mode. It will stay in I2C mode until it detects a rising edge + on the CSB1 pin (chip select of the accelerometer), on which the accelerometer part switches + to SPI mode and stays in this mode until the next power-up-reset. + • To change the accelerometer to SPI mode in the initialization phase, the user could perform a + dummy SPI read operation, e.g. of register ACC_CHIP_ID (the obtained value will be invalid). + +After the POR the gyroscope is in normal mode, while the accelerometer is in suspend mode. To switch +the accelerometer into normal mode, the user must perform the following steps: + + a. Power up the sensor + b. Wait 1 ms + c. Enter normal mode by writing ‘4’ to ACC_PWR_CTRL + d. Wait for 450 microseconds + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 14 | 62 + +4. Functional Description + +4.1 Power Management and Power Modes + +The BMI088 has two distinct power supply pins: + + • VDD is the main power supply for the internal blocks + • VDDIO is a separate power supply pin mainly used for the supply of the interface + +There are no limitations on the voltage levels of both pins relative to each other, as long as each of them +lies within its operating range. Furthermore, the device can be completely switched off (VDD = 0V) while +keeping the VDDIO supply on (VDDIO > 0V) or vice versa. + +When the VDDIO supply is switched off, all interface pins (CSB, SDI, SCK, PS) must be kept close to +GNDIO potential. + +The device contains a power-on reset (POR) generator. It resets the logic part and the register values +after powering-on VDD and VDDIO. This means that all application specific settings which are not equal +to the default settings (refer to 6.2 register map accelerometer and to 8.2 register map gyroscope), must +be changed back to their designated values after POR. + +Please note: the POR resets also the interface. For the gyroscope part, the interface is defined by the +voltage level on the PS pin. The interface of the accelerometer part is defined by the voltage level of the +CSB1 pin at the moment when the POR is initiated (see chapter 3). + +4.1.1 Power Modes: Accelerometer + +The power state of the BMI088 accelerometer is controlled through the register ACC_PWR_CTRL. The +register ACC_PWR_CTRL enables and disables the accelerometer and the temperature sensor. + +To enter normal mode, the value 0x04 must be written to ACC_PWR_CTRL. + +To enter suspend mode, register ACC_PWR_CTRL must be cleared. + +Note: The sensor is in suspend mode after reset (POR or soft-reset), thus the user actively needs to +enter normal mode in order to obtain acceleration values. +Note: After POR or soft-reset, the acceleration sensor needs up to 1ms boot time (ts_up) + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 15 | 62 + +4.1.2 Power Modes: Gyroscope + +The gyroscope has 3 different power modes. Besides normal mode, which represents the fully +operational state of the device, there are 2 energy saving modes: suspend mode and deep-suspend +mode. + +After power-up gyro is in normal mode so that all parts of the device are held powered-up and data +acquisition is performed continuously. + +In suspend mode the whole analog part is powered down. No data acquisition is performed. While in +suspend mode the latest rate data and the content of all configuration registers are kept. The registers +can still be read (though they are not updated). + +Suspend mode is entered by writing 0x80 to the register GYRO_LPM1. It can be left by writing 0x00 to +GYRO_LPM1 or by a soft reset (see 4.8). + +Although write access to registers is supported at the full interface clock speed (SCL or SCK), a waiting +period must be inserted between two consecutive write cycles (please refer also to section 9.2.1). + +In deep suspend mode the device reaches the lowest possible power consumption. Only the interface +section is kept alive. No data acquisition is performed and the content of the configuration registers is +lost. + +Deep suspend mode is entered by writing 0x20 to the register GYRO_LPM1. It can be left by writing +0x00 to GYRO_LPM1 or by a soft reset (see 4.8). + +Please note, that all application specific settings, which are not equal to the default settings, must be re- +set to its designated values after leaving deep-suspend mode. + +Note: after POR or soft-reset, or when switching between the different power modes, the gyroscope +sensor needs up to 30ms time to reach the new state. Any communication with the sensor during this +time should be avoided. + +4.2 Sensor Data + +The width of the gyroscope and accelerometer sensor data is 16 bits (11 bits for the temperature sensor) +given in two’s complement representation. +The bits for each axis are split into an MSB upper part and an LSB lower part. Reading the sensor data +registers shall always start with the LSB part. In order to ensure the integrity of the sensor data, the +content of an MSB register is locked by reading the corresponding LSB register (shadowing procedure). + +For details regarding the registers and the interpretation of the data found in these registers see: + • chapter 5.5.2 for the gyroscope part + • chapter 5.3.4 or the accelerometer part + • chapter 5.3.7 for the temperature sensor + +The burst-access mechanism provides an efficient way to read out the angular rate data in I2C or SPI +mode. During a burst-access, the sensor automatically increments the starting read address after each +byte. The burst-access allows data to be transferred over the I2C bus with an up to 50% reduced data +density. The sensor data (angular rate or acceleration data) in all read-out registers is locked as long as +the burst read access is active. Reading the sensor data registers of each gyroscope and accelerometer +part in burst read access mode ensures that the sensor values in all readout registers belong to the +same sample. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 16 | 62 + +4.3 Sensor Time + +The accelerometer part of BMI088 has a built-in counter with a width of 24 bits. It increments periodically +with a resolution of 39.0625µs. Details can be found in chapter 5.3.5. + +4.4 Output Data Rate (ODR) and Low-pass Filter + +The sensor signals from the acceleration sensor and gyroscope analog front-end are each routed +through a low-pass filter. + +4.4.1 Accelerometer + +The 3db cut-off frequency of the digital low-pass filter depends on the chosen ODR as well as on the +over-sampling-ratio (OSR). Both can be configured in register ACC_CONF. The following table lists the +possible options: + +Table 8: 3dB cutoff frequency of the accelerometer according to ODR and OSR settings in +ACC_CONF register + +Accelerometer Normal OSR2 OSR4 + ODR [Hz] (acc_bwp = 0xA) (acc_bwp = 0x9) (acc_bwp = 0x8) + 12.5 + 25 5 Hz 2 Hz 1 Hz + 50 10 Hz 5 Hz 3 Hz + 100 20 Hz 9 Hz 5 Hz + 200 40 Hz 19 Hz 10 Hz + 400 80 Hz 38 Hz 20 Hz + 800 145 Hz 75 Hz 40 Hz + 230 Hz 140 Hz 80 Hz + 1600 (200 Hz for z channel) + 280 Hz 234 Hz 145 Hz + (245 Hz for z channel) (215 Hz for z channel) + +4.4.2 Gyroscope + +The user can choose between 8 different ODR and low pass filter bandwidth settings (see section 5.5.6). + +4.5 Range Settings + +The measurement range can be set through the registers described in section 5.3.11 for the +accelerometer and in section 5.5.5 for the gyroscope. + +4.6 Self-test + +The BMI088 incorporates a self-test feature for both the accelerometer and the gyroscope, indicating +whether the sensor is still ok. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 17 | 62 + +4.6.1 Accelerometer + +The self-test feature allows for checking the sensor functionality by applying electrostatic forces to the + +sensor core instead of external accelerations. By physically deflecting the seismic mass, the entire signal + +path of the sensor is tested. Activation of the self-test results in a static offset in the acceleration data. + +Any external acceleration or gravitational force, which is applied to the sensor during a self-test, will be + +observed in the sensor output as a superposition of the acceleration and the self-test signal. This means + +that the self-test signal depends on the orientation of the sensor. To overcome this, the full self-test + +procedure should be performed under static circumstances, e.g. when the part is not excited to any + +acceleration except gravity. + +The recommended self-test procedure is as follows: +1) Set ±24g range by writing 0x03 to register ACC_RANGE (0x41) +2) Set ODR=1.6kHz, continuous sampling mode, “normal mode” (norm_avg4) by writing 0xA7 to + + register ACC_CONF (0x40) + • Continuous filter function: set bit7 in ACC_CONF + • “normal avg4 mode”: ACC_CONF |= 0x02<<4 + • ODR=1.6kHz: ACC_CONF |= 0x0C +3) Wait for > 2 ms +4) Enable the positive self-test polarity (i.e. write 0x0D to register ACC_SELF_TEST (0x6D)) +5) Wait for > 50ms +6) Read the accelerometer offset values for each axis (positive self-test response) +7) Enable the negative self-test polarity (i.e. write 0x09 to register ACC_SELF_TEST (0x6D)) +8) Wait for > 50ms +9) Read the accelerometer offset values for each axis (negative self-test response) +10) Disable the self-test (i.e. write 0x00 to register ACC_SELF_TEST (0x6D)) +11) Calculate difference of positive and negative self-test response and compare with the expected + values (see table below) +12) Wait for > 50ms to let the sensor settle to normal mode steady state operation + +Table 9: Accelerometer self-test: resulting minimum difference signal between positive and negative +self-test signal + +x-axis signal y-axis signal z-axis signal + ≥1000 mg ≥1000 mg ≥500 mg + +It is recommended to perform a reset of the device after a self-test has been performed, since the self- +test response also affects the interrupt generation. If the reset cannot be performed, the following +sequence must be kept to prevent unwanted interrupt generation: disable interrupts, change parameters +of interrupts, wait for at least 50ms, and enable desired interrupts. + +4.6.2 Gyroscope + +A built-in self-test facility of the gyro does not deflect the mechanical MEMS structure (as the +accelerometer self-test does), but this test also provides a quick way to determine if the gyroscope is +operational within the specified conditions. + +To trigger the self-test, bit #0 (‘bite_trig’) in address GYRO_SELF_TEST must be set. When the test is +finished, bit #1 (‘bist_rdy’) will be set by the gyro and the test result can then be found in bit #2 (‘bist_fail’). +A ‘0’ indicates that the test was passed without issues. If a failure occurred, the bit ‘bist_fail’ will be set +to ‘1’. + +A further test which is running continuously in the background can be checked by reading bit #4 in +address GYRO_SELF_TEST. Proper sensor function is indicated if the bit is set to ‘1’. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 18 | 62 + +4.7 New Data Interrupt + +Both accelerometer and gyroscope part offer a new data ready interrupt, which fires whenever a new +data sample set is complete and made available in the corresponding sensor data registers. This allows +a low latency data readout. + +4.7.1 Accelerometer + +The new data interrupt flag can be found in the register ACC_INT_STAT_1 (bit #7). It is set whenever +new data is available in the data registers and cleared automatically. + +The interrupt can be mapped to the interrupt pins INT1 and/or INT2 in register INT1_INT2_MAP_DATA. + +Both interrupt pins INT1 and INT2 can be configured regarding their electrical behavior (see +INT1_IO_CONF and INT2_IO_CONF). + +4.7.2 Gyroscope + +The gyroscope provides a new data interrupt, which will generate an interrupt every time after storing a +new value of z-axis angular rate data in the data register. The interrupt is cleared automatically after +280-400 µs. + +In contrast to the accelerometer part, for the gyro the new data interrupt must be explicitly enabled by +writing 0x80 to the register GYRO_INT_CTRL. + +The interrupt can be mapped to the interrupt pins INT3 and/or INT4 in register INT3_INT4_IO_MAP. + +Both interrupt pins INT3 and INT4 can be configured regarding their electrical behavior (see +INT3_INT4_IO_CONF). + +4.8 Soft-Reset + +A soft-reset can be initiated at any time + • for the accelerometer part by writing the command soft-reset (0xB6) to register + ACC_SOFTRESET (see 5.3.22) + • for the gyroscope part by writing the command soft-reset (0xB6) to register + GYRO_SOFTRESET (see 5.5.8) + +The soft-reset performs a fundamental reset to the device, which is largely equivalent to a power cycle. +Following a delay, all user configuration settings are overwritten with their default state (setting stored +in the NVM) wherever applicable. This command is functional in all operation modes but must not be +performed while NVM writing operation is in progress. + +4.8.1 Soft-Reset Accelerometer + +Soft reset timing: +In I2C mode, the rising edge of the SCL line for the ACK bit of the soft reset transfer determines the +reception of soft reset. The execution of the soft rest is delayed by 0.5 – 1us if the sensor is not in +advanced power save mode i.e. PWR_CONF.adv_power_save=0b0. +The execution of the soft reset causes that the SDA line to be released immediately by the device, +independent of the state of the SCL line. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 19 | 62 + +If the host requires an explicit I2C ACK for the soft reset (i.e. SDA line remains low while the SCL line +is high) the host must put the sensor in advance power save mode +(PWR_CONF.adv_power_save=0b1), disable the sensor (PWR_CTRL.acc_en=0b0) and the auxillary +interface (PWR_CTRL.aux_en=0b0) before issuing a soft reset. + +4.9 FIFO + +BMI088 offers two integrated FIFO (First In, First Out) buffers for accelerometer and gyroscope sensor +signals, helping the user to reduce or even omit time critical read access to the sensor in order to obtain +data with a high timing precision. + +4.9.1 FIFO operating modes + +The FIFO can be operated in different modes: FIFO (or stop-at-full) mode and STREAM mode. + + • FIFO or stop-at-full mode: In FIFO or stop-at-full mode, the sensor values are stored in the + FIFO buffer subsequently until it is full. + + • STREAM mode: The STREAM mode works like the FIFO mode with the difference that once + the buffer is full, the oldest data in the FIFO will be overwritten with the newest data from the + sensor. + +4.9.2 FIFO interrupts + +The FIFO buffers support two different types of interrupts: + + • Watermark interrupt: Triggered, when the fill level of the FIFO buffer reaches a user-defined + level. + + • FIFO-full interrupt: Triggered, when the FIFO is full. + +4.9.3 Accelerometer sensor FIFO buffer + +The accelerometer part of BMI088 has an integrated 1024 byte data FIFO. The FIFO captures data +from the data registers in frames, and each frame contains only one sample of a sensor. + +4.9.3.1 Enabling FIFO and selecting the mode + +The FIFO for accelerometer sensor data is enabled by setting bit #6 in register 0x49 (see 5.3.15). +4.9.3.1.1 Mode selection +When STREAM mode is desired, then the bit #0 in register 0x48 has to be cleared (set to ‘0’) (default +value on power up reset, see 5.3.14). + +For FIFO or stop-at-full mode, bit #0 has to be set to ‘1’ in register 0x48. + +4.9.3.1.2 FIFO data sampling rate +The input data rate to the FIFO is the same as the configured ODR of the sensor. However, it can be +reduced selecting a down-sampling factor of 2k with k=[0, 1, … 7]. The factor k must be written to bits +#4-6 of register 0x45 (see 5.3.12). + +4.9.3.1.3 FIFO synchronization with external interrupts (tag application) for the accel +If the INT1 and/or INT2 pin is configured as input pin (by setting int2_io in register INT2_IO_CTRL +and/or setting int1_io in register INT1_IO_CTRL), signals on these pins can also be recorded in the +FIFO, and the frames are “tagged” accordingly. Therefore the pins need to be activated for FIFO +recording in register FIFO_CONFIG_1 (see 5.3.15). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 20 | 62 + +4.9.3.2 Data format in FIFO + +The FIFO captures data in frames. The first byte is a header byte, defining the type of frame. From +this, the number of consecutive bytes and their content can be derived. +The header byte consists of the header signature (first 6 bits) and two bits indicating the status of the +interrupt pins INT1 and INT2 if configured accordingly (see 4.9.3.1.3). + +4.9.3.2.1 Acceleration sensor data frame + • Frame length: 7 bytes (1 byte header + 6 bytes payload) + • Header: + +Bit 7 6 5 4 3 2 1 0 + + 1 0 0 0 0 1 [INT2 tag] [INT1 tag] + + • Payload: the next bytes contain the sensor data in the same order as defined in the register + map (addresses 0x12 – 0x17). + +4.9.3.2.2 Skip Frame +In the case of FIFO overflows, in both FIFO and STREAM mode, a skip_frame is prepended to the +FIFO content, when read out next time. A skip frame does not consume memory in the FIFO. + + • Frame length: 2 bytes (1 byte header + 1 byte payload) + • Header: + +Bit 7 6 5 4 3 2 1 0 + + 0 1 0 0 0 0 reserved reserved + + • Payload: one byte containing the number of skipped frames. When more than 0xFF frames + have been skipped, 0xFF is returned. + +4.9.3.2.3 Sensortime Frame +A sensortime frame is only sent if the FIFO becomes empty during the burst read. A sensortime frame +does not consume memory in the FIFO. + + • Frame length: 4 bytes (1 byte header + 3 bytes payload) + • Header: + +Bit 7 6 5 4 3 2 1 0 + + 0 1 0 0 0 1 reserved reserved + + • Payload: Sensortime (content of registers 0x18 – 0x1A), taken when the last byte of the last + frame is read. + +4.9.3.2.4 FIFO input config Frame +Whenever the filter configuration or the range of the accelerometer sensor is changed, a FIFO input +config frame is inserted into the FIFO, before the configuration change becomes active. E.g. when the +bandwidth for the accelerometer filter is changed in Register ACC_CONF, a FIFO input config frame is +inserted before the first frame with accelerometer data with the new bandwidth configuration. + + • Frame length: 2 bytes (1 byte header + 1 byte payload) + • Header: + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 21 | 62 + +Bit 7 6 5 4 3 2 1 0 + + 0 1 0 0 1 0 reserved reserved + + • Payload: The FIFO input config frame contains one byte of data, of which the following bits have + a meaning (the content of the other bits can safely be ignored): + o Bit #1: indicates that a configuration change through register ACC_RANGE becomes + active (means for example that the range of the accelerometer was changed). + o Bit #0: indicates that a configuration change through the registers ACC_CONF or + FIFO_DOWNS becomes active (means of example that the filter settings where + changed or the FIFO sampling rate was modified). + +4.9.3.2.5 Sample drop Frame +After a reconfiguration, indicated by the fifo_Input_Config frame, the next sample may be dropped, +until the sensor delivers valid data again. Instead, a drop frame is inserted at the ODR tick at which a +sample was to be expected without reconfiguration. + + • Frame length: 2 bytes (1 byte header + 1 byte payload) + • Header: + +Bit 7 6 5 4 3 2 1 0 + + 0 1 0 1 0 0 reserved reserved + + • Payload: The sample drop frame contains one byte of data, whose content can be ignored. + +4.9.3.2.6 FIFO partial frame reads and overreads +When a frame is only partially (uncompletely) read through the register FIFO_DATA it will be repeated +completely with the next access. In the case of a FIFO overflow between the first partial read and the +second read attempt, the frame may be deleted. + +When more data is read from the FIFO than it contains valid data, 0x8000 is returned. + +4.9.3.3 FIFO Interrupts + +The FIFO supports two interrupts, a FIFO full interrupt and a watermark interrupt: + + • The FIFO full interrupt is issued when the FIFO fill level is above the full threshold. The full + threshold is reached just before the last two frames are stored in the FIFO. + + • The FIFO watermark is issued when the FIFO fill level is superior or equal to the watermark + level defined in register FIFO_WTM (see 5.3.13). + +In order to enable/use the FIFO full or watermark interrupts they need to be mapped on the desired +interrupt pin via INT1_INT2_MAP_DATA (see 5.3.18). + +Both interrupts are suppressed when a read operation on the register FIFO_DATA is ongoing. +Latched FIFO interrupts will only get cleared, if the status register gets read and the fill level is below +the corresponding FIFO interrupt (full or watermark). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 22 | 62 + +4.9.3.4 FIFO Reset + +The user can trigger a FIFO reset by writing 0xB0 to ACC_SOFTRESET (register 0x7E). + +4.9.4 Gyroscope sensor FIFO buffer + +The gyroscope part of BMI088 features an integrated FIFO memory capable of storing up to 100 +frames of data in FIFO mode. Each frame consists of three 16-bit rate_x,y,z data words, and 16 bits of +interrupt data sampled at the same point in time. + +4.9.4.1 Enabling FIFO and selecting the mode + +The FIFO for gyroscope sensor data is enabled by setting the appropriate FIFO mode in Register 0x3E: +FIFO_CONFIG_1. + +4.9.4.1.1 FIFO data sampling rate +The input data rate to the FIFO is the same as the configured ODR of the sensor. + +4.9.4.1.2 FIFO sync with external interrupts (tag application) for the gyroscope +The FIFO of the gyroscope features a mode that allows the precise synchronization of external events +with the gyroscope angular rate saved in the FIFO. This synchronization can be used for example for +image and video stabilization applications. + +Any of the gyroscope interrupt pins (INT3 or INT4) can be reconfigured to act as input pin, but not +both. In addition, the tag mode has to be enabled. The so configured interrupt pin will then behave as +an input pin and not as an interrupt pin. The working principle is shown in below figure: + + Timing diagram for external FIFO synchronization. EFS-pin is the Interrupt pin configured to capture + external events. FIFO z(0) is the least significant bit of the z-axis gyro data stored in the FIFO. + +In order to enable the tag mode, bit 5 must be set in register 0x34 (see 5.5.13). The pin can be chosen +in the same register, bit 4. + +In this mode, the least significant bit of the z-axis is used as tag-bit, therefore losing its meaning as +gyroscope data bit. The remaining 15 bits of the z-axis gyroscope data keep the same meaning as in +standard mode. + +Once the pin, which is configured for the tag mode, is set to high level, the next FIFO word will be +marked with a tag (z-axis LSB = 1). While pin is kept at a high level, the corresponding FIFO words will +continuously be tagged. After the pin is reset to low level, the immediate next FIFO word could still be +tagged, and only after this word, the next tag will be reset (z-axis LSB=0). This is shown in the above +diagram. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 23 | 62 + +The tag synchronizes external events with the same time precision as the FIFO update rate. Therefore +update rate of the tag is determined by the output data rate. + +4.9.4.2 FIFO Data Readout + +The FIFO stores the data that are also available at the read-out registers 0x02-0x07. Thus, all +configuration settings apply to the FIFO data as well as the data readout registers. The FIFO read out +is possible through register 0x3F (FIFO_DATA). The readout can be performed using burst mode. A +single burst can read out one or more frames at a time. If a frame is not read completely due to an +incomplete read operation, the remaining part of the frame is lost. In this case the FIFO aligns to the +next frame during the next read operation. + +The data format is described in 5.5.17. + +4.9.4.2.1 Interface speed requirements for Gyroscope FIFO use +In order to use the FIFO effectively, larger blocks of data need to be read out quickly. Depending on +the output data rate of the sensor, this can impose requirements on the interface. + +The output data rate of the gyroscope is determined by the filter configuration (see the data sheet of +the sensor). What interface speed is required depends on the selected rate. + + • For an I2C speed of 400 kHz, every filter mode can be used. + • For an I2C speed of 200 kHz, only modes with an output data rate of 1 KHz and below are + + recommended. + • For an I2C speed of 100 kHz, only modes with an output data rate of 400 Hz and below are + + recommended. + +4.9.4.3 FIFO Frame Counter and Overrun Flag + +The frame counter (address 0x0E bits<6:0>, see 5.5.4) indicates the current fill level of the buffer. If +additional frames are written to the buffer although the FIFO is full, the overrun flag (register 0x0E bit 7) +is set. If the FIFO is reset, the FIFO fill level indicated in the frame_counter<6:0> is set to ‘0’ and the +overrun flag is reset each time a write operation happens to the FIFO configuration registers. + +Note: the overrun bit is not reset when the FIFO fill level frame_counter<6:0> has decremented to ‘0’ +due to reading from the FIFO_DATA register, but only when a write operation is performed on FIFO +configuration registers. + +4.9.4.4 FIFO Interrupts + +The FIFO supports two interrupts, a FIFO full interrupt and a watermark interrupt: + + • The FIFO full interrupt is issued when the buffer has been fully filled with samples. In FIFO + mode this occurs after 100 samples, and in STREAM mode after 99 samples, have been + stored in a previously empty FIFO. + The status of the FIFO-full interrupt may be read back through the status bit in + INT_STATUS_1 register 0x0A. + + • The watermark interrupt is issued when the fill level in the buffer has reached the frame + number defined by the water mark level trigger in 0x3D. The status of the watermark may be + read back through the address 0x0A bit 4 (fifo_int) status bit. Writing to water mark level + trigger in register 0x3D clears the FIFO buffer. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 24 | 62 + +5. Register Maps + +5.1 Communication with the sensor + +The entire communication with the device is performed by reading from and writing to registers. +Registers have a width of 8 bits; they are mapped to an 8-bit address space. Accelerometer and +gyroscope have individual register maps. The selection of the appropriate register map is done on digital +interface level by either selecting the corresponding chip select pin (SPI mode) or I2C address (I2C +mode). For details regarding the digital interface, see chapter 0. + +The functional registers and the register addresses containing functional bits are marked in the following +register maps. All non-functional registers are marked as reserved and should be completely ignored by +the user. + +It is recommended to mask out (logical and with zero) non-functional bits (marked with ‘-‘) of registers +which partially contain functional bits (i.e. read the register content first, changing bit by means of bit- +wise operations, and write the modified byte back to the register). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 25 | 62 + +5.2 Register Map: Accelerometer + + Legend Read-only Read/Write Write-only Reserved + +Addr Name Reset bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 + value +0x7E ACC_SOFTRESET softreset_cmd (0xb6) +0x7D ACC_PWR_CTRL 0x00 +0x7C ACC_PWR_CONF 0x00 acc_enable + 0x7B - 0x6E: reserved 0x03 +0x6D ACC_SELF_TEST pwr_save_mode + 0x6B - 0x59: reserved 0x00 +0x58 INT_MAP_DATA - + 0x57 - 0x55: reserved 0x00 +0x54 acc_self_test +0x53 INT2_IO_CTRL 0x00 + INT1_IO_CTRL 0x00 - +0x49 0x52 - 0x4A: reserved + - int2_drdy int2_fwm int2_ffull - int1_drdy Int1_fwm Int1_ffull + + - int2_od int2_lvl - + int1_od int1_lvl - + - int2_in int2_out + - + int1_in int1_out + + FIFO_CONFIG_1 0x10 - acc_en - 1 int1_en int2_en - + +0x48 FIFO_CONFIG_0 0x02 - 1 mode + +0x47 FIFO_WTM_1 0x02 - fifo_water_mark[12:8] + +0x46 FIFO_WTM_0 0x00 fifo_water_mark[7:0] + +0x45 FIFO_DOWNS 0x80 1 fifo_downs - + +0x41 0x44 - 0x42: reserved 0x01 - +0x40 ACC_RANGE 0xA8 + ACC_CONF - acc_range +0x26 0x00 +0x25 0x3F - 0x27: reserved 0x00 acc_bwp acc_odr +0x24 FIFO_DATA 0x00 - +0x23 0x00 temperature[2:0] - +0x22 FIFO_LENGTH_1 0x00 acc_ drdy + FIFO_LENGTH_0 fifo_ data +0x1D 0x00 + TEMP_LSB fifo_ byte_ counter[13:8] +0x1A TEMP_MSB 0x00 +0x19 0x21 - 0x1E: reserved 0x00 fifo_ byte_ counter[7:0] +0x18 ACC_INT_STAT_1 0x00 +0x17 0x1C - 0x1B: reserved 0x00 - +0x16 SENSORTIME_2 0x00 temperature[10:3] +0x15 SENSORTIME_1 0x00 +0x14 SENSORTIME_0 0x00 - +0x13 ACC_Z_MSB 0x00 +0x12 ACC_Z_LSB 0x00 - + ACC_Y_MSB +0x03 ACC_Y_LSB 0x10 - +0x02 ACC_X_MSB 0x00 +0x01 ACC_X_LSB sensor_ time[23:16] +0x00 0x11 - 0x04: reserved - + ACC_STATUS 0x1E sensor_ time[15:8] + ACC_ERR_REG + sensor_ time[7:0] + - + ACC_CHIP_ID acc_ z[15:8] + + acc_ z[7:0] + + acc_ y[15:8] + + acc_ y[7:0] + + acc_ x[15:8] + + acc_ x[7:0] + + - + + drdy_ acc - + - + error_ code - fatal_ err + + - + + acc_ chip_ id + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 26 | 62 + +5.3 Register Description: Accelerometer +5.3.1 Register 0x00: ACC_CHIP_ID + +Bit Access Reset Description + Contains identifier code of acceleration sensor + value + +[7:0] RO 0x1E + +5.3.2 Register 0x02: ACC_ERR_REG + +Reports sensor error conditions. + +Bit Name Access Reset Description + value +[7:5] reserved +[4:2] error_code RO 0x00 Error codes for persistent errors: + 0x00: no error +[1] 0x01: error occurred in accelerometer configuration + (unvalid data in register ACC_CONF) +[0] fatal_err RO 0x0 + reserved + Fatal Error, chip is not in operational state (Boot-, + power-system). This flag will be reset only by + power-on-reset or soft-reset. + +5.3.3 Register 0x03: ACC_STATUS + +Sensor status flag. + +Bit Name Access Reset Description + value + Data ready for Accelerometer. Reset when one +[7] acc_drdy RO 0x0 acceleration data register is read out. + +[6:0] reserved + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 27 | 62 + +5.3.4 Register 0x12 – 0x17: ACC data + +Registers containing the acceleration sensor output. The sensor output is stored as signed 16 bit number +in 2’s complement format in each 2 registers. From the registers, the acceleration values can be +calculated as follows: +Accel_X_int16 = ACC_X_MSB * 256 + ACC_X_LSB +Accel_Y_int16 = ACC_Y_MSB * 256 + ACC_Y_LSB +Accel_Z_int16 = ACC_Z_MSB * 256 + ACC_Z_LSB + +When a register is read containing the LSB value of an acceleration value, the corresponding MSB +register is locked internally, until it is read. By this mechanism, it is ensured that both LSB and MSB +values belong to the same acceleration value and are not updated between the readouts of the individual +registers. + +The unit is in LSB. The conversion from LSB to acceleration (mg) is based on the range settings and +can be calculated as follows (<0x41>: content of the ACC_RANGE register): +Accel_X_in_mg = Accel_X_int16 / 32768 * 1000 * 2^(<0x41> + 1) * 1.5 +Accel_Y_in_mg = Accel_Y_int16 / 32768 * 1000 * 2^(<0x41> + 1) * 1.5 +Accel_Z_in_mg = Accel_Z_int16 / 32768 * 1000 * 2^(<0x41> + 1) * 1.5 + +5.3.5 Register 0x18 – 0x1A: Sensortime data + +Registers containing the value of the internal 24-bit counter. + • Register 0x18 (SENSORTIME_0) contains the lower 8 bits of the counter. This register is + incremented every 39.0625 µs. + • Register 0x19 (SENSORTIME_1) contains the middle 8 bits of the counter. This register is + incremented on SENSORTIME_0 overflow, which is every 10 ms. + • Register 0x1A (SENSORTIME_2) contains the higher 8 bits of the counter. This register is + incremented on SENSORTIME_1 overflow, which is every 2.56 s. + +The complete 24-bit counter overflows after 655.36 s or almost 11 minutes. + +5.3.6 Register 0x1D: ACC_INT_STAT_1 + +Interrupt status register. + +Bit Name Access Reset Description + RO value +[7] acc_drdy 0x00 Acceleration data ready interrupt. Cleared on read + of this register +[6:0] reserved + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 28 | 62 + +5.3.7 Register 0x22 – 0x23: Temperature sensor data + +Registers containing the temperature sensor data output. The data is stored in an 11-bit value in 2’s +complement format. The resolution is 0.125°C/LSB, thus the temperature can be obtained as follows: + +Temp_uint11 = (TEMP_MSB * 8) + (TEMP_LSB / 32) +if Temp_uint11 > 1023: + + Temp_int11 = Temp_uint11 – 2048 +else: + + Temp_int11 = Temp_uint11 +Temperature = Temp_int11 * 0,125°C/LSB + 23°C + +TEMP_MSB TEMP_LSB Temp_int11 Temperature + 0x3E 0x00 496 85 °C + … … … … + 0x00 0x60 3 + 0x00 0x40 2 23.375 °C + 0x00 0x20 1 23.250 °C + 0x00 0x00 0 23.125 °C + … … … + 0xC1 0x00 -504 23.0°C + 0x80 … + + -40 °C + Invalid + +The temperature sensor data is updated every 1.28 s. + +5.3.8 Register 0x24-0x25: FIFO_LENGTH + +The FIFO length registers FIFO_LENGTH_1 and FIFO_LENGTH_0 contain the 14 bit FIFO byte +counter. The counter represents the current fill level of the FIFO buffer. +An empty FIFO corresponds to 0x8000. A FIFO content reset can be triggered by reading out all +frames from the FIFO buffer or by writing 0xB0 into register 0x7E. The byte counter is updated when a +complete frame is read or written. + +5.3.9 Register 0x26: FIFO_DATA + +When reading out data from FIFO, burst read access must be used. The address will not increase +when burst read at the address of FIFO_DATA. The FIFO data is organized in frames as described in +section 4.9.3.2. +When a frame is partially read through FIFO Data Register 0x26, it will be repeated completely with the +next access. However, in case of a FIFO overflow between the first partial read and the second read +attempt, the frame may be deleted. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 29 | 62 + +5.3.10 Register 0x40: ACC_CONF + +Accelerometer configuration register. + +Bit Name Access Reset Description +[7:4] acc_bwp RW value + 0x0A This parameter influences the bandwidth of the + accelerometer low pass filter. For details, see + section 4.4.1. Possible values: + + acc_bwp Filter setting + 0x08 OSR4 (4-fold oversampling) + 0x09 OSR2 (2-fold oversampling) + 0x0A + others Normal + reserved + +[3:0] acc_odr RW 0x08 This parameter sets the output data rate ODR. + + Possible values: + + acc_odr ODR in Hz + 0x00 – 0x04 reserved + + 0x05 12.5 + 0x06 25 + 0x07 50 + 0x08 100 + 0x09 200 + 0x0A 400 + 0x0B 800 + 0x0C 1600 + 0x0D – 0X0F reserved + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 30 | 62 + +5.3.11 Register 0x41: ACC_RANGE + +Accelerometer range setting register. + +Bit Name Access Reset Description + value + +[7:2] RW 0x01 reserved +[1:0] acc_range This parameter sets the measurement range. + Possible values: + + acc_range Range setting + 0x00 ±3g + 0x01 ±6g + 0x02 ±12g + 0x03 ±24g + +5.3.12 Register 0x45: FIFO_DOWNS + +Reduction of sample rate. + +Bit Name Access Reset Description + value + This bit must always be ‘1’. +[7] Reserved RW 0x01 Reduction of sample rate by a factor + 2**fifo_downs. +[6:4] fifo_downs RO 0x00 Example: fifo_downs=5 will reduce the FIFO + sampling rate by a factor of 2**5 = 32 in relation to +[3:0] the chosen ODR of the sensor signal. + reserved + +5.3.13 Register 0x46 – 0x47: FIFO_WTM + +Registers containing the 13 bit FIFO watermark level value. A FIFO water mark interrupt signal is +active if the FIFO fill level is equal or greater than fifo_water_mark [12:0] (unit of the fifo water mark is +one byte). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 31 | 62 + +5.3.14 Register 0x48: FIFO_CONFIG_0 + +Sets the FIFO mode. + +Bit Name Access Reset Description + value + reserved +[7:2] This bit must always be ‘1’. + This parameter sets the FIFO mode. +[1] Reserved RW 0x01 Possible values: + +[0] mode RW 0x00 + + value mode + 0x00 STREAM mode + 0x01 + FIFO mode + +5.3.15 Register 0x49: FIFO_CONFIG_1 + +Selects sources for the FIFO buffer. + +Bit Name Access Reset Description + value + reserved +[7] Enables storing of accelerometer sensor data + +[6] Acc_en RW 0x00 This bit must always be ‘1’. + Enables storing of captured interrupt events at pin +[5] Reserved RW 0x00 INT1 (pin needs to be configured as input pin + accordingly) +[4] Reserved RW 0x01 Enables storing of captured interrupt events at pin + INT2 (pin needs to be configured as input pin +[3] RW 0x00 accordingly) + Int1_en reserved + +[2] RW 0x00 + Int2_en + +[1:0] + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 32 | 62 + +5.3.16 Register 0x53: INT1_IO_CONF + +Configures the input/output pin INT1. + +Bit Name Access Reset Description + value + reserved +[7:5] Enable INT1 as input pin. + Enable INT1 as output pin. +[4] int1_in RW 0x00 + +[3] int1_out RW 0x00 + +[2] int1_od RW 0x00 + + int1_od Pin behavior + 0x00 Push-pull + 0x01 Open-drain + +[1] int1_lvl RW 0x00 + + int1_lvl Active state + 0x00 Active low + 0x01 Active high + +[0] reserved + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 33 | 62 + +5.3.17 Register 0x54: INT2_IO_CONF + +Configures the input/output pin INT2. + +Bit Name Access Reset Description + value + reserved +[7:5] Enable INT2 as input pin. + Enable INT2 as output pin. +[4] int2_io RW 0x00 + +[3] int2_out RW 0x00 + +[2] int2_od RW 0x00 + + int2_od Pin behavior + 0x00 Push-pull + 0x01 Open-drain + +[1] int2_lvl RW 0x00 + + int2_lvl Active state + 0x00 Active low + 0x01 Active high + +[0] reserved + +5.3.18 Register 0x58: INT1_INT2_MAP_DATA + +Map data ready interrupt to output pin INT1 and/or INT2. + +Bit Name Access Reset Description + value + reserved +[7] Map data ready interrupt to pin INT2 + Map FIFO watermark interrupt to pin INT2 +[6] Int2_drdy RW 0x00 Map FIFO full interrupt to pin INT2 + reserved +[5] int2_fwm RW 0x00 Map data ready interrupt to pin INT1 + Map FIFO watermark interrupt to pin INT1 +[4] int2_ffull RW 0x00 Map FIFO full interrupt to pin INT1 + +[5:3] + +[2] Int1_drdy RW 0x00 + +[1] int1_fwm RW 0x00 + +[0] int1_ffull RW 0x00 + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 34 | 62 + +5.3.19 Register 0x6D: ACC_SELF_TEST + +Enables the sensor self-test signal, occurring as a steady offset to the sensor output. Note that the +self-test needs to be switched off actively by the user (details see 4.6.1). + +Bit Access Reset Description + + value self_test + 0x00 +[7:0] RW 0x00 0x0D + 0x09 + Behaviour + Self-test is switched off. + Enable positive self-test signal. + Enable negative self-test signal. + +5.3.20 Register 0x7C: ACC_PWR_CONF + +Switches accelerometer into suspend mode for saving power. In this mode the data acquisition is +stopped. + +Bit Name Access Reset Description +[7:0] acc_pwr_save RW value + 0x03 acc_pwr_save + 0x03 + 0x00 Filter setting + Suspend mode + + Active mode + +5.3.21 Register 0x7D: ACC_PWR_CTRL + +Switches accelerometer ON or OFF. Required to do after every reset in order to obtain acceleration +values. + +Bit Name Access Reset Description +[7:0] acc_enable RW value + 0x00 acc_enable + 0x00 + 0x04 Filter setting + Accelerometer off + Accelerometer on + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 35 | 62 + +5.3.22 Register 0x7E: ACC_SOFTRESET + +Bit Access Reset Description + + value Writing a value of 0xB6 to this register resets the sensor. (Do not write + any other content to this register.) +[7:0] W N/A Following a delay of 1 ms, all configuration settings are overwritten with + their reset value. + The soft-reset can be triggered from any operation mode. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 36 | 62 + +5.4 Register Map: Gyroscope + + Legend Read-only Read/Write Write-only Reserved + +Addr Name Reset bit7 bit6 bit5 bit4 bit3 bit2 bit1 bit0 + value +0x3F FIFO_DATA fifo_ data_ output_ register +0x3E FIFO_CONFIG_1 N/A +0x3D FIFO_CONFIG_0 0x00 fifo_ mode - +0x3C GYRO_SELF_TEST 0x00 - + 0x3B - 0x35: reserved N/A fifo_ water_ mark_ level_ trigger_ retain +0x34 + rate_ ok - bist_ fail bist_ rdy trig_ bist +0x1E + - Int3_ data +0x18 Int3_ lvl + FIFO_EXT_INT_S 0x00 ext_fifo_s_en ext_fifo_s_sel - +0x16 +0x15 0x33 - 0x1F: reserved - +0x14 FIFO_WM_EN + 0x00 fifo_ watermark_ enable +0x11 0x1D - 0x19: reserved +0x10 INT3_INT4_IO_MAP 0x00 - +0x0F 0x17: reserved +0x0E INT3_INT4_IO_CONF 0x0F Int4_ data - Int4_ fifo - Int3_ fifo - + GYRO_INT_CTRL 0x00 - +0x0A GYRO_SOFTRESET N/A - + - +0x07 0x13 - 0x12: reserved 0x00 Int4_ od Int4_ lvl Int3_ od +0x06 GYRO_LPM1 0x80 +0x05 0x00 data_ en fifo_ en - +0x04 GYRO_BANDWIDTH N/A +0x03 GYRO_RANGE softreset +0x02 FIFO_STATUS N/A +0x01 - +0x00 0x0D - 0x0B: reserved N/A + GYRO_INT_STAT_1 N/A gyro_ pm + N/A + 0x09 - 0x08: reserved N/A gyro_ bw + RATE_Z_MSB N/A + RATE_Z_LSB N/A gyro_ range + RATE_Y_MSB N/A + RATE_Y_LSB 0x0F fifo_ overrun fifo_ frame_ counter + RATE_X_MSB gyro_ drdy + RATE_X_LSB - + Reserved + GYRO_CHIP_ID fifo_ int - + + - + + rate_ z[15:8] + + rate_ z[7:0] + + rate_ y[15:8] + + rate_ y[7:0] + + rate_ x[15:8] + + rate_ x[7:0] + + - + + gyro_ chip_ id + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 37 | 62 + +5.5 Register Description: Gyroscope +5.5.1 Register 0x00: GYRO_CHIP_ID + +Bit Access Reset Description + Contains identifier code of gyroscope. + value + +[7:0] RO 0x0F + +5.5.2 Register 0x02 – 0x07: Rate data + +Registers containing the angular velocity sensor output. The sensor output is stored as signed 16-bit +number in 2’s complement format in each 2 registers. From the registers, the gyro values can be +calculated as follows: + +Rate_X: RATE_X_MSB * 256 + RATE_X_LSB +Rate_Y: RATE_Y_MSB * 256 + RATE_Y_LSB +Rate_Z: RATE_Z_MSB * 256 + RATE_Z_LSB + +When a register is read containing the LSB value of a rate value, the corresponding MSB register is +locked internally, until it is read. By this mechanism, it is ensured that both LSB and MSB values belong +to the same rate range value and are not updated between the readouts of the individual registers. + +The unit is in LSB. The conversion from LSB to angular velocity (degree per second) is based on the +range settings (see 5.5.5). For example, for the default range setting of 0x00 in register 0x0F, the +following conversion table applies: + + Sensor output [LSB] Angular rate (in 2000°/s range mode) + +32767 + 2000°/s + … … + 0 0°/s + … … + -32767 - 2000°/s + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 38 | 62 + +5.5.3 Register 0x0A: GYRO_INT_STAT_1 + +Bit Name Access Reset Description + value + Data ready interrupt status. The interrupt is cleared +[7] gyro_drdy RO N/A automatically after 280-400 µs. + +[6:5] reserved + FIFO interrupt status +[4] fifo_int RO N/A + reserved +[3:0] + +5.5.4 Register 0x0E: FIFO_STATUS + +The register contains FIFO status information. + +Bit Name Access Reset Description + RO value +[7] Fifo_overrun N/A If set, FIFO overrun condition has occurred. + Note: flag can only be cleared by writing to +[6:0] Fifo_frame_counter RO N/A the FIFO configuration register + FIFO_CONFIG_1 + Current fill level of FIFO buffer. An empty + FIFO corresponds to 0x00. The frame counter + can be cleared by reading out all frames from + the FIFO buffer or writing to the FIFO + configuration register FIFO_CONFIG_1. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 39 | 62 + +5.5.5 Register 0x0F: GYRO_RANGE + +Bit Access Reset Description + + value + +[7:0] RW 0x00 Angular rate range and resolution. Possible values: + + gyro_range Full scale Resolution + 0x00 [°/s] + 16.384 LSB/°/s + ±2000 61.0 m°/s / LSB + + 0x01 ±1000 32.768 LSB/°/s + 30.5 m°/s / LSB + 0x02 ±500 + 65.536 LSB/°/s + 0x03 ±250 15.3 m°/s / LSB + + 0x04 ±125 131.072 LSB/°/s + 7.6 m°/s / LSB + + 262.144 LSB/°/s + 3.8m°/s / LSB + +5.5.6 Register 0x10: GYRO_BANDWIDTH + +Bit Access Reset Description + + value + +[7:0] RW 0x801 The register allows the selection of the rate data filter bandwidth and + + output data rate (ODR). Possible values: + + gyro_bw ODR [Hz] Filter bandwidth [Hz] + 0x00 2000 532 + 0x01 2000 230 + 0x02 1000 116 + 0x03 400 47 + 0x04 200 23 + 0x05 100 12 + 0x06 200 64 + 0x07 100 32 + +1 Note: bit #7 is read-only and always ‚1‘, but has no function and can safely be ignored. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 40 | 62 + +5.5.7 Register 0x11: GYRO_LPM1 + +Selection of the main power modes. Please note that only switching between normal mode and the +suspend modes is allowed, it is not possible to switch between suspend and deep suspend and vice +versa. + +Bit Access Reset Description + + value + +[7:0] RW 0x00 Switch to the main power modes. + + gyro_pm Power mode + + 0x00 normal + 0x80 suspend + 0x20 deep suspend + +5.5.8 Register 0x14: GYRO_SOFTRESET + +Bit Access Reset Description + + value Writing a value of 0xB6 to this register resets the sensor. (Other + values are ignored.) +[7:0] W N/A Following a delay of 30 ms, all configuration settings are overwritten + with their reset value. + The soft reset can be triggered from any operation mode. + +5.5.9 Register 0x15: GYRO_INT_CTRL + +Bit Access Reset Description + value +[7] RW 0x0 Enables the new data interrupt to be triggered on new data. + 0x0 Enables the FIFO interrupt. +[6] RW + reserved +[5:0] + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 41 | 62 + +5.5.10 Register 0x16: INT3_INT4_IO_CONF + +Sets electrical and logical properties of the interrupt pins. + +Bit Name Access Reset Description +[3] Int4_od RW value + ‘1’ Int4_od + ‘0’ + ‘1’ Pin INT4 output configuration + Push-pull + Open-drain + +[2] Int4_lvl RW ‘1’ + + Int4_lvl Pin INT4 active state + ‘0’ Active low + ‘1’ Active high + +[1] Int3_od RW ‘1’ + + Int3_od Pin INT3 output configuration + ‘0’ Push-pull + ‘1’ Open-drain + +[0] Int3_lvl RW ‘1’ + + Int3_lvl Pin INT3 active state + ‘0’ Active low + ‘1’ Active high + +5.5.11 Register 0x18: INT3_INT4_IO_MAP + +Map the data ready interrupt pin to one of the interrupt pins INT3 and/or INT4. + +Bit Access Reset Description + value +[7] RW 0x0 Data ready interrupt is mapped to INT4 pin. + reserved +[6] 0x0 + FIFO interrupt is mapped to INT4. +[5] RW 0x0 reserved + +[4:3] 0x0 FIFO interrupt is mapped to INT3. + reserved +[2] RW + Data ready interrupt is mapped to INT3 pin. +[1] + +[0] RW + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 42 | 62 + +5.5.12 Register 0x1E: FIFO_WM_ENABLE + +Enables FIFO watermark level interrupt. + +Bit Access Reset Description +[7:0] RW value + 0x08 Value + 0x08 + 0x88 description + FIFO watermark level interrupt disabled + FIFO watermark level interrupt enabled + +5.5.13 Register 0x34: FIFO_EXT_INT_S + +Bit Access Reset Description + value +[7:6] reserved +[5] RW 0x00 It set, enables external FIFO synchronization mode +[4] RW 0x00 Selects source for external FIFO synchronization + + ext_fifo Behavior + _s_sel + 0x0 Source is pin INT3 + Source is pin INT4 + 0x1 + +[3:0] reserved + +5.5.14 Register 0x3C: GYRO_SELF_TEST + +Built-in self-test of gyroscope. + +Bit Access Name Reset Description + value A value of ‘1’ indicates proper sensor function. + +[4] R rate_ok ‘0’ + +[2] R bist_fail ‘0’ If ‘0’ and bist_rdy = ‘1’: built-in self-test is ok, sensor is + ok +[1] R bist_rdy ‘0’ + trig_bist N/A If ‘1’ and bist_rdy = ‘1’: built-in self-test is not ok, +[0] W sensor values may not be in expected range + + If bit is ‘1’, built-in self-test has been performed and + finished + + Setting this bit to ‘1’ (i.e. writing 0x01 to this register) + starts the built-in self-test. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 43 | 62 + +5.5.15 Register 0x3D: FIFO_CONFIG_0 + +Bit Access Reset Description + value +[7] Reserved +[6:0] RW 0x00 fifo_water_mark_level_trigger_retain<6:0> defines the FIFO + watermark level. An interrupt will be generated, when the number of + entries in the FIFO exceeds + fifo_water_mark_level_trigger_retain<6:0>. + Writing to this register clears the FIFO buffer. + +5.5.16 Register 0x3E: FIFO_CONFIG_1 + +Contains FIFO configuration settings. The FIFO buffer memory is cleared and the fifo-full flag is +cleared when writing to FIFO_CONFIG_1 register. In addition, the FIFO overrun flag (see 5.5.4) is +cleared (it overrun occurred before). + +Bit Access Reset Description +[7:0] RW value + 0x08 + + fifo_ mode description + mode + data collection stops once buffer is full (i.e. + 0x40 FIFO filled with 100 frames) + + 0x80 STREAM sampling continues when buffer is full (i.e. + else filled with 99 frames); old is discarded + + reserved + +5.5.17 Register 0x3F: FIFO_DATA + +FIFO data readout register. The format of the LSB and MSB components corresponds to that of the +angular rate data readout registers. Read burst access may be used since the address counter will not +increment when the read burst is started at the address of FIFO_DATA. The entire frame is discarded +when a fame is only partially read out. + +The format of the data read-out from register 0x3F is as follows: + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 44 | 62 + +6. Digital Interface + +The BMI088 supports two serial digital interface protocols for communication as a slave with a host +device: SPI and I²C. The active interface is selected by the state of the Pin#07 (PS) ‘protocol select’ pin: + + • PS = ´VDDIO´ selects I²C + • PS = ´GND´ selects SPI + +Important: + • Please note that in case of SPI protocol the initialization process for the accelerometer part of + BMI088 requires some additional steps (see chapter 3). + • Please also note that as the pins of the package are shared between accelerometer and + gyroscope part, it is not advisable to configure different interfaces for the two parts. + +Both digital interfaces share partly the same pins. Additionally each inertial sensor (accelerometer and +gyroscope) provides specific interface pins, which allow the user to operate the inertial sensors +independently of each other. The mapping for each interface and each inertial sensor is given in the +following table: + +Table 10: Mapping of the interface pins + +Pin# Name use w/ use w/ Description + 15 SDO1 SPI I²C + SPI: Accel Data Output + SDO1 address I²C: Used to set LSB of Accel I²C address + +10 SDO2 SDO2 address SPI: Gyro Data Output + I²C: Used to set LSB of Gyro I²C address +9 SDA / SDI SDA + SPI: Accel and Gyro Data In + SDI I²C: Serial Data + +14 CSB1 CSB1 unused SPI: Accel Chip Select (enable) + +5 CSB2 CSB2 unused SPI: Gyro Chip Select (enable) + +8 SCL / SCK SCL SPI: Serial Clock SCK + I²C: Serial Clock SCL + SCK + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 45 | 62 + +The following table shows the electrical specifications of the interface pins: + +Table 11: Electrical specification of the interface pins + +Parameter Symbol Condition Min Typ Max Units + +Pull-up Resistance, Rup Internal Pull-up 75 100 125 kΩ + +CSB pin Resistance to + + VDDIO + +Input Capacitance Cin 5 10 pF + +I²C Bus Load CI2C_Load 400 pF +Capacitance (max. +drive capability) + +In order to allow for the correct internal synchronisation of data written to the BMI088, a wait time of at +least 2 µs (normal mode) or 1000 µs (suspend mode) must be followed. + +6.1 Serial Peripheral Interface (SPI) + +The behavior of the SPI interface is slightly different between gyroscope part and accelerometer part: + • Initialization phase: as described in chapter 3, the interface of the gyroscope part is selected by + the level of the PS pin. In contrast to this, the accelerometer part starts always in I2C mode + (regardless of the level of the PS pin) and needs to be changed to SPI mode actively by sending + a rising edge on the CSB1 pin (chip select of the accelerometer), on which the accelerometer + part switches to SPI mode and stays in this mode until the next power-up-reset. + To change the sensor to SPI mode in the initialization phase, the user could perfom a dummy + SPI read operation, e.g. of register ACC_CHIP_ID (the obtained value will be invalid). + • In case of read operations, the SPI interface of the accelerometer part does not send the + requested information directly after the master has send the corresponding register address, + but sends a dummy byte first, whose content is not predictable. Only after this dummy byte the + desired content is sent. (This dummy byte procedure does not apply to the gyroscope part.) + Please find more details below in section 6.1.2. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 46 | 62 + +The timing specification for SPI of the BMI088 is given in the following table: + +Table 12: SPI timing + +Parameter Symbol Condition Min Max Units + +Clock Frequency fSPI Max. Load on SDI or 10 MHz + SDO = 25pF + +SCK Low Pulse tSCKL 45 ns + +SCK High Pulse tSCKH 45 ns + +SDI Setup Time tSDI_setup 20 ns + +SDI Hold Time tSDI_hold 20 ns + +SDO Output Delay tSDO_OD Load = 25pF 30 ns + + Load = 250pF, 40 ns + VDDIO > 2.4V + +CSB Setup Time tCSB_setup 40 ns + ns +CSB Hold Time tCSB_hold 40 µs + +Idle time between write tIDLE_wacc normal mode 2 + +accesses + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 47 | 62 + +The following figure shows the definition of the SPI timings: + + tCSB_setup tCSB_hold + +CSB tSCKL tSCKH + tSDI_hold +SCK + tSDO_OD +SDI tSDI_setup +SDO + + Figure 2: SPI timing diagram + +The SPI interface of the BMI088 is compatible with two modes, ´00´ and ´11´. The automatic selection +between [CPOL = ´0´ and CPHA = ´0´] and [CPOL = ´1´ and CPHA = ´1´] is controlled based on the +value of SCK after a falling edge of CSB (1 or 2). + +6.1.1 SPI interface of gyroscope part + +For single byte read as well as write operations, 16-bit protocols are used. The SPI interface also +supports multiple-byte read operations (burst-read). + +The communication starts when the CSB (1 or 2) is pulled low by the SPI master and stops when CSB +(1 or 2) is pulled high. SCK is also controlled by SPI master. SDI and SDO (1 or 2) are driven at the +falling edge of SCK and should be captured at the rising edge of SCK. + +The data bits are used as follows: + • Bit #0: Read/Write bit. When 0, the data SDI is written into the chip. When 1, the data SDO from + the chip is read. + • Bit #1-7: Address AD(6:0). + • Bit #8-15: when in write mode, these are the data SDI, which will be written into the address. + When in read mode, these are the data SDO, which are read from the address. + +Multiple read operations (burst-read) are possible by keeping CSB low and continuing the data transfer +(i.e. continuing to toggle SCK). Only the first register address has to be written. Addresses are +automatically incremented after each read access as long as CSB stays active low. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 48 | 62 + +6.1.2 SPI interface of accelerometer part + +In case of read operations of the accelerometer part, the requested data is not sent immediately, but +instead first a dummy byte is sent, and after this dummy byte the actual reqested register content is +transmitted. +This means that – in contrast to the description in section 6.1.1 – a single byte read operation requires +to read 2 bytes in burst mode, of which the first received byte can be discarded, while the second byte +contains the desired data. +The same applies to burst-read operations. For example, to read the accelerometer values in SPI mode, +the user has to read 7 bytes, starting from address 0x12 (ACC data). From these bytes the user must +discard the first byte and finds the acceleration information in byte #2 – #7 (corresponding to the content +of the addresses 0x12 – 0x17). + +The data bits are used as follows: + • Bit #0: Read/Write bit. When 0, the data SDI is written into the chip. When 1, the data SDO from + the chip is read. + • Bit #1-7: Address AD(6:0). + • Bit #8-15: + o When in write mode, these are the data SDI, which will be written into the address. + o When in read mode, these bits contain unpredictable values, and the user has to read + Bit #16-23 to get the actual data from the reading address. + +6.2 Inter-Integrated Circuit (I²C) + +The I²C bus uses SCL (= SCx pin, serial clock) and SDA (= SDx pin, serial data input and output) signal +lines. Both lines are connected to VDDIO externally via pull-up resistors so that they are pulled high +when the bus is free. + +The I²C interface of the BMI088 is compatible with the I²C Specification UM10204 Rev. 03 (19 June +2007), available at http://www.nxp.com. The BMI088 supports I²C standard mode and fast mode, only +7-bit address mode is supported. + +The default I²C addresses are: + Accelerometer: + SDO1 pin pulled to ‘GND’: 0011000b (0x18) + SDO1 pin pulled to ‘VDDIO’: 0011001b (0x19) + Gyroscope: + SDO2 pin pulled to ‘GND’: 1101000b (0x68) + SDO2 pin pulled to ‘VDDIO’: 1101001b (0x69) + +The timing specification for I²C of the BMI088 is given in table 13: + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 49 | 62 + +Table 13: I²C timings + +Parameter Symbol Min Max Units + +Clock Frequency fSCL 400 kHz + +SCL Low Period tLOW 1.3 µs + +SCL High Period tHIGH 0.6 + +SDA Setup Time tSUDAT 0.1 + +SDA Hold Time tHDDAT 0.0 + +Setup Time for a repeated Start tSUSTA 0.6 + +Condition + +Hold Time for a Start Condition tHDSTA 0.6 + +Setup Time for a Stop Condition tSUSTO 0.6 + +Time before a new Transmission can tBUF 1.3 + +start + +Idle time between write accesses, tIDLE_wacc_nm 2 µs +normal mode tIDLE_wacc_sum 450 µs + +Idle time between write accesses, +suspend mode + +Figure 3 shows the definition of the I²C timings given in table 13: + +SDA tBUF +SCL +SDA tLOW tf + + tHIGH + + tHDSTA tr tHDDAT tSUDAT + + tSUSTA tSUSTO + + Figure 3: I²C timing diagram + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 50 | 62 + +The I²C protocol works as follows: + +START: Data transmission on the bus begins with a high to low transition on the SDA line while SCL is +held high (start condition (S) indicated by I²C bus master). Once the START signal is transferred by the +master, the bus is considered busy. + +STOP: Each data transfer should be terminated by a Stop signal (P) generated by master. The STOP +condition is a low to HIGH transition on SDA line while SCL is held high. + +ACK: Each byte of data transferred must be acknowledged. It is indicated by an acknowledge bit sent +by the receiver. The transmitter must release the SDA line (no pull down) during the acknowledge pulse +while the receiver must then pull the SDA line low so that it remains stable low during the high period of +the acknowledge clock cycle. + +In the following diagrams, these abbreviations are used: + +S Start +P Stop +ACKS Acknowledge by slave +ACKM Acknowledge by master +NACKM Not acknowledge by master +RW Read / Write + +A START immediately followed by a STOP (without SCL toggling from ´VDDIO´ to ´GND´) is not +supported. If such a combination occurs, the STOP is not recognized by the device. + +I²C write access: +I²C write access can be used to write a data byte in one sequence. + +The sequence begins with start condition generated by the master, followed by 7 bits slave address and +a write bit (RW = 0). The slave sends an acknowledge bit (ACK = 0) and releases the bus. Then the +master sends the one byte register address. The slave again acknowledges the transmission and waits +for the 8 bits of data, which shall be written to the specified register address. After the slave +acknowledges the data byte, the master generates a stop signal and terminates the writing protocol. + +Example of an I²C write access to the accelerometer, writing 0xA8 to address ox40 (i.e. setting +continuous filter function, averaging to 4 samples, ODR to 100Hz): + +Start + ACKS + dummy + ACKS + ACKS + Stop +Slave address (0x18) RW Register address (0x40) Data (0xA8) + +S0 0 1 1 0 0 0 0A0 1 0 0 0 0 0 0A1 0 1 0 1 0 0 0AP + +Figure 4: I²C write + +I²C read access: +I²C read access also can be used to read one or multiple data bytes in one sequence. + +A read sequence consists of a one-byte I²C write phase followed by the I²C read phase. The two parts +of the transmission must be separated by a repeated start condition (Sr). The I²C write phase addresses +the slave and sends the register address to be read. After slave acknowledges the transmission, the +master generates again a start condition and sends the slave address together with a read bit (RW = +1). Then the master releases the bus and waits for the data bytes to be read out from slave. After each +data byte the master has to generate an acknowledge bit (ACK = 0) to enable further data transfer. A + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 51 | 62 + +NACKM (ACK = 1) from the master stops the data being transferred from the slave. The slave releases +the bus so that the master can generate a STOP condition and terminate the transmission. +The register address is automatically incremented and, therefore, more than one byte can be +sequentially read out. Once a new data read transmission starts, the start address will be set to the +register address specified in the latest I²C write command. By default, the start address is set at 0x00. +In this way, repetitive multi-bytes reads from the same starting address are possible. + +Example of an I²C read access to the accelerometer, reading all 6 bytes containing acceleration data +(0x12-0x17): + +Start Slave address (0x18) RW Register address (0x12) ACKS + ACKS + dummy + +S00110000Ax 0010010A + +Start Slave address (0x18) RW Read data (0x12) ACKM Read data (0x13) ACKM + ACKS + +Sr 0 0 1 1 0 0 0 1 A x x x x x x x x A x x x x x x x x A … + + ACKS Read data (0x14) ACKM Read data (0x15) ACKM + + …A x x x x x x x x A x x x x x x x x A… + + ACKS Read data (0x16) ACKM Read data (0x17) NACKM + Stop + + … A x x x x x x x x A x x x x x x x x NA P + +Figure 5: I²C multiple read + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 52 | 62 + +7. Pin-out and Connection Diagram + + Figure 6: Pin-out top view Figure 7: Pin-out bottom view + +7.1 Pin-out + +Table 14: Pin1description + +Pin# Name I/O Type Description SPI mode I2C mode +1* INT2 Digital I/O Interrupt pin 2 (accel int #2) INT2 INT2 +2 NC -- -- GND GND +3 VDD Supply Power supply analog & digital VDD VDD + domain (2.4 – 3.6V) +4 GNDA Ground Ground for analog domain GND GND + SPI Chip select Gyro CSB2 DNC (float) +5 CSB2 Digital in Ground for I/O GND GND + Protocol select gyroscope GND VDDIO +6 GNDIO Ground (GND = SPI, VDDIO = I²C) + SPI: serial clock SCK SCK SCL +7 PS Digital in I²C: serial clock SCL + I²C: SDA serial data I/O SDI SDA +8 SCL / Digital in SPI 4W: SDI serial data I + SPI 3W: SDA serial data I/O SDO2 GND + SCK SPI Serial data out Gyro for default addr. + Address select in I²C mode VDDIO +9 SDA / Digital I/O see chapter 9.2 VDDIO + Digital I/O supply voltage INT3 + SDI (1.2V … 3.6V) INT4 INT3 + Interrupt pin 3 (gyro int #1) CSB1 INT4 +10 SDO2 Digital out Interrupt pin 4 (gyro int #2) + SDO1 VDDIO or DNC +11 VDDIO Supply SPI Chip select Accel (float) + INT1 GND +12* INT3 Digital I/O for default addr. +13* INT4 Digital I/O + INT1 +14 CSB1 Digital in + +15 SDO1 Digital out SPI Serial data out Accel +16* INT1 Digital I/O Address select in I²C mode + see chapter 9.2 + + Interrupt pin 1 (accel int #1) + +* If INT are not used, do not connect them (DNC)! + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 53 | 62 + +7.2 Connection diagram SPI + + Figure 8: SPI connection + +7.3 Connection diagram I2C + + BMI088 + +Figure 9: I2C connection + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 54 | 62 + +8. Package + +8.1 Outline Dimensions + +The sensor housing is a standard LGA package. Its dimensions are the following. +Unit is mm. Note: Unless otherwise specified tolerance = decimal ± 0.05 + +Top view + +Figure 10: Package outline dimensions + Bottom view + +Figure 10: Package dimensions Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Modifications reserved | Data subject to change without notice +Bosch Sensortec | BMI088 Data sheet 55 | 62 + +8.2 Landing pattern + +For the design of the landing patterns, we recommend the following dimensioning: + + 0.675 + + 16 + +4.5 15 1 + 0.25 + 14 2 + + 13 1.6753 + 0.5 + 12 4 + + 11 5 + + 10 6 + + 9 7 + + 8 + + 0.925 + + 3.0 + + Figure 11: Landing pattern recommendation + +Same tolerances as given for the outline dimensions in 8.1 should be assumed. A wiring no-go area in +the top layer of the PCB below the sensor is strongly recommended (e.g. no vias, wires or other metal +structures). + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 56 | 62 + +8.3 Sensing axes orientation + +If the sensor is accelerated and/or rotated in the indicated directions, the corresponding channels of the +device will deliver a positive acceleration and/or yaw rate signal (dynamic acceleration). If the sensor is +at rest without any rotation and the force of gravity is acting contrary to the indicated directions, the +output of the corresponding acceleration channel will be positive and the corresponding gyroscope +channel will be “zero” (static acceleration). + +Example: If the sensor is at rest or at uniform motion in a gravity field according to the figure given below, +the output signals are: + +• 0g for the X ACC channel and 0°/sec for the ΩX GYR channel + +• 0g for the Y ACC channel and 0°/sec for the ΩY GYR channel + +• + 1g for the Z ACC channel and 0°/sec for the ΩZ GYR channel + + force + of gravity + +Figure 12: Orientation of sensing axis + +The following table lists all corresponding output signals on X, Y, Z while the sensor is at rest or at +uniform motion in a gravity field under assumption of a top down gravity vector as shown above. +The gyroscope signals ΩX, ΩY, ΩZ show 0dps output under these static conditions. + +Table 15: Output signals depending on device orientation + + Sensor orientation o + + (gravity vector ) o o + + upright + upright + + o + + Output Signal X 0g +1g 0g -1g 0g 0g + + Output Signal Y -1g 0g +1g 0g 0g 0g + + Output Signal Z 0g 0g 0g 0g +1g -1g + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 57 | 62 + +8.4 Marking +8.4.1 Mass production samples + +Table 16: Marking of mass production parts + + Labeling Name Symbol Remark + Product number 365 + 365 L 3 numeric digits, fixed to identify +LYYWW Sub-con ID product type + Date-Code YYWW + CCC Lot counter CCC 1 alphanumeric digit, + Pin 1 identifier variable to identify sub-con + • 4 numeric digits, fixed to identify YY = “year” + + WW = “working week + 3 alphanumeric digits, variable + to generate mass production trace-code + + -- + +8.4.2 Engineering samples + +Table 17: Marking of engineering samples + +Labeling Name Symbol Remark + Eng. sample ID N + 1 alphanumeric digit, fixed to identify + 088N Sample ID PYYWW engineering sample, N = “+” or “e” or “E” +PYYWW Counter ID CC + Pin 1 identifier P: assembly house + CC • YYWW: Year (last 2 digits)/Work week + + C-samples; lot number + (e.g.C5: C-samples, 5th lot) + + -- + +8.5 PCB layout and soldering guidelines + +The following general layout rules are recommended + • PCB land width = LGA solder pin width + • PCB land length = LGA solder pin length + 0.1 mm on each side + • Solder mask opening width = PCB land width + 0.05 mm on each side + • Solder mask opening length = PCB land length + 0.05 mm on each side + +Recommendation about stencil design and solder paste application + • It is recommended to keep the openings of the stencil mask for the signal pads between 70% + and 90% of the PCB pad area. + • An accurate alignment of the stencil and the printed circuit board (within 0.025mm) is + recommended. + • A stencil thickness of 80 – 150 μm is recommended for screen printing + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 58 | 62 + +The moisture sensitivity level (MSL) of the BMI088 sensors corresponds to JEDEC Level 1. See also: + • IPC/JEDEC J-STD-020E “Joint Industry Standard: Moisture/Reflow Sensitivity Classification + for non-hermetic Solid State Surface Mount Devices” + • IPC/JEDEC J-STD-033D “Joint Industry Standard: Handling, Packing, Shipping and Use of + Moisture/Reflow Sensitive Surface Mount Devices” + +The sensor fulfils the lead-free soldering requirements of the above-mentioned IPC/JEDEC standard, +i.e. reflow soldering with a peak temperature up to 260°C. + +For more details, refer the Handling, Soldering and Mounting Instructions document available at +https://www.bosch-sensortec.com/bst/support_tools/downloads/overview_downloads + +8.6 Handling instructions + +Micromechanical sensors are designed to sense acceleration with high accuracy even at low amplitudes +and contain highly sensitive structures inside the sensor element. The MEMS sensor can tolerate +mechanical shocks up to several thousand g’s. However, these limits might be exceeded in conditions +with extreme shock loads such as e.g. hammer blow on or next to the sensor, dropping of the sensor +onto hard surfaces etc. + +We recommend to avoid g-forces beyond the specified limits during transport, handling and mounting +of the sensors in a defined and qualified installation process. + +This device has built-in protections against high electrostatic discharges or electric fields (e.g. 2kV +HBM); however, anti-static precautions should be taken as for any other CMOS component. Unless +otherwise specified, proper operation can only occur when all terminal voltages are kept within the +supply voltage range. Unused inputs must always be tied to a defined logic voltage level. + +8.7 Tape and Reel specification + +BMI088 is shipped in a standard cardboard box. The box dimension for each reel is L x W x H = 35cm +x 35cm x 5cm. Each reel contains 5,000pcs of BMI088. + +A0 = 4.85; B0 = 3.35; K0 = 1.20 Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Tape and reel dimensions in mm + +Modifications reserved | Data subject to change without notice +Bosch Sensortec | BMI088 Data sheet 59 | 62 + +8.7.1 Orientation within the reel + +Orientation of the BMI088 devices relative to the tape + +8.8 Environmental safety + +The BMI088 sensor meets the requirements of the EC restriction of hazardous substances (RoHS) +directive, see also: + + RoHS–Directive 2011/65/EU and its amendments, including the amendment 2015/863/EU on the + restriction of the use of certain hazardous substances in electrical and electronic equipment. + +8.8.1 Halogen content + +The BMI088 is halogen-free. For more details on the analysis results please contact your Bosch +Sensortec representative. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 60 | 62 + +9. Legal Disclaimer + +9.1 Engineering samples + +Engineering Samples are marked with an asterisk (*), (E) or (e). Samples may vary from the valid +technical specifications of the product series contained in this data sheet. They are therefore not +intended or fit for resale to third parties or for use in end products. Their sole purpose is internal client +testing. The testing of an engineering sample may in no way replace the testing of a product series. +Bosch Sensortec assumes no liability for the use of engineering samples. The Purchaser shall indemnify +Bosch Sensortec from all claims arising from the use of engineering samples. + +9.2 Product use + +Bosch Sensortec products are developed for the consumer goods industry. They may only be used +within the parameters of this product data sheet. They are not fit for use in life-sustaining or safety- +critical systems. Safety-critical systems are those for which a malfunction is expected to lead to bodily +harm, death or severe property damage. In addition, they shall not be used directly or indirectly for +military purposes (including but not limited to nuclear, chemical or biological proliferation of weapons or +development of missile technology), nuclear power, deep sea or space applications (including but not +limited to satellite technology). + +Bosch Sensortec products are released on the basis of the legal and normative requirements relevant +to the Bosch Sensortec product for use in the following geographical target market: BE, BG, DK, DE, +EE, FI, FR, GR, IE, IT, HR, LV, LT, LU, MT, NL, AT, PL, PT, RO, SE, SK, SI, ES, CZ, HU, CY, US, CN, +JP, KR, TW. If you need further information or have further requirements, please contact your local sales +contact. + +The resale and/or use of Bosch Sensortec products are at the purchaser’s own risk and his own +responsibility. The examination of fitness for the intended use is the sole responsibility of the purchaser. + +The purchaser shall indemnify Bosch Sensortec from all third party claims arising from any product use +not covered by the parameters of this product data sheet or not approved by Bosch Sensortec and +reimburse Bosch Sensortec for all costs in connection with such claims. + +The purchaser accepts the responsibility to monitor the market for the purchased products, particularly +with regard to product safety, and to inform Bosch Sensortec without delay of all safety-critical incidents. + +9.3 Application examples and hints + +With respect to any examples or hints given herein, any typical values stated herein and/or any +information regarding the application of the device, Bosch Sensortec hereby disclaims any and all +warranties and liabilities of any kind, including without limitation warranties of non-infringement of +intellectual property rights or copyrights of any third party. The information given in this document shall +in no event be regarded as a guarantee of conditions or characteristics. They are provided for illustrative +purposes only and no evaluation regarding infringement of intellectual property rights or copyrights or +regarding functionality, performance or error has been made. + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 61 | 62 + +10. Document History and Modification + +Rev. No Chapter Description of modification/changes Date +1.0 03-Dec-2017 +1.1 - Initial release 30-Jan-2018 +1.2 23-Mar-2018 +1.3 All Typos 27-Apr-2018 + +1.4 3 + 4.1.1 Updated switching between power modes 16-Sep-2018 + 5.2 Fixed typo in register range +1.5 5.3.6 Added clearing condition of data ready int bit 07-Feb-2020 + 5.2+5.3.10+5.3.11 Corrected INT pin settings bits +1.6 5.4 Fixed typo in bit naming in register 0x16 18-Nov-2020 +1.7 08-Nov-2021 +1.8 7.1 Updated pin 14 assignment in I2C mode 17-Jan-2022 + + 4.4.1 + 5.2 + 5.3.8 Clarified how to set Accel bandwidth setting + 4.9 Included info on FIFO + 5.3.4 Corrected conversion from LSB to mg + 7.2 + 7.3 Updated pin 4 and 6 assignment in SPI/I2C mode + 7.2 Clarified connection to SPI host interface + 8.3 Updated marking + 8.6 Included tape & reel specifications + + 4.9.1 – 4.9.4 Updated FIFO details + 5.2, 5.4 Updated Register Maps with FIFO content + 5.5.10 Updated reset values of Gyro Reg 0x16 + 8.2 Included landing pattern + 8.4.1 Corrected lot counter typo + 8.5, 8.8 Updated content + 9 Updated product use disclaimer + + 9 Disclaimer update + + 8.8 Environmental safety – RoHS directive update + + 3 Device Initialization chapter update + + 6.2 Timing tIDLE_wacc_sum update + + 4.8 Soft Reset chapter updated + +Modifications reserved | Data subject to change without notice Document number: BST-BMI088-DS000-18 + Revision_1.8_012022 +Bosch Sensortec | BMI088 Data sheet 62 | 62 + +Bosch Sensortec GmbH Document number: BST-BMI088-DS000-18 +Gerhard-Kindler-Straße 9 Revision_1.8_012022 +72770 Reutlingen / Germany + +contact@bosch-sensortec.com +www.bosch-sensortec.com + +Modifications reserved +Specifications subject to change without notice +Document number: BST-BMI088-DS000-18 +Revision_1.8_012022 + +Modifications reserved | Data subject to change without notice + diff --git a/modules/BMI088/bmi088.c b/modules/BMI088/bmi088.c new file mode 100644 index 0000000..04ffbdc --- /dev/null +++ b/modules/BMI088/bmi088.c @@ -0,0 +1,446 @@ +#include "bmi088_regNdef.h" +#include "bmi088.h" +#include "user_lib.h" + +// ---------------------------以下私有函数,用于读写BMI088寄存器封装,blocking--------------------------------// +/** + * @brief 读取BMI088寄存器Accel. BMI088要求在不释放CS的情况下连续读取 + * + * @param bmi088 待读取的BMI088实例 + * @param reg 待读取的寄存器地址 + * @param dataptr 读取到的数据存放的指针 + * @param len 读取长度 + */ +static void BMI088AccelRead(BMI088Instance *bmi088, uint8_t reg, uint8_t *dataptr, uint8_t len) +{ + if (len > 6) + while (1) + ; + // 一次读取最多6个字节,加上两个dummy data 第一个字节的第一个位是读写位,1为读,0为写,1-7bit是寄存器地址 + static uint8_t tx[8]; // 读取,第一个字节为0x80|reg ,第二个是dummy data,后面的没用都是dummy write + static uint8_t rx[8]; // 前两个字节是dummy data,第三个开始是真正的数据 + tx[0] = 0x80 | reg; // 静态变量每次进来还是上次的值,所以要每次都要给tx[0]赋值0x80 + SPITransRecv(bmi088->spi_acc, rx, tx, len + 2); + memcpy(dataptr, rx + 2, len); // @todo : memcpy有额外开销,后续可以考虑优化,在SPI中加入接口或模式,使得在一次传输结束后不释放CS,直接接着传输 +} + +/** + * @brief 读取BMI088寄存器Gyro, BMI088要求在不释放CS的情况下连续读取 + * + * @param bmi088 待读取的BMI088实例 + * @param reg 待读取的寄存器地址 + * @param dataptr 读取到的数据存放的指针 + * @param len 读取长度 + */ +static void BMI088GyroRead(BMI088Instance *bmi088, uint8_t reg, uint8_t *dataptr, uint8_t len) +{ + if (len > 6) + while (1) + ; + // 一次读取最多6个字节,加上一个dummy data ,第一个字节的第一个位是读写位,1为读,0为写,1-7bit是寄存器地址 + static uint8_t tx[7] = {0x80}; // 读取,第一个字节为0x80 | reg ,之后是dummy data + static uint8_t rx[7]; // 第一个是dummy data,第三个开始是真正的数据 + tx[0] = 0x80 | reg; + SPITransRecv(bmi088->spi_gyro, rx, tx, len + 1); + memcpy(dataptr, rx + 1, len); // @todo : memcpy有额外开销,后续可以考虑优化,在SPI中加入接口或模式,使得在一次传输结束后不释放CS,直接接着传输 +} + +/** + * @brief 写accel寄存器.对spitransmit形式上的封装 + * @attention 只会向目标reg写入一个字节,因为只有1个字节所以直接传值(指针是32位反而浪费) + * + * @param bmi088 待写入的BMI088实例 + * @param reg 待写入的寄存器地址 + * @param data 待写入的数据(注意不是指针) + */ +static void BMI088AccelWriteSingleReg(BMI088Instance *bmi088, uint8_t reg, uint8_t data) +{ + uint8_t tx[2] = {reg, data}; + SPITransmit(bmi088->spi_acc, tx, 2); +} + +/** + * @brief 写gyro寄存器.形式上的封装 + * @attention 只会向目标reg写入一个字节,因为只有1个字节所以直接传值(指针是32位反而浪费) + * + * @param bmi088 待写入的BMI088实例 + * @param reg 待写入的寄存器地址 + * @param data 待写入的数据(注意不是指针) + */ +static void BMI088GyroWriteSingleReg(BMI088Instance *bmi088, uint8_t reg, uint8_t data) +{ + uint8_t tx[2] = {reg, data}; + SPITransmit(bmi088->spi_gyro, tx, 2); +} +// -------------------------以上为私有函数,封装了BMI088寄存器读写函数,blocking--------------------------------// + +// -------------------------以下为私有函数,用于初始化BMI088acc和gyro的硬件和配置--------------------------------// +#define BMI088REG 0 +#define BMI088DATA 1 +#define BMI088ERROR 2 +// BMI088初始化配置数组for accel,第一列为reg地址,第二列为写入的配置值,第三列为错误码(如果出错) +static uint8_t BMI088_Accel_Init_Table[BMI088_WRITE_ACCEL_REG_NUM][3] = + { + {BMI088_ACC_PWR_CTRL, BMI088_ACC_ENABLE_ACC_ON, BMI088_ACC_PWR_CTRL_ERROR}, + {BMI088_ACC_PWR_CONF, BMI088_ACC_PWR_ACTIVE_MODE, BMI088_ACC_PWR_CONF_ERROR}, + {BMI088_ACC_CONF, BMI088_ACC_NORMAL | BMI088_ACC_800_HZ | BMI088_ACC_CONF_MUST_Set, BMI088_ACC_CONF_ERROR}, + {BMI088_ACC_RANGE, BMI088_ACC_RANGE_6G, BMI088_ACC_RANGE_ERROR}, + {BMI088_INT1_IO_CTRL, BMI088_ACC_INT1_IO_ENABLE | BMI088_ACC_INT1_GPIO_PP | BMI088_ACC_INT1_GPIO_LOW, BMI088_INT1_IO_CTRL_ERROR}, + {BMI088_INT_MAP_DATA, BMI088_ACC_INT1_DRDY_INTERRUPT, BMI088_INT_MAP_DATA_ERROR}}; +// BMI088初始化配置数组for gyro,第一列为reg地址,第二列为写入的配置值,第三列为错误码(如果出错) +static uint8_t BMI088_Gyro_Init_Table[BMI088_WRITE_GYRO_REG_NUM][3] = + { + {BMI088_GYRO_RANGE, BMI088_GYRO_2000, BMI088_GYRO_RANGE_ERROR}, + {BMI088_GYRO_BANDWIDTH, BMI088_GYRO_2000_230_HZ | BMI088_GYRO_BANDWIDTH_MUST_Set, BMI088_GYRO_BANDWIDTH_ERROR}, + {BMI088_GYRO_LPM1, BMI088_GYRO_NORMAL_MODE, BMI088_GYRO_LPM1_ERROR}, + {BMI088_GYRO_CTRL, BMI088_DRDY_ON, BMI088_GYRO_CTRL_ERROR}, + {BMI088_GYRO_INT3_INT4_IO_CONF, BMI088_GYRO_INT3_GPIO_PP | BMI088_GYRO_INT3_GPIO_LOW, BMI088_GYRO_INT3_INT4_IO_CONF_ERROR}, + {BMI088_GYRO_INT3_INT4_IO_MAP, BMI088_GYRO_DRDY_IO_INT3, BMI088_GYRO_INT3_INT4_IO_MAP_ERROR}}; +// @attention : 以上两个数组配合各自的初始化函数使用. 若要修改请参照BMI088 datasheet + +/** + * @brief 初始化BMI088加速度计,提高可读性分拆功能 + * + * @param bmi088 待初始化的BMI088实例 + * @return uint8_t BMI088ERROR CODE if any problems here + */ +static uint8_t BMI088AccelInit(BMI088Instance *bmi088) +{ + uint8_t whoami_check = 0; + + // 加速度计以I2C模式启动,需要一次上升沿来切换到SPI模式,因此进行一次fake write + BMI088AccelRead(bmi088, BMI088_ACC_CHIP_ID, &whoami_check, 1); + DWT_Delay(0.001); + + BMI088AccelWriteSingleReg(bmi088, BMI088_ACC_SOFTRESET, BMI088_ACC_SOFTRESET_VALUE); // 软复位 + DWT_Delay(BMI088_COM_WAIT_SENSOR_TIME / 1000); + + // 检查ID,如果不是0x1E(bmi088 whoami寄存器值),则返回错误 + BMI088AccelRead(bmi088, BMI088_ACC_CHIP_ID, &whoami_check, 1); + if (whoami_check != BMI088_ACC_CHIP_ID_VALUE) + return BMI088_NO_SENSOR; + DWT_Delay(0.001); + // 初始化寄存器,提高可读性 + uint8_t reg = 0, data = 0; + BMI088_ERORR_CODE_e error = 0; + // 使用sizeof而不是magic number,这样如果修改了数组大小,不用修改这里的代码;或者使用宏定义 + for (uint8_t i = 0; i < sizeof(BMI088_Accel_Init_Table) / sizeof(BMI088_Accel_Init_Table[0]); i++) + { + reg = BMI088_Accel_Init_Table[i][BMI088REG]; + data = BMI088_Accel_Init_Table[i][BMI088DATA]; + BMI088AccelWriteSingleReg(bmi088, reg, data); // 写入寄存器 + DWT_Delay(0.01); + BMI088AccelRead(bmi088, reg, &data, 1); // 写完之后立刻读回检查 + DWT_Delay(0.01); + if (data != BMI088_Accel_Init_Table[i][BMI088DATA]) + error |= BMI088_Accel_Init_Table[i][BMI088ERROR]; + //{i--;} 可以设置retry次数,如果retry次数用完了,则返回error + } + return error; +} + +/** + * @brief 初始化BMI088陀螺仪,提高可读性分拆功能 + * + * @param bmi088 待初始化的BMI088实例 + * @return uint8_t BMI088ERROR CODE + */ +static uint8_t BMI088GyroInit(BMI088Instance *bmi088) +{ + // 后续添加reset和通信检查? + // code to go here ... + BMI088GyroWriteSingleReg(bmi088, BMI088_GYRO_SOFTRESET, BMI088_GYRO_SOFTRESET_VALUE); // 软复位 + DWT_Delay(0.08); + + // 检查ID,如果不是0x0F(bmi088 whoami寄存器值),则返回错误 + uint8_t whoami_check = 0; + BMI088GyroRead(bmi088, BMI088_GYRO_CHIP_ID, &whoami_check, 1); + if (whoami_check != BMI088_GYRO_CHIP_ID_VALUE) + return BMI088_NO_SENSOR; + DWT_Delay(0.001); + + // 初始化寄存器,提高可读性 + uint8_t reg = 0, data = 0; + BMI088_ERORR_CODE_e error = 0; + // 使用sizeof而不是magic number,这样如果修改了数组大小,不用修改这里的代码;或者使用宏定义 + for (uint8_t i = 0; i < sizeof(BMI088_Gyro_Init_Table) / sizeof(BMI088_Gyro_Init_Table[0]); i++) + { + reg = BMI088_Gyro_Init_Table[i][BMI088REG]; + data = BMI088_Gyro_Init_Table[i][BMI088DATA]; + BMI088GyroWriteSingleReg(bmi088, reg, data); // 写入寄存器 + DWT_Delay(0.001); + BMI088GyroRead(bmi088, reg, &data, 1); // 写完之后立刻读回对应寄存器检查是否写入成功 + DWT_Delay(0.001); + if (data != BMI088_Gyro_Init_Table[i][BMI088DATA]) + error |= BMI088_Gyro_Init_Table[i][BMI088ERROR]; + //{i--;} 可以设置retry次数,尝试重新写入.如果retry次数用完了,则返回error + } + + return error; +} +// -------------------------以上为私有函数,用于初始化BMI088acc和gyro的硬件和配置--------------------------------// + +// -------------------------以下为私有函数,private用于IT模式下的中断处理---------------------------------// + +/** + * @brief 待编写,很快! + * + */ +static void BMI088AccSPIFinishCallback(SPIInstance *spi) +{ + // static BMI088Instance *bmi088; + // bmi088 = (BMI088Instance *)(spi->id); + // 若第一次读取加速度,则在这里启动温度读取 + // 如果使用异步姿态更新,此处唤醒量测更新的任务 +} + +static void BMI088GyroSPIFinishCallback(SPIInstance *spi) +{ + // static BMI088Instance *bmi088; + // bmi088 = (BMI088Instance *)(spi->id); + // 若不是异步,啥也不做;否则启动姿态的预测步(propagation) +} + +static void BMI088AccINTCallback(GPIOInstance *gpio) +{ + // static BMI088Instance *bmi088; + // bmi088 = (BMI088Instance *)(gpio->id); + // 启动加速度计数据读取(和温度读取,如果有必要),并转换为实际值 + // 读取完毕会调用BMI088AccSPIFinishCallback +} + +static void BMI088GyroINTCallback(GPIOInstance *gpio) +{ + // static BMI088Instance *bmi088; + // bmi088 = (BMI088Instance *)(gpio->id); + // 启动陀螺仪数据读取,并转换为实际值 + // 读取完毕会调用BMI088GyroSPIFinishCallback +} + +// -------------------------以上为私有函数,private用于IT模式下的中断处理---------------------------------// + +// -------------------------以下为公有函数,用于注册BMI088,标定和数据读取--------------------------------// + +/** + * @brief + * @todo 现在要考虑一下数据返回的方式,指针还是结构体? + * + * @param bmi088 + * @return BMI088_Data_t + */ +uint8_t BMI088Acquire(BMI088Instance *bmi088, BMI088_Data_t *data_store) +{ + // 如果是blocking模式,则主动触发一次读取并返回数据 + if (bmi088->work_mode == BMI088_BLOCK_PERIODIC_MODE) + { + static uint8_t buf[6] = {0}; // 最多读取6个byte(gyro/acc,temp是2) + // 读取accel的x轴数据首地址,bmi088内部自增读取地址 // 3* sizeof(int16_t) + BMI088AccelRead(bmi088, BMI088_ACCEL_XOUT_L, buf, 6); + for (uint8_t i = 0; i < 3; i++) + data_store->acc[i] = bmi088->acc_coef * (float)(int16_t)(((buf[2 * i + 1]) << 8) | buf[2 * i]); + BMI088GyroRead(bmi088, BMI088_GYRO_X_L, buf, 6); // 连续读取3个(3*2=6)轴的角速度 + for (uint8_t i = 0; i < 3; i++) + data_store->gyro[i] = bmi088->BMI088_GYRO_SEN * (float)(int16_t)(((buf[2 * i + 1]) << 8) | buf[2 * i]); + BMI088AccelRead(bmi088, BMI088_TEMP_M, buf, 2); // 读温度,温度传感器在accel上 + data_store->temperature = (float)(int16_t)(((buf[0] << 3) | (buf[1] >> 5))) * BMI088_TEMP_FACTOR + BMI088_TEMP_OFFSET; + + return 1; + } + + // 如果是IT模式,则检查标志位.当传感器数据准备好会触发外部中断,中断服务函数会将标志位置1 + if (bmi088->work_mode == BMI088_BLOCK_TRIGGER_MODE && bmi088->update_flag.imu_ready == 1) + { + memcpy(data_store, &bmi088->gyro, sizeof(BMI088_Data_t)); + bmi088->update_flag.imu_ready = 0; + return 1; + } + + // 如果数据还没准备好,则返回空数据?或者返回上一次的数据?或者返回错误码? @todo + if (bmi088->update_flag.imu_ready == 0) + return 0; + return 1; +} + +/* pre calibrate parameter to go here */ +#pragma message "REMEMBER TO SET PRE CALIBRATE PARAMETER IF YOU CHOOSE NOT TO CALIBRATE" +#define BMI088_PRE_CALI_ACC_X_OFFSET 0.0f +#define BMI088_PRE_CALI_ACC_Y_OFFSET 0.0f +#define BMI088_PRE_CALI_ACC_Z_OFFSET 0.0f +#define BMI088_PRE_CALI_G_NORM 9.805f +/** + * @brief BMI088 acc gyro 标定 + * @note 标定后的数据存储在bmi088->bias和gNorm中,用于后续数据消噪和单位转换归一化 + * @attention 不管工作模式是blocking还是IT,标定时都是blocking模式,所以不用担心中断关闭后无法标定(RobotInit关闭了全局中断) + * @attention 标定精度和等待时间有关,目前使用线性回归.后续考虑引入非线性回归 + * @todo 将标定次数(等待时间)变为参数供设定 + * @section 整体流程为1.累加加速度数据计算gNrom() 2.累加陀螺仪数据计算零飘 + * 3. 如果标定过程运动幅度过大,重新标定 4.保存标定参数 + * + * @param _bmi088 待标定的BMI088实例 + */ +void BMI088CalibrateIMU(BMI088Instance *_bmi088) +{ + if (_bmi088->cali_mode == BMI088_CALIBRATE_ONLINE_MODE) // 性感bmi088在线标定,耗时6s + { + _bmi088->acc_coef = BMI088_ACCEL_6G_SEN; // 标定完后要乘以9.805/gNorm + _bmi088->BMI088_GYRO_SEN = BMI088_GYRO_2000_SEN; // 后续改为从initTable中获取 + // 一次性参数用完就丢,不用static + float startTime; // 开始标定时间,用于确定是否超时 + uint16_t CaliTimes = 6000; // 标定次数(6s) + float gyroMax[3], gyroMin[3]; // 保存标定过程中读取到的数据最大值判断是否满足标定环境 + float gNormTemp, gNormMax, gNormMin; // 同上,计算矢量范数(模长) + float gyroDiff[3], gNormDiff; // 每个轴的最大角速度跨度及其模长 + + BMI088_Data_t raw_data; + startTime = DWT_GetTimeline_s(); + // 循环继续的条件为标定环境不满足 + do // 用do while至少执行一次,省得对上面的参数进行初始化 + { // 标定超时,直接使用预标定参数(如果有) + if (DWT_GetTimeline_s() - startTime > 12.01) + { // 两次都没有成功就切换标定模式,丢给下一个if处理,使用预标定参数 + _bmi088->cali_mode = BMI088_LOAD_PRE_CALI_MODE; + break; + } + + DWT_Delay(0.0005); + _bmi088->gNorm = 0; + for (uint8_t i = 0; i < 3; i++) // 重置gNorm和零飘 + _bmi088->gyro_offset[i] = 0; + + // @todo : 这里也有获取bmi088数据的操作,后续与BMI088Acquire合并.注意标定时的工作模式是阻塞,且offset和acc_coef要初始化成0和1,标定完成后再设定为标定值 + for (uint16_t i = 0; i < CaliTimes; ++i) // 提前计算,优化 + { + BMI088Acquire(_bmi088, &raw_data); + gNormTemp = NormOf3d(raw_data.acc); + _bmi088->gNorm += gNormTemp; // 计算范数并累加,最后除以calib times获取单次值 + for (uint8_t i = 0; i < 3; i++) + _bmi088->gyro_offset[i] += raw_data.gyro[i]; // 因为标定时传感器静止,所以采集到的值就是漂移,累加当前值,最后除以calib times获得零飘 + + if (i == 0) // 避免未定义的行为(else中) + { + gNormMax = gNormMin = gNormTemp; // 初始化成当前的重力加速度模长 + for (uint8_t j = 0; j < 3; ++j) + { + gyroMax[j] = raw_data.gyro[j]; + gyroMin[j] = raw_data.gyro[j]; + } + } + else // 更新gNorm的Min Max和gyro的minmax + { + gNormMax = gNormMax > gNormTemp ? gNormMax : gNormTemp; + gNormMin = gNormMin < gNormTemp ? gNormMin : gNormTemp; + for (uint8_t j = 0; j < 3; ++j) + { + gyroMax[j] = gyroMax[j] > _bmi088->gyro[j] ? gyroMax[j] : _bmi088->gyro[j]; + gyroMin[j] = gyroMin[j] < _bmi088->gyro[j] ? gyroMin[j] : _bmi088->gyro[j]; + } + } + + gNormDiff = gNormMax - gNormMin; // 最大值和最小值的差 + for (uint8_t j = 0; j < 3; ++j) + gyroDiff[j] = gyroMax[j] - gyroMin[j]; // 分别计算三轴 + if (gNormDiff > 0.5f || + gyroDiff[0] > 0.15f || + gyroDiff[1] > 0.15f || + gyroDiff[2] > 0.15f) + break; // 超出范围了,重开! remake到while循环,外面还有一层 + DWT_Delay(0.0005); // 休息一会再开始下一轮数据获取,IMU准备数据需要时间 + } + _bmi088->gNorm /= (float)CaliTimes; // 加速度范数重力 + for (uint8_t i = 0; i < 3; ++i) + _bmi088->gyro_offset[i] /= (float)CaliTimes; // 三轴零飘 + // 这里直接存到temperature,可以另外增加BMI088Instance的成员变量TempWhenCalib + _bmi088->temperature = raw_data.temperature * BMI088_TEMP_FACTOR + BMI088_TEMP_OFFSET; // 保存标定时的温度,如果已知温度和零飘的关系 + // caliTryOutCount++; 保存已经尝试的标定次数?由你. + } while (gNormDiff > 0.5f || + fabsf(_bmi088->gNorm - 9.8f) > 0.5f || + gyroDiff[0] > 0.15f || + gyroDiff[1] > 0.15f || + gyroDiff[2] > 0.15f || + fabsf(_bmi088->gyro_offset[0]) > 0.01f || + fabsf(_bmi088->gyro_offset[1]) > 0.01f || + fabsf(_bmi088->gyro_offset[2]) > 0.01f); // 满足条件说明标定环境不好 + } + + // 离线标定 + if (_bmi088->cali_mode == BMI088_LOAD_PRE_CALI_MODE) // 如果标定失败也会进来,直接使用离线数据 + { + _bmi088->gyro_offset[0] = BMI088_PRE_CALI_ACC_X_OFFSET; + _bmi088->gyro_offset[1] = BMI088_PRE_CALI_ACC_Y_OFFSET; + _bmi088->gyro_offset[2] = BMI088_PRE_CALI_ACC_Z_OFFSET; + _bmi088->gNorm = BMI088_PRE_CALI_G_NORM; + } + _bmi088->acc_coef *= 9.805 / _bmi088->gNorm; +} + +// 考虑阻塞模式和非阻塞模式的兼容性,通过条件编译(则需要在编译前修改宏定义)或runtime参数判断 +// runtime的开销不大(一次性判断),但是需要修改函数原型,增加参数,代码长度增加(但不多) +// runtime如何修改callback?根据参数选择是否给spi传入callback,如果是阻塞模式,则不传入callback,如果是非阻塞模式,则传入callback(bsp会检查是否NULL) +// 条件编译的开销小,但是需要修改宏定义,增加编译时间,同时人力介入 +// 根据实际情况选择(说了和没说一样!) + +BMI088Instance *BMI088Register(BMI088_Init_Config_s *config) +{ + // 申请内存 + BMI088Instance *bmi088_instance = (BMI088Instance *)zmalloc(sizeof(BMI088Instance)); + // 从右向左赋值,让bsp instance保存指向bmi088_instance的指针(父指针),便于在底层中断中访问bmi088_instance + config->acc_int_config.id = + config->gyro_int_config.id = + config->spi_acc_config.id = + config->spi_gyro_config.id = + config->heat_pwm_config.id = bmi088_instance; + // @todo: + // 目前只实现了!!!阻塞读取模式!!!.如果需要使用IT模式,则需要修改这里的代码,为spi和gpio注册callback(默认为NULL) + // 还需要设置SPI的传输模式为DMA模式或IT模式(默认为blocking) + // 可以通过conditional compilation或者runtime参数判断 + // code to go here ... + + // INT_ACC EXTI CALLBACK: 检查是否有传输正在进行,如果没有则开启SPI DMA传输,有则置位wait标志位; + // 第一次是加速度计,第二次是温度. + + // INT_GYRO EXTI CALLBACK: 开启SPI DMA传输,不会出现等待传输的情况 + // SPI_GYRO DMA CALLBACK: 解算陀螺仪数据, + // SPI_ACC DMA CALLBACK: 解算加速度计数据,清除温度wait标志位并启动温度传输,第二次进入中断时解算温度数据 + + // 还有其他方案可用,比如阻塞等待传输完成,但是比较笨. + + // 根据参数选择工作模式 + if (config->work_mode == BMI088_BLOCK_PERIODIC_MODE) + { + config->spi_acc_config.spi_work_mode = SPI_BLOCK_MODE; + config->spi_gyro_config.spi_work_mode = SPI_BLOCK_MODE; + // callbacks are all NULL + } + else if (config->work_mode == BMI088_BLOCK_TRIGGER_MODE) + { + config->spi_gyro_config.spi_work_mode = SPI_DMA_MODE; // 如果DMA资源不够,可以用SPI_IT_MODE + config->spi_gyro_config.spi_work_mode = SPI_DMA_MODE; + // 设置回调函数 + config->spi_acc_config.callback = BMI088AccSPIFinishCallback; + config->spi_gyro_config.callback = BMI088GyroSPIFinishCallback; + config->acc_int_config.gpio_model_callback = BMI088AccINTCallback; + config->gyro_int_config.gpio_model_callback = BMI088GyroINTCallback; + bmi088_instance->acc_int = GPIORegister(&config->acc_int_config); // 只有在非阻塞模式下才需要注册中断 + bmi088_instance->gyro_int = GPIORegister(&config->gyro_int_config); + } // 注册实例 + bmi088_instance->spi_acc = SPIRegister(&config->spi_acc_config); + bmi088_instance->spi_gyro = SPIRegister(&config->spi_gyro_config); + bmi088_instance->heat_pwm = PWMRegister(&config->heat_pwm_config); + PIDInit(&bmi088_instance->heat_pid, &config->heat_pid_config); + + // 初始化acc和gyro + BMI088_ERORR_CODE_e error = BMI088_NO_ERROR; + do + { + error = BMI088_NO_ERROR; + error |= BMI088AccelInit(bmi088_instance); + error |= BMI088GyroInit(bmi088_instance); + // 可以增加try out times,超出次数则返回错误 + } while (error != 0); + + bmi088_instance->work_mode = BMI088_BLOCK_PERIODIC_MODE; // 临时设置为阻塞模式 + BMI088CalibrateIMU(bmi088_instance); // 标定acc和gyro + bmi088_instance->work_mode = config->work_mode; // 恢复工作模式 + + return bmi088_instance; +} diff --git a/modules/BMI088/bmi088.h b/modules/BMI088/bmi088.h new file mode 100644 index 0000000..1ed12da --- /dev/null +++ b/modules/BMI088/bmi088.h @@ -0,0 +1,116 @@ +#ifndef __BMI088_H__ // 防止重复包含 +#define __BMI088_H__ + +#include "bsp_spi.h" +#include "bsp_gpio.h" +#include "controller.h" +#include "bsp_pwm.h" +#include "stdint.h" + +// bmi088工作模式枚举 +typedef enum +{ + BMI088_BLOCK_PERIODIC_MODE = 0, // 阻塞模式,周期性读取 + BMI088_BLOCK_TRIGGER_MODE, // 阻塞模式,触发读取(中断) +} BMI088_Work_Mode_e; + +// bmi088标定方式枚举,若使用预设标定参数,注意修改预设参数 +typedef enum +{ + BMI088_CALIBRATE_ONLINE_MODE = 0, // 初始化时进行标定 + BMI088_LOAD_PRE_CALI_MODE, // 使用预设标定参数, +} BMI088_Calibrate_Mode_e; + +#pragma pack(1) // 1字节对齐 +/* BMI088数据*/ +typedef struct +{ + float gyro[3]; // 陀螺仪数据,xyz + float acc[3]; // 加速度计数据,xyz + float temperature; // 温度 + + // float timestamp; // 时间戳,单位为ms,用于计算两次采样的时间间隔,同时给视觉提供timeline + // uint32_t count; // 第count次采样,用于对齐时间戳 +} BMI088_Data_t; +#pragma pack() // 恢复默认对齐,需要传输的结构体务必开启1字节对齐 + +/* BMI088实例结构体定义 */ +typedef struct +{ + // 传输模式和工作模式控制 + BMI088_Work_Mode_e work_mode; + BMI088_Calibrate_Mode_e cali_mode; + // SPI接口 + SPIInstance *spi_gyro; // 注意,SPIInstnace内部也有一个GPIOInstance,用于控制片选CS + SPIInstance *spi_acc; // 注意,SPIInstnace内部也有一个GPIOInstance,用于控制片选CS + // EXTI GPIO,如果BMI088工作在中断模式,则需要配置中断引脚(有数据产生时触发解算) + GPIOInstance *gyro_int; + GPIOInstance *acc_int; + // 温度控制 + PIDInstance heat_pid; // 恒温PID + PWMInstance *heat_pwm; // 加热PWM + // IMU数据 + float gyro[3]; // 陀螺仪数据,xyz + float acc[3]; // 加速度计数据,xyz + float temperature; // 温度 + // 标定数据 + float gyro_offset[3]; // 陀螺仪零偏 + float gNorm; // 重力加速度模长,从标定获取 + float acc_coef; // 加速度计原始数据转换系数 + // 传感器灵敏度,用于计算实际值(regNdef.h中定义) + float BMI088_ACCEL_SEN; + float BMI088_GYRO_SEN; + // 用于计算两次采样的时间间隔 + uint32_t bias_dwt_cnt; + // 数据更新标志位 + struct // 位域,节省空间提高可读性 + { + uint8_t gyro : 1; // 1:有新数据,0:无新数据 + uint8_t acc : 1; + uint8_t temp : 1; + uint8_t gyro_overrun : 1; // 1:数据溢出,0:无溢出 + uint8_t acc_overrun : 1; + uint8_t temp_overrun : 1; + uint8_t imu_ready : 1; // 1:IMU数据准备好,0:IMU数据未准备好(gyro+acc) + // 后续可添加其他标志位,不够用可以扩充16or32,太多可以删 + } update_flag; +} BMI088Instance; + +/* BMI088初始化配置 */ +typedef struct +{ + BMI088_Work_Mode_e work_mode; + BMI088_Calibrate_Mode_e cali_mode; + SPI_Init_Config_s spi_gyro_config; + SPI_Init_Config_s spi_acc_config; + GPIO_Init_Config_s gyro_int_config; + GPIO_Init_Config_s acc_int_config; + PID_Init_Config_s heat_pid_config; + PWM_Init_Config_s heat_pwm_config; +} BMI088_Init_Config_s; + +/** + * @brief 初始化BMI088,返回BMI088实例指针 + * @note 一般一个开发板只有一个BMI088,所以这里就叫BMI088Init而不是Register + * + * @param config bmi088初始化配置 + * @return BMI088Instance* 实例指针 + */ +BMI088Instance *BMI088Register(BMI088_Init_Config_s *config); + +/** + * @brief 读取BMI088数据 + * @param bmi088 BMI088实例指针 + * @return BMI088_Data_t 读取到的数据 + */ +uint8_t BMI088Acquire(BMI088Instance *bmi088,BMI088_Data_t* data_store); + +/** + * @brief 标定传感器.BMI088在初始化的时候会调用此函数. 提供接口方便标定离线数据 + * @attention @todo 注意,当操作系统开始运行后,此函数会和INS_Task冲突.目前不允许在运行时调用此函数,后续加入标志位判断以提供运行时重新的标定功能 + * + * @param _bmi088 待标定的实例 + */ +void BMI088CalibrateIMU(BMI088Instance *_bmi088); + +#endif // !__BMI088_H__ \ No newline at end of file diff --git a/modules/BMI088/bmi088.md b/modules/BMI088/bmi088.md new file mode 100644 index 0000000..7dbd80f --- /dev/null +++ b/modules/BMI088/bmi088.md @@ -0,0 +1,98 @@ +# BMI088 + +## 示例 + +```c +BMI088_Init_Config_s imu_config = { + .spi_acc_config={ + .GPIOx=GPIOA, + .GPIOx=GPIO_PIN_4, + .spi_handle=&hspi1, + }, + .spi_gyro_config={ + .GPIOx=GPIOB, + .GPIOx=GPIO_PIN_0, + .spi_handle=&hspi1, + }, + .acc_int_config={ + .exti_mode=EXTI_TRIGGER_FALLING, + .GPIO_Pin=GPIO_PIN_4, + .GPIOx=GPIOC, + }, + .gyro_int_config={ + .exti_mode=EXTI_TRIGGER_FALLING, + .GPIO_Pin=GPIO_PIN_5, + .GPIOx=GPIOC, + }, + .heat_pid_config={ + .Kp=0.0f, + .Kd=0.0f, + .Ki=0.0f, + .MaxOut=0.0f, + .DeadBand=0.0f, + }, + .heat_pwm_config={ + .channel=TIM_CHANNEL_1, + .htim=&htim1, + }, + .cali_mode=BMI088_CALIBRATE_ONLINE_MODE, + .work_mode=BMI088_BLOCK_PERIODIC_MODE, + }; + +BMI088Instance* imu=BMI088Register(&imu_config); +``` + +## IT非阻塞模式下BMI088读取流程 + +数据准备完成标志位:`uint8_t BMI088_READY_FLAG` 总共8个位 也可以用位域可读性更高 + +1. 当accel int中断发生,开启DMA SPI传输,完成后将acc ready置位 +2. 当gyro int中断发生,开启DMA SPI传输,完成后将gyro ready置位 +3. 当温度数据中断(温度传感器在accel内部,也是accel int)发生,开启DMA传输,完成后将温度标志位置位 + +> 由于DMA传输非阻塞,启动传输后只有到传输完成时才会拉高片选结束SPI transfer,因此需要在callback中加入标志位置位的操作. +这可以通过条件编译完成. + +温度数据不需要和accel和gyro同步,它不参与姿态解算,可以不用管. + +当加速度数据和陀螺仪数据都准备完成之后,唤醒姿态解算任务INs_taSk,进行一次解算.唤醒可以通过软件开启EXTI中断,在中断中调用实时系统的vTaskNotifyFromISR()完成,也可以将任务ready标志位置位,当运行到对应位置时检查标志位判断是否要进行任务.时间间隔不是大问题,inS_TAsK中有dwt用于计算两次任务执行的间隔,它将会自动处理好bias的大小 + +`__HAL_GPIO_EXTI_GENERATE_SWIT()` `HAL_EXTI_GENERATE_SWI()` 可以触发软件中断 + +of course,两者的数据更新实际上可以异步进行,这里为了方便起见当两者数据都准备好以后再行融合 + +## 数据读写规则(so called 16-bit protocol) + +加速度计读取read: + +1. bit 0 :1 bit 1-7: reg address +2. dummy read,加速度计此时返回的数据无效 +3. 真正的数据从第三个字节开始. + +通过SPI传输三个字节(分三次) +byte1: 1(读)+7位寄存器地址 +byte2: 没用 +byte3: 读取到的数据 + +write写入: + +1. bit 0: 0 bit1-7: reg address +2. 要写入寄存器的数据(注意没有dummy byte) + +--- + +**注意,陀螺仪和加速度计的读取不同** + +陀螺仪gyro读取read: + +1. bit 0 :1 bit1-7: reg address +2. 读回的数据 + +通过SPI传输两个字节(分两次) +byte1: 1(读)+7位寄存器地址 +byte2: 读取到的数据 + +write写入: + +1. bit0 : 0 bit1-7 : reg address +2. 写入的数据 diff --git a/modules/BMI088/bmi088_regNdef.h b/modules/BMI088/bmi088_regNdef.h new file mode 100644 index 0000000..b108bc1 --- /dev/null +++ b/modules/BMI088/bmi088_regNdef.h @@ -0,0 +1,234 @@ +#ifndef BMI088REG_H +#define BMI088REG_H + +/*------- BMI088寄存器地址及其存放的内容-------*/ + +#define BMI088_ACC_CHIP_ID 0x00 // the register is " Who am I " +#define BMI088_ACC_CHIP_ID_VALUE 0x1E + +#define BMI088_ACC_ERR_REG 0x02 +#define BMI088_ACCEL_CONGIF_ERROR_SHFITS 0x2 +#define BMI088_ACCEL_CONGIF_ERROR (1 << BMI088_ACCEL_CONGIF_ERROR_SHFITS) +#define BMI088_FATAL_ERROR_SHFITS 0x0 +#define BMI088_FATAL_ERROR (1 << BMI088_FATAL_ERROR) + +#define BMI088_ACC_STATUS 0x03 +#define BMI088_ACCEL_DRDY_SHFITS 0x7 +#define BMI088_ACCEL_DRDY (1 << BMI088_ACCEL_DRDY_SHFITS) + +#define BMI088_ACCEL_XOUT_L 0x12 +#define BMI088_ACCEL_XOUT_M 0x13 +#define BMI088_ACCEL_YOUT_L 0x14 +#define BMI088_ACCEL_YOUT_M 0x15 +#define BMI088_ACCEL_ZOUT_L 0x16 +#define BMI088_ACCEL_ZOUT_M 0x17 + +#define BMI088_SENSORTIME_DATA_L 0x18 +#define BMI088_SENSORTIME_DATA_M 0x19 +#define BMI088_SENSORTIME_DATA_H 0x1A + +#define BMI088_ACC_INT_STAT_1 0x1D +#define BMI088_ACCEL_DRDY_INTERRUPT_SHFITS 0x7 +#define BMI088_ACCEL_DRDY_INTERRUPT (1 << BMI088_ACCEL_DRDY_INTERRUPT_SHFITS) + +#define BMI088_TEMP_M 0x22 + +#define BMI088_TEMP_L 0x23 + +#define BMI088_ACC_CONF 0x40 +#define BMI088_ACC_CONF_MUST_Set 0x80 +#define BMI088_ACC_BWP_SHFITS 0x4 +#define BMI088_ACC_OSR4 (0x0 << BMI088_ACC_BWP_SHFITS) +#define BMI088_ACC_OSR2 (0x1 << BMI088_ACC_BWP_SHFITS) +#define BMI088_ACC_NORMAL (0x2 << BMI088_ACC_BWP_SHFITS) + +#define BMI088_ACC_ODR_SHFITS 0x0 +#define BMI088_ACC_12_5_HZ (0x5 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_25_HZ (0x6 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_50_HZ (0x7 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_100_HZ (0x8 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_200_HZ (0x9 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_400_HZ (0xA << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_800_HZ (0xB << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_1600_HZ (0xC << BMI088_ACC_ODR_SHFITS) + +#define BMI088_ACC_RANGE 0x41 + +#define BMI088_ACC_RANGE_SHFITS 0x0 +#define BMI088_ACC_RANGE_3G (0x0 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_6G (0x1 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_12G (0x2 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_24G (0x3 << BMI088_ACC_RANGE_SHFITS) + +#define BMI088_INT1_IO_CTRL 0x53 +#define BMI088_ACC_INT1_IO_ENABLE_SHFITS 0x3 +#define BMI088_ACC_INT1_IO_ENABLE (0x1 << BMI088_ACC_INT1_IO_ENABLE_SHFITS) +#define BMI088_ACC_INT1_GPIO_MODE_SHFITS 0x2 +#define BMI088_ACC_INT1_GPIO_PP (0x0 << BMI088_ACC_INT1_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT1_GPIO_OD (0x1 << BMI088_ACC_INT1_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT1_GPIO_LVL_SHFITS 0x1 +#define BMI088_ACC_INT1_GPIO_LOW (0x0 << BMI088_ACC_INT1_GPIO_LVL_SHFITS) +#define BMI088_ACC_INT1_GPIO_HIGH (0x1 << BMI088_ACC_INT1_GPIO_LVL_SHFITS) + +#define BMI088_INT2_IO_CTRL 0x54 +#define BMI088_ACC_INT2_IO_ENABLE_SHFITS 0x3 +#define BMI088_ACC_INT2_IO_ENABLE (0x1 << BMI088_ACC_INT2_IO_ENABLE_SHFITS) +#define BMI088_ACC_INT2_GPIO_MODE_SHFITS 0x2 +#define BMI088_ACC_INT2_GPIO_PP (0x0 << BMI088_ACC_INT2_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT2_GPIO_OD (0x1 << BMI088_ACC_INT2_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT2_GPIO_LVL_SHFITS 0x1 +#define BMI088_ACC_INT2_GPIO_LOW (0x0 << BMI088_ACC_INT2_GPIO_LVL_SHFITS) +#define BMI088_ACC_INT2_GPIO_HIGH (0x1 << BMI088_ACC_INT2_GPIO_LVL_SHFITS) + +#define BMI088_INT_MAP_DATA 0x58 +#define BMI088_ACC_INT2_DRDY_INTERRUPT_SHFITS 0x6 +#define BMI088_ACC_INT2_DRDY_INTERRUPT (0x1 << BMI088_ACC_INT2_DRDY_INTERRUPT_SHFITS) +#define BMI088_ACC_INT1_DRDY_INTERRUPT_SHFITS 0x2 +#define BMI088_ACC_INT1_DRDY_INTERRUPT (0x1 << BMI088_ACC_INT1_DRDY_INTERRUPT_SHFITS) + +#define BMI088_ACC_SELF_TEST 0x6D +#define BMI088_ACC_SELF_TEST_OFF 0x00 +#define BMI088_ACC_SELF_TEST_POSITIVE_SIGNAL 0x0D +#define BMI088_ACC_SELF_TEST_NEGATIVE_SIGNAL 0x09 + +#define BMI088_ACC_PWR_CONF 0x7C +#define BMI088_ACC_PWR_SUSPEND_MODE 0x03 +#define BMI088_ACC_PWR_ACTIVE_MODE 0x00 + +#define BMI088_ACC_PWR_CTRL 0x7D +#define BMI088_ACC_ENABLE_ACC_OFF 0x00 +#define BMI088_ACC_ENABLE_ACC_ON 0x04 + +#define BMI088_ACC_SOFTRESET 0x7E +#define BMI088_ACC_SOFTRESET_VALUE 0xB6 + +#define BMI088_GYRO_CHIP_ID 0x00 +#define BMI088_GYRO_CHIP_ID_VALUE 0x0F + +#define BMI088_GYRO_X_L 0x02 +#define BMI088_GYRO_X_H 0x03 +#define BMI088_GYRO_Y_L 0x04 +#define BMI088_GYRO_Y_H 0x05 +#define BMI088_GYRO_Z_L 0x06 +#define BMI088_GYRO_Z_H 0x07 + +#define BMI088_GYRO_INT_STAT_1 0x0A +#define BMI088_GYRO_DYDR_SHFITS 0x7 +#define BMI088_GYRO_DYDR (0x1 << BMI088_GYRO_DYDR_SHFITS) + +#define BMI088_GYRO_RANGE 0x0F +#define BMI088_GYRO_RANGE_SHFITS 0x0 +#define BMI088_GYRO_2000 (0x0 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_1000 (0x1 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_500 (0x2 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_250 (0x3 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_125 (0x4 << BMI088_GYRO_RANGE_SHFITS) + +#define BMI088_GYRO_BANDWIDTH 0x10 +// the first num means Output data rate, the second num means bandwidth +#define BMI088_GYRO_BANDWIDTH_MUST_Set 0x80 +#define BMI088_GYRO_2000_532_HZ 0x00 +#define BMI088_GYRO_2000_230_HZ 0x01 +#define BMI088_GYRO_1000_116_HZ 0x02 +#define BMI088_GYRO_400_47_HZ 0x03 +#define BMI088_GYRO_200_23_HZ 0x04 +#define BMI088_GYRO_100_12_HZ 0x05 +#define BMI088_GYRO_200_64_HZ 0x06 +#define BMI088_GYRO_100_32_HZ 0x07 + +#define BMI088_GYRO_LPM1 0x11 +#define BMI088_GYRO_NORMAL_MODE 0x00 +#define BMI088_GYRO_SUSPEND_MODE 0x80 +#define BMI088_GYRO_DEEP_SUSPEND_MODE 0x20 + +#define BMI088_GYRO_SOFTRESET 0x14 +#define BMI088_GYRO_SOFTRESET_VALUE 0xB6 + +#define BMI088_GYRO_CTRL 0x15 +#define BMI088_DRDY_OFF 0x00 +#define BMI088_DRDY_ON 0x80 + +#define BMI088_GYRO_INT3_INT4_IO_CONF 0x16 +#define BMI088_GYRO_INT4_GPIO_MODE_SHFITS 0x3 +#define BMI088_GYRO_INT4_GPIO_PP (0x0 << BMI088_GYRO_INT4_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT4_GPIO_OD (0x1 << BMI088_GYRO_INT4_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT4_GPIO_LVL_SHFITS 0x2 +#define BMI088_GYRO_INT4_GPIO_LOW (0x0 << BMI088_GYRO_INT4_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT4_GPIO_HIGH (0x1 << BMI088_GYRO_INT4_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT3_GPIO_MODE_SHFITS 0x1 +#define BMI088_GYRO_INT3_GPIO_PP (0x0 << BMI088_GYRO_INT3_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT3_GPIO_OD (0x1 << BMI088_GYRO_INT3_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT3_GPIO_LVL_SHFITS 0x0 +#define BMI088_GYRO_INT3_GPIO_LOW (0x0 << BMI088_GYRO_INT3_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT3_GPIO_HIGH (0x1 << BMI088_GYRO_INT3_GPIO_LVL_SHFITS) + +#define BMI088_GYRO_INT3_INT4_IO_MAP 0x18 + +#define BMI088_GYRO_DRDY_IO_OFF 0x00 +#define BMI088_GYRO_DRDY_IO_INT3 0x01 +#define BMI088_GYRO_DRDY_IO_INT4 0x80 +#define BMI088_GYRO_DRDY_IO_BOTH (BMI088_GYRO_DRDY_IO_INT3 | BMI088_GYRO_DRDY_IO_INT4) + +#define BMI088_GYRO_SELF_TEST 0x3C +#define BMI088_GYRO_RATE_OK_SHFITS 0x4 +#define BMI088_GYRO_RATE_OK (0x1 << BMI088_GYRO_RATE_OK_SHFITS) +#define BMI088_GYRO_BIST_FAIL_SHFITS 0x2 +#define BMI088_GYRO_BIST_FAIL (0x1 << BMI088_GYRO_BIST_FAIL_SHFITS) +#define BMI088_GYRO_BIST_RDY_SHFITS 0x1 +#define BMI088_GYRO_BIST_RDY (0x1 << BMI088_GYRO_BIST_RDY_SHFITS) +#define BMI088_GYRO_TRIG_BIST_SHFITS 0x0 +#define BMI088_GYRO_TRIG_BIST (0x1 << BMI088_GYRO_TRIG_BIST_SHFITS) + +/* -------BMI088 配置和传感器灵敏度换算系数等------- */ + +#define BMI088_TEMP_FACTOR 0.125f +#define BMI088_TEMP_OFFSET 23.0f + +#define BMI088_WRITE_ACCEL_REG_NUM 6 +#define BMI088_WRITE_GYRO_REG_NUM 6 + +#define BMI088_GYRO_DATA_READY_BIT 0 +#define BMI088_ACCEL_DATA_READY_BIT 1 +#define BMI088_ACCEL_TEMP_DATA_READY_BIT 2 + +#define BMI088_LONG_DELAY_TIME 80 +#define BMI088_COM_WAIT_SENSOR_TIME 150 + +#define BMI088_ACCEL_IIC_ADDRESSE (0x18 << 1) +#define BMI088_GYRO_IIC_ADDRESSE (0x68 << 1) + +#define BMI088_ACCEL_3G_SEN 0.0008974358974f +#define BMI088_ACCEL_6G_SEN 0.00179443359375f +#define BMI088_ACCEL_12G_SEN 0.0035888671875f +#define BMI088_ACCEL_24G_SEN 0.007177734375f + +#define BMI088_GYRO_2000_SEN 0.00106526443603169529841533860381f +#define BMI088_GYRO_1000_SEN 0.00053263221801584764920766930190693f +#define BMI088_GYRO_500_SEN 0.00026631610900792382460383465095346f +#define BMI088_GYRO_250_SEN 0.00013315805450396191230191732547673f +#define BMI088_GYRO_125_SEN 0.000066579027251980956150958662738366f + +/* BMI088错误码枚举 */ +typedef enum +{ + BMI088_NO_ERROR = 0x00, + BMI088_ACC_PWR_CTRL_ERROR = 0x01, + BMI088_ACC_PWR_CONF_ERROR = 0x02, + BMI088_ACC_CONF_ERROR = 0x03, + BMI088_ACC_SELF_TEST_ERROR = 0x04, + BMI088_ACC_RANGE_ERROR = 0x05, + BMI088_INT1_IO_CTRL_ERROR = 0x06, + BMI088_INT_MAP_DATA_ERROR = 0x07, + BMI088_GYRO_RANGE_ERROR = 0x08, + BMI088_GYRO_BANDWIDTH_ERROR = 0x09, + BMI088_GYRO_LPM1_ERROR = 0x0A, + BMI088_GYRO_CTRL_ERROR = 0x0B, + BMI088_GYRO_INT3_INT4_IO_CONF_ERROR = 0x0C, + BMI088_GYRO_INT3_INT4_IO_MAP_ERROR = 0x0D, + + BMI088_SELF_TEST_ACCEL_ERROR = 0x80, + BMI088_SELF_TEST_GYRO_ERROR = 0x40, + BMI088_NO_SENSOR = 0xFF, +} BMI088_ERORR_CODE_e; + +#endif diff --git a/modules/TFminiPlus/tfminiplus.c b/modules/TFminiPlus/tfminiplus.c new file mode 100644 index 0000000..0b53f18 --- /dev/null +++ b/modules/TFminiPlus/tfminiplus.c @@ -0,0 +1,30 @@ +#include "tfminiplus.h" +#include "stdlib.h" +#include "bsp_dwt.h" + +static TFMiniInstance *tfmini; + +TFMiniInstance *TFMiniRegister(I2C_HandleTypeDef *hi2c) +{ + tfmini = (TFMiniInstance *)malloc(sizeof(TFMiniInstance)); + IIC_Init_Config_s conf = { + .handle = hi2c, + .dev_address = 0x10, + .id = tfmini, + .work_mode = IIC_BLOCK_MODE, + }; + tfmini->iic = IICRegister(&conf); + DWT_Delay(0.5); + return tfmini; +} + +float GetDistance(TFMiniInstance *tfmini) +{ + uint8_t cmd_buf[5] = {0x5A, 0x05, 0x00, 0x06, 0x65}; + IICTransmit(tfmini->iic, cmd_buf, 5, IIC_SEQ_RELEASE); + IICReceive(tfmini->iic, tfmini->buf, 11, IIC_SEQ_RELEASE); + tfmini->Mode = tfmini->buf[6]; + tfmini->Dist = (uint16_t)tfmini->buf[2] + (((uint16_t)tfmini->buf[3]) << 8); + tfmini->Strength = tfmini->buf[4] | (tfmini->buf[5] << 8); + return tfmini->Dist; +} diff --git a/modules/TFminiPlus/tfminiplus.h b/modules/TFminiPlus/tfminiplus.h new file mode 100644 index 0000000..62ed6b7 --- /dev/null +++ b/modules/TFminiPlus/tfminiplus.h @@ -0,0 +1,20 @@ +#ifndef __TFMINIPLUS_H__ +#define __TFMINIPLUS_H__ + +#include "stdint.h" +#include "bsp_iic.h" + +typedef struct +{ + IICInstance *iic; + uint8_t Mode; //= buf[6]; + uint16_t Dist; //= buf[2] | (buf[3] << 8); + uint32_t Strength; //= buf[4] | (buf[5] << 8); + uint8_t buf[9]; +} TFMiniInstance; + +TFMiniInstance *TFMiniRegister(I2C_HandleTypeDef *hi2c); + +float GetDistance(TFMiniInstance *tfmini); + +#endif diff --git a/modules/TFminiPlus/tfminiplus.md b/modules/TFminiPlus/tfminiplus.md new file mode 100644 index 0000000..b833bd8 --- /dev/null +++ b/modules/TFminiPlus/tfminiplus.md @@ -0,0 +1,3 @@ +# tfminiplus + +北醒激光单点激光雷达模块的简单实现。目前使用iic阻塞通信耗时和速度都太慢,需修改为中断读取,bsp_iic已经提供相应的接口。 \ No newline at end of file diff --git a/modules/alarm/buzzer.c b/modules/alarm/buzzer.c new file mode 100644 index 0000000..3051ee4 --- /dev/null +++ b/modules/alarm/buzzer.c @@ -0,0 +1,93 @@ +#include "bsp_pwm.h" +#include "buzzer.h" +#include "bsp_dwt.h" +#include "string.h" + +static PWMInstance *buzzer; +// static uint8_t idx; +static BuzzzerInstance *buzzer_list[BUZZER_DEVICE_CNT] = {0}; + +/** + * @brief 蜂鸣器初始化 + * + */ +void BuzzerInit() +{ + PWM_Init_Config_s buzzer_config = { + .htim = &htim4, + .channel = TIM_CHANNEL_3, + .dutyratio = 0, + .period = 0.001, + }; + buzzer = PWMRegister(&buzzer_config); +} + +BuzzzerInstance *BuzzerRegister(Buzzer_config_s *config) +{ + if (config->alarm_level > BUZZER_DEVICE_CNT) // 超过最大实例数,考虑增加或查看是否有内存泄漏 + while (1) + ; + BuzzzerInstance *buzzer_temp = (BuzzzerInstance *)malloc(sizeof(BuzzzerInstance)); + memset(buzzer_temp, 0, sizeof(BuzzzerInstance)); + + buzzer_temp->alarm_level = config->alarm_level; + buzzer_temp->loudness = config->loudness; + buzzer_temp->octave = config->octave; + buzzer_temp->alarm_state = ALARM_OFF; + + buzzer_list[config->alarm_level] = buzzer_temp; + return buzzer_temp; +} + +void AlarmSetStatus(BuzzzerInstance *buzzer, AlarmState_e state) +{ + buzzer->alarm_state = state; +} + +void BuzzerTask() +{ + BuzzzerInstance *buzz; + for (size_t i = 0; i < BUZZER_DEVICE_CNT; ++i) + { + buzz = buzzer_list[i]; + if (buzz->alarm_level > ALARM_LEVEL_LOW) + { + continue; + } + if (buzz->alarm_state == ALARM_OFF) + { + PWMSetDutyRatio(buzzer, 0); + } + else + { + PWMSetDutyRatio(buzzer, buzz->loudness); + switch (buzz->octave) + { + case OCTAVE_1: + PWMSetPeriod(buzzer, (float)1 / DoFreq); + break; + case OCTAVE_2: + PWMSetPeriod(buzzer, (float)1 / ReFreq); + break; + case OCTAVE_3: + PWMSetPeriod(buzzer, (float)1 / MiFreq); + break; + case OCTAVE_4: + PWMSetPeriod(buzzer, (float)1 / FaFreq); + break; + case OCTAVE_5: + PWMSetPeriod(buzzer, (float)1 / SoFreq); + break; + case OCTAVE_6: + PWMSetPeriod(buzzer, (float)1 / LaFreq); + break; + case OCTAVE_7: + PWMSetPeriod(buzzer, (float)1 / SiFreq); + break; + default: + break; + } + break; + } + } +} diff --git a/modules/alarm/buzzer.h b/modules/alarm/buzzer.h new file mode 100644 index 0000000..e63054c --- /dev/null +++ b/modules/alarm/buzzer.h @@ -0,0 +1,60 @@ +#ifndef BUZZER_H +#define BUZZER_H +#include "bsp_pwm.h" +#define BUZZER_DEVICE_CNT 5 + +#define DoFreq 523 +#define ReFreq 587 +#define MiFreq 659 +#define FaFreq 698 +#define SoFreq 784 +#define LaFreq 880 +#define SiFreq 988 + +typedef enum +{ + OCTAVE_1 = 0, + OCTAVE_2, + OCTAVE_3, + OCTAVE_4, + OCTAVE_5, + OCTAVE_6, + OCTAVE_7, + OCTAVE_8, +}octave_e; + +typedef enum +{ + ALARM_LEVEL_HIGH = 0, + ALARM_LEVEL_ABOVE_MEDIUM, + ALARM_LEVEL_MEDIUM, + ALARM_LEVEL_BELOW_MEDIUM, + ALARM_LEVEL_LOW, +}AlarmLevel_e; + +typedef enum +{ + ALARM_OFF = 0, + ALARM_ON, +}AlarmState_e; +typedef struct +{ + AlarmLevel_e alarm_level; + octave_e octave; + float loudness; +}Buzzer_config_s; + +typedef struct +{ + float loudness; + octave_e octave; + AlarmLevel_e alarm_level; + AlarmState_e alarm_state; +}BuzzzerInstance; + + +void BuzzerInit(); +void BuzzerTask(); +BuzzzerInstance *BuzzerRegister(Buzzer_config_s *config); +void AlarmSetStatus(BuzzzerInstance *buzzer, AlarmState_e state); +#endif // !BUZZER_H diff --git a/modules/alarm/buzzer.md b/modules/alarm/buzzer.md new file mode 100644 index 0000000..a1d02d0 --- /dev/null +++ b/modules/alarm/buzzer.md @@ -0,0 +1,20 @@ +# buzzer + +用于拉响蜂鸣器警报 + +## 使用范例 + +```c +Buzzer_config_s buzzer_config ={ + .alarm_level = ALARM_LEVEL_HIGH, //设置警报等级 同一状态下 高等级的响应 + .loudness= 0.4, //设置响度 + .octave= OCTAVE_1, // 设置音阶 + }; +robocmd_alarm = BuzzerRegister(&buzzer_config); + +AlarmSetStatus(robocmd_alarm, ALARM_ON); +AlarmSetStatus(robocmd_alarm, ALARM_OFF); + +``` + +@todo: 将音阶改为可供选择的搭配 如 Do Re Mi Fa So La Si 自由组合 用户只需输入字符串"DoReMi"即可 \ No newline at end of file diff --git a/modules/algorithm/QuaternionEKF.c b/modules/algorithm/QuaternionEKF.c new file mode 100644 index 0000000..27c06e5 --- /dev/null +++ b/modules/algorithm/QuaternionEKF.c @@ -0,0 +1,489 @@ +/** + ****************************************************************************** + * @file QuaternionEKF.c + * @author Wang Hongxi + * @version V1.2.0 + * @date 2022/3/8 + * @brief attitude update with gyro bias estimate and chi-square test + ****************************************************************************** + * @attention + * 1st order LPF transfer function: + * 1 + * ——————— + * as + 1 + * + ****************************************************************************** + */ +#include "QuaternionEKF.h" + +QEKF_INS_t QEKF_INS; + +const float IMU_QuaternionEKF_F[36] = {1, 0, 0, 0, 0, 0, + 0, 1, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, + 0, 0, 0, 1, 0, 0, + 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 1}; +float IMU_QuaternionEKF_P[36] = {100000, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 100000, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 100000, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 100000, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 100, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 100}; +float IMU_QuaternionEKF_K[18]; +float IMU_QuaternionEKF_H[18]; + +static float invSqrt(float x); +static void IMU_QuaternionEKF_Observe(KalmanFilter_t *kf); +static void IMU_QuaternionEKF_F_Linearization_P_Fading(KalmanFilter_t *kf); +static void IMU_QuaternionEKF_SetH(KalmanFilter_t *kf); +static void IMU_QuaternionEKF_xhatUpdate(KalmanFilter_t *kf); + +/** + * @brief Quaternion EKF initialization and some reference value + * @param[in] process_noise1 quaternion process noise 10 + * @param[in] process_noise2 gyro bias process noise 0.001 + * @param[in] measure_noise accel measure noise 1000000 + * @param[in] lambda fading coefficient 0.9996 + * @param[in] lpf lowpass filter coefficient 0 + */ +void IMU_QuaternionEKF_Init(float* init_quaternion,float process_noise1, float process_noise2, float measure_noise, float lambda, float lpf) +{ + QEKF_INS.Initialized = 1; + QEKF_INS.Q1 = process_noise1; + QEKF_INS.Q2 = process_noise2; + QEKF_INS.R = measure_noise; + QEKF_INS.ChiSquareTestThreshold = 1e-8; + QEKF_INS.ConvergeFlag = 0; + QEKF_INS.ErrorCount = 0; + QEKF_INS.UpdateCount = 0; + if (lambda > 1) + { + lambda = 1; + } + QEKF_INS.lambda = lambda; + QEKF_INS.accLPFcoef = lpf; + + // 初始化矩阵维度信息 + Kalman_Filter_Init(&QEKF_INS.IMU_QuaternionEKF, 6, 0, 3); + Matrix_Init(&QEKF_INS.ChiSquare, 1, 1, (float *)QEKF_INS.ChiSquare_Data); + + // 姿态初始化 + for(int i = 0; i < 4; i++) + { + QEKF_INS.IMU_QuaternionEKF.xhat_data[i] = init_quaternion[i]; + } + + // 自定义函数初始化,用于扩展或增加kf的基础功能 + QEKF_INS.IMU_QuaternionEKF.User_Func0_f = IMU_QuaternionEKF_Observe; + QEKF_INS.IMU_QuaternionEKF.User_Func1_f = IMU_QuaternionEKF_F_Linearization_P_Fading; + QEKF_INS.IMU_QuaternionEKF.User_Func2_f = IMU_QuaternionEKF_SetH; + QEKF_INS.IMU_QuaternionEKF.User_Func3_f = IMU_QuaternionEKF_xhatUpdate; + + // 设定标志位,用自定函数替换kf标准步骤中的SetK(计算增益)以及xhatupdate(后验估计/融合) + QEKF_INS.IMU_QuaternionEKF.SkipEq3 = TRUE; + QEKF_INS.IMU_QuaternionEKF.SkipEq4 = TRUE; + + memcpy(QEKF_INS.IMU_QuaternionEKF.F_data, IMU_QuaternionEKF_F, sizeof(IMU_QuaternionEKF_F)); + memcpy(QEKF_INS.IMU_QuaternionEKF.P_data, IMU_QuaternionEKF_P, sizeof(IMU_QuaternionEKF_P)); +} + +/** + * @brief Quaternion EKF update + * @param[in] gyro x y z in rad/s + * @param[in] accel x y z in m/s² + * @param[in] update period in s + */ +void IMU_QuaternionEKF_Update(float gx, float gy, float gz, float ax, float ay, float az, float dt) +{ + // 0.5(Ohm-Ohm^bias)*deltaT,用于更新工作点处的状态转移F矩阵 + static float halfgxdt, halfgydt, halfgzdt; + static float accelInvNorm; + + /* F, number with * represent vals to be set + 0 1* 2* 3* 4 5 + 6* 7 8* 9* 10 11 + 12* 13* 14 15* 16 17 + 18* 19* 20* 21 22 23 + 24 25 26 27 28 29 + 30 31 32 33 34 35 + */ + QEKF_INS.dt = dt; + + QEKF_INS.Gyro[0] = gx - QEKF_INS.GyroBias[0]; + QEKF_INS.Gyro[1] = gy - QEKF_INS.GyroBias[1]; + QEKF_INS.Gyro[2] = gz - QEKF_INS.GyroBias[2]; + + // set F + halfgxdt = 0.5f * QEKF_INS.Gyro[0] * dt; + halfgydt = 0.5f * QEKF_INS.Gyro[1] * dt; + halfgzdt = 0.5f * QEKF_INS.Gyro[2] * dt; + + // 此部分设定状态转移矩阵F的左上角部分 4x4子矩阵,即0.5(Ohm-Ohm^bias)*deltaT,右下角有一个2x2单位阵已经初始化好了 + // 注意在predict步F的右上角是4x2的零矩阵,因此每次predict的时候都会调用memcpy用单位阵覆盖前一轮线性化后的矩阵 + memcpy(QEKF_INS.IMU_QuaternionEKF.F_data, IMU_QuaternionEKF_F, sizeof(IMU_QuaternionEKF_F)); + + QEKF_INS.IMU_QuaternionEKF.F_data[1] = -halfgxdt; + QEKF_INS.IMU_QuaternionEKF.F_data[2] = -halfgydt; + QEKF_INS.IMU_QuaternionEKF.F_data[3] = -halfgzdt; + + QEKF_INS.IMU_QuaternionEKF.F_data[6] = halfgxdt; + QEKF_INS.IMU_QuaternionEKF.F_data[8] = halfgzdt; + QEKF_INS.IMU_QuaternionEKF.F_data[9] = -halfgydt; + + QEKF_INS.IMU_QuaternionEKF.F_data[12] = halfgydt; + QEKF_INS.IMU_QuaternionEKF.F_data[13] = -halfgzdt; + QEKF_INS.IMU_QuaternionEKF.F_data[15] = halfgxdt; + + QEKF_INS.IMU_QuaternionEKF.F_data[18] = halfgzdt; + QEKF_INS.IMU_QuaternionEKF.F_data[19] = halfgydt; + QEKF_INS.IMU_QuaternionEKF.F_data[20] = -halfgxdt; + + // accel low pass filter,加速度过一下低通滤波平滑数据,降低撞击和异常的影响 + if (QEKF_INS.UpdateCount == 0) // 如果是第一次进入,需要初始化低通滤波 + { + QEKF_INS.Accel[0] = ax; + QEKF_INS.Accel[1] = ay; + QEKF_INS.Accel[2] = az; + } + QEKF_INS.Accel[0] = QEKF_INS.Accel[0] * QEKF_INS.accLPFcoef / (QEKF_INS.dt + QEKF_INS.accLPFcoef) + ax * QEKF_INS.dt / (QEKF_INS.dt + QEKF_INS.accLPFcoef); + QEKF_INS.Accel[1] = QEKF_INS.Accel[1] * QEKF_INS.accLPFcoef / (QEKF_INS.dt + QEKF_INS.accLPFcoef) + ay * QEKF_INS.dt / (QEKF_INS.dt + QEKF_INS.accLPFcoef); + QEKF_INS.Accel[2] = QEKF_INS.Accel[2] * QEKF_INS.accLPFcoef / (QEKF_INS.dt + QEKF_INS.accLPFcoef) + az * QEKF_INS.dt / (QEKF_INS.dt + QEKF_INS.accLPFcoef); + + // set z,单位化重力加速度向量 + accelInvNorm = invSqrt(QEKF_INS.Accel[0] * QEKF_INS.Accel[0] + QEKF_INS.Accel[1] * QEKF_INS.Accel[1] + QEKF_INS.Accel[2] * QEKF_INS.Accel[2]); + for (uint8_t i = 0; i < 3; ++i) + { + QEKF_INS.IMU_QuaternionEKF.MeasuredVector[i] = QEKF_INS.Accel[i] * accelInvNorm; // 用加速度向量更新量测值 + } + + // get body state + QEKF_INS.gyro_norm = 1.0f / invSqrt(QEKF_INS.Gyro[0] * QEKF_INS.Gyro[0] + + QEKF_INS.Gyro[1] * QEKF_INS.Gyro[1] + + QEKF_INS.Gyro[2] * QEKF_INS.Gyro[2]); + QEKF_INS.accl_norm = 1.0f / accelInvNorm; + + // 如果角速度小于阈值且加速度处于设定范围内,认为运动稳定,加速度可以用于修正角速度 + // 稍后在最后的姿态更新部分会利用StableFlag来确定 + if (QEKF_INS.gyro_norm < 0.3f && QEKF_INS.accl_norm > 9.8f - 0.5f && QEKF_INS.accl_norm < 9.8f + 0.5f) + { + QEKF_INS.StableFlag = 1; + } + else + { + QEKF_INS.StableFlag = 0; + } + + // set Q R,过程噪声和观测噪声矩阵 + QEKF_INS.IMU_QuaternionEKF.Q_data[0] = QEKF_INS.Q1 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.Q_data[7] = QEKF_INS.Q1 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.Q_data[14] = QEKF_INS.Q1 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.Q_data[21] = QEKF_INS.Q1 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.Q_data[28] = QEKF_INS.Q2 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.Q_data[35] = QEKF_INS.Q2 * QEKF_INS.dt; + QEKF_INS.IMU_QuaternionEKF.R_data[0] = QEKF_INS.R; + QEKF_INS.IMU_QuaternionEKF.R_data[4] = QEKF_INS.R; + QEKF_INS.IMU_QuaternionEKF.R_data[8] = QEKF_INS.R; + + // 调用kalman_filter.c封装好的函数,注意几个User_Funcx_f的调用 + Kalman_Filter_Update(&QEKF_INS.IMU_QuaternionEKF); + + // 获取融合后的数据,包括四元数和xy零飘值 + QEKF_INS.q[0] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[0]; + QEKF_INS.q[1] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[1]; + QEKF_INS.q[2] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[2]; + QEKF_INS.q[3] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[3]; + QEKF_INS.GyroBias[0] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[4]; + QEKF_INS.GyroBias[1] = QEKF_INS.IMU_QuaternionEKF.FilteredValue[5]; + QEKF_INS.GyroBias[2] = 0; // 大部分时候z轴通天,无法观测yaw的漂移 + + // 利用四元数反解欧拉角 + QEKF_INS.Yaw = atan2f(2.0f * (QEKF_INS.q[0] * QEKF_INS.q[3] + QEKF_INS.q[1] * QEKF_INS.q[2]), 2.0f * (QEKF_INS.q[0] * QEKF_INS.q[0] + QEKF_INS.q[1] * QEKF_INS.q[1]) - 1.0f) * 57.295779513f; + QEKF_INS.Pitch = atan2f(2.0f * (QEKF_INS.q[0] * QEKF_INS.q[1] + QEKF_INS.q[2] * QEKF_INS.q[3]), 2.0f * (QEKF_INS.q[0] * QEKF_INS.q[0] + QEKF_INS.q[3] * QEKF_INS.q[3]) - 1.0f) * 57.295779513f; + QEKF_INS.Roll = asinf(-2.0f * (QEKF_INS.q[1] * QEKF_INS.q[3] - QEKF_INS.q[0] * QEKF_INS.q[2])) * 57.295779513f; + + // get Yaw total, yaw数据可能会超过360,处理一下方便其他功能使用(如小陀螺) + if (QEKF_INS.Yaw - QEKF_INS.YawAngleLast > 180.0f) + { + QEKF_INS.YawRoundCount--; + } + else if (QEKF_INS.Yaw - QEKF_INS.YawAngleLast < -180.0f) + { + QEKF_INS.YawRoundCount++; + } + QEKF_INS.YawTotalAngle = 360.0f * QEKF_INS.YawRoundCount + QEKF_INS.Yaw; + QEKF_INS.YawAngleLast = QEKF_INS.Yaw; + QEKF_INS.UpdateCount++; // 初始化低通滤波用,计数测试用 +} + +/** + * @brief 用于更新线性化后的状态转移矩阵F右上角的一个4x2分块矩阵,稍后用于协方差矩阵P的更新; + * 并对零漂的方差进行限制,防止过度收敛并限幅防止发散 + * + * @param kf + */ +static void IMU_QuaternionEKF_F_Linearization_P_Fading(KalmanFilter_t *kf) +{ + static float q0, q1, q2, q3; + static float qInvNorm; + + q0 = kf->xhatminus_data[0]; + q1 = kf->xhatminus_data[1]; + q2 = kf->xhatminus_data[2]; + q3 = kf->xhatminus_data[3]; + + // quaternion normalize + qInvNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); + for (uint8_t i = 0; i < 4; ++i) + { + kf->xhatminus_data[i] *= qInvNorm; + } + /* F, number with * represent vals to be set + 0 1 2 3 4* 5* + 6 7 8 9 10* 11* + 12 13 14 15 16* 17* + 18 19 20 21 22* 23* + 24 25 26 27 28 29 + 30 31 32 33 34 35 + */ + // set F + kf->F_data[4] = q1 * QEKF_INS.dt / 2; + kf->F_data[5] = q2 * QEKF_INS.dt / 2; + + kf->F_data[10] = -q0 * QEKF_INS.dt / 2; + kf->F_data[11] = q3 * QEKF_INS.dt / 2; + + kf->F_data[16] = -q3 * QEKF_INS.dt / 2; + kf->F_data[17] = -q0 * QEKF_INS.dt / 2; + + kf->F_data[22] = q2 * QEKF_INS.dt / 2; + kf->F_data[23] = -q1 * QEKF_INS.dt / 2; + + // fading filter,防止零飘参数过度收敛 + kf->P_data[28] /= QEKF_INS.lambda; + kf->P_data[35] /= QEKF_INS.lambda; + + // 限幅,防止发散 + if (kf->P_data[28] > 10000) + { + kf->P_data[28] = 10000; + } + if (kf->P_data[35] > 10000) + { + kf->P_data[35] = 10000; + } +} + +/** + * @brief 在工作点处计算观测函数h(x)的Jacobi矩阵H + * + * @param kf + */ +static void IMU_QuaternionEKF_SetH(KalmanFilter_t *kf) +{ + static float doubleq0, doubleq1, doubleq2, doubleq3; + /* H + 0 1 2 3 4 5 + 6 7 8 9 10 11 + 12 13 14 15 16 17 + last two cols are zero + */ + // set H + doubleq0 = 2 * kf->xhatminus_data[0]; + doubleq1 = 2 * kf->xhatminus_data[1]; + doubleq2 = 2 * kf->xhatminus_data[2]; + doubleq3 = 2 * kf->xhatminus_data[3]; + + memset(kf->H_data, 0, sizeof_float * kf->zSize * kf->xhatSize); + + kf->H_data[0] = -doubleq2; + kf->H_data[1] = doubleq3; + kf->H_data[2] = -doubleq0; + kf->H_data[3] = doubleq1; + + kf->H_data[6] = doubleq1; + kf->H_data[7] = doubleq0; + kf->H_data[8] = doubleq3; + kf->H_data[9] = doubleq2; + + kf->H_data[12] = doubleq0; + kf->H_data[13] = -doubleq1; + kf->H_data[14] = -doubleq2; + kf->H_data[15] = doubleq3; +} + +/** + * @brief 利用观测值和先验估计得到最优的后验估计 + * 加入了卡方检验以判断融合加速度的条件是否满足 + * 同时引入发散保护保证恶劣工况下的必要量测更新 + * + * @param kf + */ +static void IMU_QuaternionEKF_xhatUpdate(KalmanFilter_t *kf) +{ + static float q0, q1, q2, q3; + + kf->MatStatus = Matrix_Transpose(&kf->H, &kf->HT); // z|x => x|z + kf->temp_matrix.numRows = kf->H.numRows; + kf->temp_matrix.numCols = kf->Pminus.numCols; + kf->MatStatus = Matrix_Multiply(&kf->H, &kf->Pminus, &kf->temp_matrix); // temp_matrix = H·P'(k) + kf->temp_matrix1.numRows = kf->temp_matrix.numRows; + kf->temp_matrix1.numCols = kf->HT.numCols; + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix, &kf->HT, &kf->temp_matrix1); // temp_matrix1 = H·P'(k)·HT + kf->S.numRows = kf->R.numRows; + kf->S.numCols = kf->R.numCols; + kf->MatStatus = Matrix_Add(&kf->temp_matrix1, &kf->R, &kf->S); // S = H P'(k) HT + R + kf->MatStatus = Matrix_Inverse(&kf->S, &kf->temp_matrix1); // temp_matrix1 = inv(H·P'(k)·HT + R) + + q0 = kf->xhatminus_data[0]; + q1 = kf->xhatminus_data[1]; + q2 = kf->xhatminus_data[2]; + q3 = kf->xhatminus_data[3]; + + kf->temp_vector.numRows = kf->H.numRows; + kf->temp_vector.numCols = 1; + // 计算预测得到的重力加速度方向(通过姿态获取的) + kf->temp_vector_data[0] = 2 * (q1 * q3 - q0 * q2); + kf->temp_vector_data[1] = 2 * (q0 * q1 + q2 * q3); + kf->temp_vector_data[2] = q0 * q0 - q1 * q1 - q2 * q2 + q3 * q3; // temp_vector = h(xhat'(k)) + + // 计算预测值和各个轴的方向余弦 + for (uint8_t i = 0; i < 3; ++i) + { + QEKF_INS.OrientationCosine[i] = acosf(fabsf(kf->temp_vector_data[i])); + } + + // 利用加速度计数据修正 + kf->temp_vector1.numRows = kf->z.numRows; + kf->temp_vector1.numCols = 1; + kf->MatStatus = Matrix_Subtract(&kf->z, &kf->temp_vector, &kf->temp_vector1); // temp_vector1 = z(k) - h(xhat'(k)) + + // chi-square test,卡方检验 + kf->temp_matrix.numRows = kf->temp_vector1.numRows; + kf->temp_matrix.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix1, &kf->temp_vector1, &kf->temp_matrix); // temp_matrix = inv(H·P'(k)·HT + R)·(z(k) - h(xhat'(k))) + kf->temp_vector.numRows = 1; + kf->temp_vector.numCols = kf->temp_vector1.numRows; + kf->MatStatus = Matrix_Transpose(&kf->temp_vector1, &kf->temp_vector); // temp_vector = z(k) - h(xhat'(k))' + kf->MatStatus = Matrix_Multiply(&kf->temp_vector, &kf->temp_matrix, &QEKF_INS.ChiSquare); + // rk is small,filter converged/converging + if (QEKF_INS.ChiSquare_Data[0] < 0.5f * QEKF_INS.ChiSquareTestThreshold) + { + QEKF_INS.ConvergeFlag = 1; + } + // rk is bigger than thre but once converged + if (QEKF_INS.ChiSquare_Data[0] > QEKF_INS.ChiSquareTestThreshold && QEKF_INS.ConvergeFlag) + { + if (QEKF_INS.StableFlag) + { + QEKF_INS.ErrorCount++; // 载体静止时仍无法通过卡方检验 + } + else + { + QEKF_INS.ErrorCount = 0; + } + + if (QEKF_INS.ErrorCount > 50) + { + // 滤波器发散 + QEKF_INS.ConvergeFlag = 0; + kf->SkipEq5 = FALSE; // step-5 is cov mat P updating + } + else + { + // 残差未通过卡方检验 仅预测 + // xhat(k) = xhat'(k) + // P(k) = P'(k) + memcpy(kf->xhat_data, kf->xhatminus_data, sizeof_float * kf->xhatSize); + memcpy(kf->P_data, kf->Pminus_data, sizeof_float * kf->xhatSize * kf->xhatSize); + kf->SkipEq5 = TRUE; // part5 is P updating + return; + } + } + else // if divergent or rk is not that big/acceptable,use adaptive gain + { + // scale adaptive,rk越小则增益越大,否则更相信预测值 + if (QEKF_INS.ChiSquare_Data[0] > 0.1f * QEKF_INS.ChiSquareTestThreshold && QEKF_INS.ConvergeFlag) + { + QEKF_INS.AdaptiveGainScale = (QEKF_INS.ChiSquareTestThreshold - QEKF_INS.ChiSquare_Data[0]) / (0.9f * QEKF_INS.ChiSquareTestThreshold); + } + else + { + QEKF_INS.AdaptiveGainScale = 1; + } + QEKF_INS.ErrorCount = 0; + kf->SkipEq5 = FALSE; + } + + // cal kf-gain K + kf->temp_matrix.numRows = kf->Pminus.numRows; + kf->temp_matrix.numCols = kf->HT.numCols; + kf->MatStatus = Matrix_Multiply(&kf->Pminus, &kf->HT, &kf->temp_matrix); // temp_matrix = P'(k)·HT + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix, &kf->temp_matrix1, &kf->K); + + // implement adaptive + for (uint8_t i = 0; i < kf->K.numRows * kf->K.numCols; ++i) + { + kf->K_data[i] *= QEKF_INS.AdaptiveGainScale; + } + for (uint8_t i = 4; i < 6; ++i) + { + for (uint8_t j = 0; j < 3; ++j) + { + kf->K_data[i * 3 + j] *= QEKF_INS.OrientationCosine[i - 4] / 1.5707963f; // 1 rad + } + } + + kf->temp_vector.numRows = kf->K.numRows; + kf->temp_vector.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->K, &kf->temp_vector1, &kf->temp_vector); // temp_vector = K(k)·(z(k) - H·xhat'(k)) + + // 零漂修正限幅,一般不会有过大的漂移 + if (QEKF_INS.ConvergeFlag) + { + for (uint8_t i = 4; i < 6; ++i) + { + if (kf->temp_vector.pData[i] > 1e-2f * QEKF_INS.dt) + { + kf->temp_vector.pData[i] = 1e-2f * QEKF_INS.dt; + } + if (kf->temp_vector.pData[i] < -1e-2f * QEKF_INS.dt) + { + kf->temp_vector.pData[i] = -1e-2f * QEKF_INS.dt; + } + } + } + + // 不修正yaw轴数据 + kf->temp_vector.pData[3] = 0; + kf->MatStatus = Matrix_Add(&kf->xhatminus, &kf->temp_vector, &kf->xhat); +} + +/** + * @brief EKF观测环节,其实就是把数据复制一下 + * + * @param kf kf类型定义 + */ +static void IMU_QuaternionEKF_Observe(KalmanFilter_t *kf) +{ + memcpy(IMU_QuaternionEKF_P, kf->P_data, sizeof(IMU_QuaternionEKF_P)); + memcpy(IMU_QuaternionEKF_K, kf->K_data, sizeof(IMU_QuaternionEKF_K)); + memcpy(IMU_QuaternionEKF_H, kf->H_data, sizeof(IMU_QuaternionEKF_H)); +} + +/** + * @brief 自定义1/sqrt(x),速度更快 + * + * @param x x + * @return float + */ +static float invSqrt(float x) +{ + float halfx = 0.5f * x; + float y = x; + long i = *(long *)&y; + i = 0x5f375a86 - (i >> 1); + y = *(float *)&i; + y = y * (1.5f - (halfx * y * y)); + return y; +} diff --git a/modules/algorithm/QuaternionEKF.h b/modules/algorithm/QuaternionEKF.h new file mode 100644 index 0000000..26ab0a9 --- /dev/null +++ b/modules/algorithm/QuaternionEKF.h @@ -0,0 +1,75 @@ +/** + ****************************************************************************** + * @file QuaternionEKF.h + * @author Wang Hongxi + * @version V1.2.0 + * @date 2022/3/8 + * @brief attitude update with gyro bias estimate and chi-square test + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#ifndef _QUAT_EKF_H +#define _QUAT_EKF_H +#include "kalman_filter.h" + +/* boolean type definitions */ +#ifndef TRUE +#define TRUE 1 /**< boolean true */ +#endif + +#ifndef FALSE +#define FALSE 0 /**< boolean fails */ +#endif + +typedef struct +{ + uint8_t Initialized; + KalmanFilter_t IMU_QuaternionEKF; + uint8_t ConvergeFlag; + uint8_t StableFlag; + uint64_t ErrorCount; + uint64_t UpdateCount; + + float q[4]; // 四元数估计值 + float GyroBias[3]; // 陀螺仪零偏估计值 + + float Gyro[3]; + float Accel[3]; + + float OrientationCosine[3]; + + float accLPFcoef; + float gyro_norm; + float accl_norm; + float AdaptiveGainScale; + + float Roll; + float Pitch; + float Yaw; + + float YawTotalAngle; + + float Q1; // 四元数更新过程噪声 + float Q2; // 陀螺仪零偏过程噪声 + float R; // 加速度计量测噪声 + + float dt; // 姿态更新周期 + mat ChiSquare; + float ChiSquare_Data[1]; // 卡方检验检测函数 + float ChiSquareTestThreshold; // 卡方检验阈值 + float lambda; // 渐消因子 + + int16_t YawRoundCount; + + float YawAngleLast; +} QEKF_INS_t; + +extern QEKF_INS_t QEKF_INS; +extern float chiSquare; +extern float ChiSquareTestThreshold; +void IMU_QuaternionEKF_Init(float* init_quaternion,float process_noise1, float process_noise2, float measure_noise, float lambda, float lpf); +void IMU_QuaternionEKF_Update(float gx, float gy, float gz, float ax, float ay, float az, float dt); + +#endif diff --git a/modules/algorithm/algorithm.md b/modules/algorithm/algorithm.md new file mode 100644 index 0000000..d2007ad --- /dev/null +++ b/modules/algorithm/algorithm.md @@ -0,0 +1,29 @@ +# algorithms + ++ + + + + + ++ ++ + + ++ ++ + + + + + + + + + ++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ++ + + + + + + + + + ++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ++ + + + + + + ++ ++ + + + + + + ++ ++ + + + + + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + ++ + +neozng1@hnu.edu.cn
+ +> TODO: +> 1. 实现麦轮和全向轮的速度解算 +> 2. 实现一些通用的滤波器,如指数平均,窗平均,低通等 + +## 总览和使用 + +module层的algorithm提供了一些供其他模块以及app的应用层使用的算法,包括: + +1. PID控制器`controller.h` +2. crc8 crc16循环冗余校验 +3. 卡尔曼滤波器`kalman_filter.h`,可以通过用户自定义函数配置为扩展卡尔曼滤波 +4. `LQR.h`,线性二次型调节器 +5. `QuaterninoEKF.h`,用于`ins_task`的四元数姿态解算和扩展卡尔曼滤波融合 +6. `user_lib.h`,一些通用的函数,包括限幅、数据类型转换、角度弧度转换、快速符号判断以及优化开方等功能。多个模块都会使用的、不好区分的函数可以放置于此 + +## 代码结构 + +.c 为算法的实现,.h为算法对外接口的头文件 + + + +在编写应用的时候,你基本不会使用这里的函数,或是修改其实现。 + +若发现bug或需要增加功能,联系组长讨论。 + diff --git a/modules/algorithm/controller.c b/modules/algorithm/controller.c new file mode 100644 index 0000000..7d35614 --- /dev/null +++ b/modules/algorithm/controller.c @@ -0,0 +1,208 @@ +/** + * @file controller.c + * @author wanghongxi + * @author modified by neozng + * @brief PID控制器定义 + * @version beta + * @date 2022-11-01 + * + * @copyrightCopyright (c) 2022 HNU YueLu EC all rights reserved + */ +#include "controller.h" +#include "memory.h" + +/* ----------------------------下面是pid优化环节的实现---------------------------- */ + +// 梯形积分 +static void f_Trapezoid_Intergral(PIDInstance *pid) +{ + // 计算梯形的面积,(上底+下底)*高/2 + pid->ITerm = pid->Ki * ((pid->Err + pid->Last_Err) / 2) * pid->dt; +} + +// 变速积分(误差小时积分作用更强) +static void f_Changing_Integration_Rate(PIDInstance *pid) +{ + if (pid->Err * pid->Iout > 0) + { + // 积分呈累积趋势 + if (abs(pid->Err) <= pid->CoefB) + return; // Full integral + if (abs(pid->Err) <= (pid->CoefA + pid->CoefB)) + pid->ITerm *= (pid->CoefA - abs(pid->Err) + pid->CoefB) / pid->CoefA; + else // 最大阈值,不使用积分 + pid->ITerm = 0; + } +} + +static void f_Integral_Limit(PIDInstance *pid) +{ + static float temp_Output, temp_Iout; + temp_Iout = pid->Iout + pid->ITerm; + temp_Output = pid->Pout + pid->Iout + pid->Dout; + if (abs(temp_Output) > pid->MaxOut) + { + if (pid->Err * pid->Iout > 0) // 积分却还在累积 + { + pid->ITerm = 0; // 当前积分项置零 + } + } + + if (temp_Iout > pid->IntegralLimit) + { + pid->ITerm = 0; + pid->Iout = pid->IntegralLimit; + } + if (temp_Iout < -pid->IntegralLimit) + { + pid->ITerm = 0; + pid->Iout = -pid->IntegralLimit; + } +} + +// 微分先行(仅使用反馈值而不计参考输入的微分) +static void f_Derivative_On_Measurement(PIDInstance *pid) +{ + pid->Dout = pid->Kd * (pid->Last_Measure - pid->Measure) / pid->dt; +} + +// 微分滤波(采集微分时,滤除高频噪声) +static void f_Derivative_Filter(PIDInstance *pid) +{ + pid->Dout = pid->Dout * pid->dt / (pid->Derivative_LPF_RC + pid->dt) + + pid->Last_Dout * pid->Derivative_LPF_RC / (pid->Derivative_LPF_RC + pid->dt); +} + +// 输出滤波 +static void f_Output_Filter(PIDInstance *pid) +{ + pid->Output = pid->Output * pid->dt / (pid->Output_LPF_RC + pid->dt) + + pid->Last_Output * pid->Output_LPF_RC / (pid->Output_LPF_RC + pid->dt); +} + +// 输出限幅 +static void f_Output_Limit(PIDInstance *pid) +{ + if (pid->Output > pid->MaxOut) + { + pid->Output = pid->MaxOut; + } + if (pid->Output < -(pid->MaxOut)) + { + pid->Output = -(pid->MaxOut); + } +} + +// 电机堵转检测 +static void f_PID_ErrorHandle(PIDInstance *pid) +{ + /*Motor Blocked Handle*/ + if (fabsf(pid->Output) < pid->MaxOut * 0.001f || fabsf(pid->Ref) < 0.0001f) + return; + + if ((fabsf(pid->Ref - pid->Measure) / fabsf(pid->Ref)) > 0.95f) + { + // Motor blocked counting + pid->ERRORHandler.ERRORCount++; + } + else + { + pid->ERRORHandler.ERRORCount = 0; + } + + if (pid->ERRORHandler.ERRORCount > 500) + { + // Motor blocked over 1000times + pid->ERRORHandler.ERRORType = PID_MOTOR_BLOCKED_ERROR; + } +} + +/* ---------------------------下面是PID的外部算法接口--------------------------- */ + +/** + * @brief 初始化PID,设置参数和启用的优化环节,将其他数据置零 + * + * @param pid PID实例 + * @param config PID初始化设置 + */ +void PIDInit(PIDInstance *pid, PID_Init_Config_s *config) +{ + // config的数据和pid的部分数据是连续且相同的的,所以可以直接用memcpy + // @todo: 不建议这样做,可扩展性差,不知道的开发者可能会误以为pid和config是同一个结构体 + // 后续修改为逐个赋值 + memset(pid, 0, sizeof(PIDInstance)); + // utilize the quality of struct that its memeory is continuous + memcpy(pid, config, sizeof(PID_Init_Config_s)); + // set rest of memory to 0 + DWT_GetDeltaT(&pid->DWT_CNT); +} + +/** + * @brief PID计算 + * @param[in] PID结构体 + * @param[in] 测量值 + * @param[in] 期望值 + * @retval 返回空 + */ +float PIDCalculate(PIDInstance *pid, float measure, float ref) +{ + // 堵转检测 + if (pid->Improve & PID_ErrorHandle) + f_PID_ErrorHandle(pid); + + pid->dt = DWT_GetDeltaT(&pid->DWT_CNT); // 获取两次pid计算的时间间隔,用于积分和微分 + + // 保存上次的测量值和误差,计算当前error + pid->Measure = measure; + pid->Ref = ref; + pid->Err = pid->Ref - pid->Measure; + + // 如果在死区外,则计算PID + if (abs(pid->Err) > pid->DeadBand) + { + // 基本的pid计算,使用位置式 + pid->Pout = pid->Kp * pid->Err; + pid->ITerm = pid->Ki * pid->Err * pid->dt; + pid->Dout = pid->Kd * (pid->Err - pid->Last_Err) / pid->dt; + + // 梯形积分 + if (pid->Improve & PID_Trapezoid_Intergral) + f_Trapezoid_Intergral(pid); + // 变速积分 + if (pid->Improve & PID_ChangingIntegrationRate) + f_Changing_Integration_Rate(pid); + // 微分先行 + if (pid->Improve & PID_Derivative_On_Measurement) + f_Derivative_On_Measurement(pid); + // 微分滤波器 + if (pid->Improve & PID_DerivativeFilter) + f_Derivative_Filter(pid); + // 积分限幅 + if (pid->Improve & PID_Integral_Limit) + f_Integral_Limit(pid); + + pid->Iout += pid->ITerm; // 累加积分 + pid->Output = pid->Pout + pid->Iout + pid->Dout; // 计算输出 + + // 输出滤波 + if (pid->Improve & PID_OutputFilter) + f_Output_Filter(pid); + + // 输出限幅 + f_Output_Limit(pid); + } + else // 进入死区, 则清空积分和输出 + { + pid->Output = 0; + pid->ITerm = 0; + } + + // 保存当前数据,用于下次计算 + pid->Last_Measure = pid->Measure; + pid->Last_Output = pid->Output; + pid->Last_Dout = pid->Dout; + pid->Last_Err = pid->Err; + pid->Last_ITerm = pid->ITerm; + + return pid->Output; +} \ No newline at end of file diff --git a/modules/algorithm/controller.h b/modules/algorithm/controller.h new file mode 100644 index 0000000..2a871ea --- /dev/null +++ b/modules/algorithm/controller.h @@ -0,0 +1,136 @@ +/** + ****************************************************************************** + * @file controller.h + * @author Wang Hongxi + * @version V1.1.3 + * @date 2021/7/3 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#ifndef _CONTROLLER_H +#define _CONTROLLER_H + +#include "main.h" +#include "stdint.h" +#include "memory.h" +#include "stdlib.h" +#include "bsp_dwt.h" +#include "arm_math.h" +#include+ +#ifndef abs +#define abs(x) ((x > 0) ? x : -x) +#endif + +// PID 优化环节使能标志位,通过位与可以判断启用的优化环节;也可以改成位域的形式 +typedef enum +{ + PID_IMPROVE_NONE = 0b00000000, // 0000 0000 + PID_Integral_Limit = 0b00000001, // 0000 0001 + PID_Derivative_On_Measurement = 0b00000010, // 0000 0010 + PID_Trapezoid_Intergral = 0b00000100, // 0000 0100 + PID_Proportional_On_Measurement = 0b00001000, // 0000 1000 + PID_OutputFilter = 0b00010000, // 0001 0000 + PID_ChangingIntegrationRate = 0b00100000, // 0010 0000 + PID_DerivativeFilter = 0b01000000, // 0100 0000 + PID_ErrorHandle = 0b10000000, // 1000 0000 +} PID_Improvement_e; + +/* PID 报错类型枚举*/ +typedef enum errorType_e +{ + PID_ERROR_NONE = 0x00U, + PID_MOTOR_BLOCKED_ERROR = 0x01U +} ErrorType_e; + +typedef struct +{ + uint64_t ERRORCount; + ErrorType_e ERRORType; +} PID_ErrorHandler_t; + +/* PID结构体 */ +typedef struct +{ + //---------------------------------- init config block + // config parameter + float Kp; + float Ki; + float Kd; + float MaxOut; + float DeadBand; + + // improve parameter + PID_Improvement_e Improve; + float IntegralLimit; // 积分限幅 + float CoefA; // 变速积分 For Changing Integral + float CoefB; // 变速积分 ITerm = Err*((A-abs(err)+B)/A) when B<|err|> 8) ^ crc_tab16[(crc ^ (uint16_t) *ptr++) & 0x00FF]; +// } +// return crc; + uint8_t ch_data; + uint16_t wCRC = 0xFFFF; + + if (input_str == NULL) return 0xFFFF; + while (num_bytes--) { + ch_data = *input_str++; + (wCRC) = + ((uint16_t)(wCRC) >> 8) ^ crc_tab16[((uint16_t)(wCRC) ^ (uint16_t)(ch_data)) & 0x00ff]; + } + return wCRC; +} + +/* + * uint16_t crc_modbus( const unsigned char *input_str, size_t num_bytes ); + * + *函数crc_modbus()一次计算16位modbus循环冗余校验 + *一个字节字符串,其开头已被传递给函数。这 + *要检查的字节数也是一个参数。 + */ + +uint16_t crc_modbus(const uint8_t *input_str, uint16_t num_bytes) { + uint16_t crc; + const uint8_t *ptr; + uint16_t a; + + if (!crc_tab16_init) + init_crc16_tab(); + + crc = CRC_START_MODBUS; + ptr = input_str; + if (ptr != NULL) + for (a = 0; a < num_bytes; a++) { + + crc = (crc >> 8) ^ crc_tab16[(crc ^ (uint16_t) *ptr++) & 0x00FF]; + } + return crc; +} + +/* + * uint16_t update_crc_16( uint16_t crc, unsigned char c ); + * + *函数update_crc_16()根据 + *前一个循环冗余校验值和下一个要检查的数据字节。 + */ +uint16_t update_crc_16(uint16_t crc, uint8_t c) { + if (!crc_tab16_init) + init_crc16_tab(); + return (crc >> 8) ^ crc_tab16[(crc ^ (uint16_t) c) & 0x00FF]; +} + +/* + * static void init_crc16_tab( void ); + * + *为了获得最佳性能,使用CRC16例程查找带有值的表 + *可以直接在异或算法中使用的算法。 + *查找表首次由init_crc16_tab()例程计算 + *调用循环冗余校验函数。 + */ +void init_crc16_tab(void) { + uint16_t i; + uint16_t j; + uint16_t crc; + uint16_t c; + for (i = 0; i < 256; i++) { + crc = 0; + c = i; + for (j = 0; j < 8; j++) { + if ((crc ^ c) & 0x0001) + crc = (crc >> 1) ^ CRC_POLY_16; + else + crc = crc >> 1; + c = c >> 1; + } + crc_tab16[i] = crc; + } + crc_tab16_init = 1; +} + +uint32_t VerifyCRC16CheckSum(uint8_t *pchMessage, uint32_t dwLength) { + uint16_t wExpected = 0; + if ((pchMessage == NULL) || (dwLength <= 2)) { + return 0; + } + wExpected = crc_16(pchMessage, dwLength - 2); + return ((wExpected & 0xff) == pchMessage[dwLength - 2] && ((wExpected >> 8) & 0xff) == pchMessage[dwLength - 1]); +} diff --git a/modules/algorithm/crc16.h b/modules/algorithm/crc16.h new file mode 100644 index 0000000..cd587f2 --- /dev/null +++ b/modules/algorithm/crc16.h @@ -0,0 +1,14 @@ +#ifndef __CRC16_H +#define __CRC16_H +#include "main.h" + +#define CRC_START_16 0xFFFF +#define CRC_START_MODBUS 0xFFFF +#define CRC_POLY_16 0xA001 + +uint16_t crc_16(const uint8_t *input_str, uint16_t num_bytes); +uint16_t crc_modbus(const uint8_t *input_str, uint16_t num_bytes); +uint16_t update_crc_16(uint16_t crc, uint8_t c); +void init_crc16_tab(void); +uint32_t VerifyCRC16CheckSum(uint8_t *pchMessage, uint32_t dwLength); +#endif diff --git a/modules/algorithm/crc8.c b/modules/algorithm/crc8.c new file mode 100644 index 0000000..20fe5df --- /dev/null +++ b/modules/algorithm/crc8.c @@ -0,0 +1,61 @@ +#include "crc8.h" + +/* + * static uint8_t sht75_crc_table[]; + * + * The SHT75 humidity sensor is capable of calculating an 8 bit CRC checksum to + * ensure data integrity. The lookup table crc_table[] is used to recalculate + * the CRC. + */ +static uint8_t sht75_crc_table[] = + { + 0, 49, 98, 83, 196, 245, 166, 151, 185, 136, 219, 234, 125, 76, 31, 46, + 67, 114, 33, 16, 135, 182, 229, 212, 250, 203, 152, 169, 62, 15, 92, 109, + 134, 183, 228, 213, 66, 115, 32, 17, 63, 14, 93, 108, 251, 202, 153, 168, + 197, 244, 167, 150, 1, 48, 99, 82, 124, 77, 30, 47, 184, 137, 218, 235, + 61, 12, 95, 110, 249, 200, 155, 170, 132, 181, 230, 215, 64, 113, 34, 19, + 126, 79, 28, 45, 186, 139, 216, 233, 199, 246, 165, 148, 3, 50, 97, 80, + 187, 138, 217, 232, 127, 78, 29, 44, 2, 51, 96, 81, 198, 247, 164, 149, + 248, 201, 154, 171, 60, 13, 94, 111, 65, 112, 35, 18, 133, 180, 231, 214, + 122, 75, 24, 41, 190, 143, 220, 237, 195, 242, 161, 144, 7, 54, 101, 84, + 57, 8, 91, 106, 253, 204, 159, 174, 128, 177, 226, 211, 68, 117, 38, 23, + 252, 205, 158, 175, 56, 9, 90, 107, 69, 116, 39, 22, 129, 176, 227, 210, + 191, 142, 221, 236, 123, 74, 25, 40, 6, 55, 100, 85, 194, 243, 160, 145, + 71, 118, 37, 20, 131, 178, 225, 208, 254, 207, 156, 173, 58, 11, 88, 105, + 4, 53, 102, 87, 192, 241, 162, 147, 189, 140, 223, 238, 121, 72, 27, 42, + 193, 240, 163, 146, 5, 52, 103, 86, 120, 73, 26, 43, 188, 141, 222, 239, + 130, 179, 224, 209, 70, 119, 36, 21, 59, 10, 89, 104, 255, 206, 157, 172}; + +/* + * uint8_t crc_8( const unsigned char *input_str, size_t num_bytes ); + * + *函数crc_8()计算输入字符串的8位宽crc + *给定长度。 + */ +uint8_t crc_8(const uint8_t *input_str, uint16_t num_bytes) +{ + uint16_t a; + uint8_t crc; + const uint8_t *ptr; + + crc = CRC_START_8; + ptr = input_str; + if (ptr != NULL) + for (a = 0; a < num_bytes; a++) + { + crc = sht75_crc_table[(*ptr++) ^ crc]; + } + return crc; +} + +/* + * uint8_t update_crc_8( unsigned char crc, unsigned char val ); + * + *给定一个数据字节和循环冗余校验值的前一个值 + *update_crc_8()计算并返回数据的新的实际crc值 + */ + +uint8_t update_crc_8(uint8_t crc, uint8_t val) +{ + return sht75_crc_table[val ^ crc]; +} diff --git a/modules/algorithm/crc8.h b/modules/algorithm/crc8.h new file mode 100644 index 0000000..278c70f --- /dev/null +++ b/modules/algorithm/crc8.h @@ -0,0 +1,11 @@ +#ifndef __CRC8_H +#define __CRC8_H + +#include "main.h" + +#define CRC_START_8 0x00 + +uint8_t crc_8(const uint8_t *input_str, uint16_t num_bytes); +uint8_t update_crc_8(uint8_t crc, uint8_t val); + +#endif diff --git a/modules/algorithm/kalman_filter.c b/modules/algorithm/kalman_filter.c new file mode 100644 index 0000000..4f5460f --- /dev/null +++ b/modules/algorithm/kalman_filter.c @@ -0,0 +1,480 @@ +/** + ****************************************************************************** + * @file kalman filter.c + * @author Wang Hongxi + * @version V1.2.2 + * @date 2022/1/8 + * @brief C implementation of kalman filter + ****************************************************************************** + * @attention + * 该卡尔曼滤波器可以在传感器采样频率不同的情况下,动态调整矩阵H R和K的维数与数值。 + * This implementation of kalman filter can dynamically adjust dimension and + * value of matrix H R and K according to the measurement validity under any + * circumstance that the sampling rate of component sensors are different. + * + * 因此矩阵H和R的初始化会与矩阵P A和Q有所不同。另外的,在初始化量测向量z时需要额外写 + * 入传感器量测所对应的状态与这个量测的方式,详情请见例程 + * Therefore, the initialization of matrix P, F, and Q is sometimes different + * from that of matrices H R. when initialization. Additionally, the corresponding + * state and the method of the measurement should be provided when initializing + * measurement vector z. For more details, please see the example. + * + * 若不需要动态调整量测向量z,可简单将结构体中的Use_Auto_Adjustment初始化为0,并像初 + * 始化矩阵P那样用常规方式初始化z H R即可。 + * If automatic adjustment is not required, assign zero to the UseAutoAdjustment + * and initialize z H R in the normal way as matrix P. + * + * 要求量测向量z与控制向量u在传感器回调函数中更新。整数0意味着量测无效,即自上次卡尔曼 + * 滤波更新后无传感器数据更新。因此量测向量z与控制向量u会在卡尔曼滤波更新过程中被清零 + * MeasuredVector and ControlVector are required to be updated in the sensor + * callback function. Integer 0 in measurement vector z indicates the invalidity + * of current measurement, so MeasuredVector and ControlVector will be reset + * (to 0) during each update. + * + * 此外,矩阵P过度收敛后滤波器将难以再适应状态的缓慢变化,从而产生滤波估计偏差。该算法 + * 通过限制矩阵P最小值的方法,可有效抑制滤波器的过度收敛,详情请见例程。 + * Additionally, the excessive convergence of matrix P will make filter incapable + * of adopting the slowly changing state. This implementation can effectively + * suppress filter excessive convergence through boundary limiting for matrix P. + * For more details, please see the example. + * + * @example: + * x = + * | height | + * | velocity | + * |acceleration| + * + * KalmanFilter_t Height_KF; + * + * void INS_Task_Init(void) + * { + * static float P_Init[9] = + * { + * 10, 0, 0, + * 0, 30, 0, + * 0, 0, 10, + * }; + * static float F_Init[9] = + * { + * 1, dt, 0.5*dt*dt, + * 0, 1, dt, + * 0, 0, 1, + * }; + * static float Q_Init[9] = + * { + * 0.25*dt*dt*dt*dt, 0.5*dt*dt*dt, 0.5*dt*dt, + * 0.5*dt*dt*dt, dt*dt, dt, + * 0.5*dt*dt, dt, 1, + * }; + * + * // 设置最小方差 + * static float state_min_variance[3] = {0.03, 0.005, 0.1}; + * + * // 开启自动调整 + * Height_KF.UseAutoAdjustment = 1; + * + * // 气压测得高度 GPS测得高度 加速度计测得z轴运动加速度 + * static uint8_t measurement_reference[3] = {1, 1, 3} + * + * static float measurement_degree[3] = {1, 1, 1} + * // 根据measurement_reference与measurement_degree生成H矩阵如下(在当前周期全部测量数据有效情况下) + * |1 0 0| + * |1 0 0| + * |0 0 1| + * + * static float mat_R_diagonal_elements = {30, 25, 35} + * //根据mat_R_diagonal_elements生成R矩阵如下(在当前周期全部测量数据有效情况下) + * |30 0 0| + * | 0 25 0| + * | 0 0 35| + * + * Kalman_Filter_Init(&Height_KF, 3, 0, 3); + * + * // 设置矩阵值 + * memcpy(Height_KF.P_data, P_Init, sizeof(P_Init)); + * memcpy(Height_KF.F_data, F_Init, sizeof(F_Init)); + * memcpy(Height_KF.Q_data, Q_Init, sizeof(Q_Init)); + * memcpy(Height_KF.MeasurementMap, measurement_reference, sizeof(measurement_reference)); + * memcpy(Height_KF.MeasurementDegree, measurement_degree, sizeof(measurement_degree)); + * memcpy(Height_KF.MatR_DiagonalElements, mat_R_diagonal_elements, sizeof(mat_R_diagonal_elements)); + * memcpy(Height_KF.StateMinVariance, state_min_variance, sizeof(state_min_variance)); + * } + * + * void INS_Task(void const *pvParameters) + * { + * // 循环更新 + * Kalman_Filter_Update(&Height_KF); + * vTaskDelay(ts); + * } + * + * // 测量数据更新应按照以下形式 即向MeasuredVector赋值 + * void Barometer_Read_Over(void) + * { + * ...... + * INS_KF.MeasuredVector[0] = baro_height; + * } + * void GPS_Read_Over(void) + * { + * ...... + * INS_KF.MeasuredVector[1] = GPS_height; + * } + * void Acc_Data_Process(void) + * { + * ...... + * INS_KF.MeasuredVector[2] = acc.z; + * } + ****************************************************************************** + */ + +#include "kalman_filter.h" + +uint16_t sizeof_float, sizeof_double; + +static void H_K_R_Adjustment(KalmanFilter_t *kf); + +/** + * @brief 初始化矩阵维度信息并为矩阵分配空间 + * + * @param kf kf类型定义 + * @param xhatSize 状态变量维度 + * @param uSize 控制变量维度 + * @param zSize 观测量维度 + */ +void Kalman_Filter_Init(KalmanFilter_t *kf, uint8_t xhatSize, uint8_t uSize, uint8_t zSize) +{ + sizeof_float = sizeof(float); + sizeof_double = sizeof(double); + + kf->xhatSize = xhatSize; + kf->uSize = uSize; + kf->zSize = zSize; + + kf->MeasurementValidNum = 0; + + // measurement flags + kf->MeasurementMap = (uint8_t *)user_malloc(sizeof(uint8_t) * zSize); + memset(kf->MeasurementMap, 0, sizeof(uint8_t) * zSize); + kf->MeasurementDegree = (float *)user_malloc(sizeof_float * zSize); + memset(kf->MeasurementDegree, 0, sizeof_float * zSize); + kf->MatR_DiagonalElements = (float *)user_malloc(sizeof_float * zSize); + memset(kf->MatR_DiagonalElements, 0, sizeof_float * zSize); + kf->StateMinVariance = (float *)user_malloc(sizeof_float * xhatSize); + memset(kf->StateMinVariance, 0, sizeof_float * xhatSize); + kf->temp = (uint8_t *)user_malloc(sizeof(uint8_t) * zSize); + memset(kf->temp, 0, sizeof(uint8_t) * zSize); + + // filter data + kf->FilteredValue = (float *)user_malloc(sizeof_float * xhatSize); + memset(kf->FilteredValue, 0, sizeof_float * xhatSize); + kf->MeasuredVector = (float *)user_malloc(sizeof_float * zSize); + memset(kf->MeasuredVector, 0, sizeof_float * zSize); + kf->ControlVector = (float *)user_malloc(sizeof_float * uSize); + memset(kf->ControlVector, 0, sizeof_float * uSize); + + // xhat x(k|k) + kf->xhat_data = (float *)user_malloc(sizeof_float * xhatSize); + memset(kf->xhat_data, 0, sizeof_float * xhatSize); + Matrix_Init(&kf->xhat, kf->xhatSize, 1, (float *)kf->xhat_data); + + // xhatminus x(k|k-1) + kf->xhatminus_data = (float *)user_malloc(sizeof_float * xhatSize); + memset(kf->xhatminus_data, 0, sizeof_float * xhatSize); + Matrix_Init(&kf->xhatminus, kf->xhatSize, 1, (float *)kf->xhatminus_data); + + if (uSize != 0) + { + // control vector u + kf->u_data = (float *)user_malloc(sizeof_float * uSize); + memset(kf->u_data, 0, sizeof_float * uSize); + Matrix_Init(&kf->u, kf->uSize, 1, (float *)kf->u_data); + } + + // measurement vector z + kf->z_data = (float *)user_malloc(sizeof_float * zSize); + memset(kf->z_data, 0, sizeof_float * zSize); + Matrix_Init(&kf->z, kf->zSize, 1, (float *)kf->z_data); + + // covariance matrix P(k|k) + kf->P_data = (float *)user_malloc(sizeof_float * xhatSize * xhatSize); + memset(kf->P_data, 0, sizeof_float * xhatSize * xhatSize); + Matrix_Init(&kf->P, kf->xhatSize, kf->xhatSize, (float *)kf->P_data); + + // create covariance matrix P(k|k-1) + kf->Pminus_data = (float *)user_malloc(sizeof_float * xhatSize * xhatSize); + memset(kf->Pminus_data, 0, sizeof_float * xhatSize * xhatSize); + Matrix_Init(&kf->Pminus, kf->xhatSize, kf->xhatSize, (float *)kf->Pminus_data); + + // state transition matrix F FT + kf->F_data = (float *)user_malloc(sizeof_float * xhatSize * xhatSize); + kf->FT_data = (float *)user_malloc(sizeof_float * xhatSize * xhatSize); + memset(kf->F_data, 0, sizeof_float * xhatSize * xhatSize); + memset(kf->FT_data, 0, sizeof_float * xhatSize * xhatSize); + Matrix_Init(&kf->F, kf->xhatSize, kf->xhatSize, (float *)kf->F_data); + Matrix_Init(&kf->FT, kf->xhatSize, kf->xhatSize, (float *)kf->FT_data); + + if (uSize != 0) + { + // control matrix B + kf->B_data = (float *)user_malloc(sizeof_float * xhatSize * uSize); + memset(kf->B_data, 0, sizeof_float * xhatSize * uSize); + Matrix_Init(&kf->B, kf->xhatSize, kf->uSize, (float *)kf->B_data); + } + + // measurement matrix H + kf->H_data = (float *)user_malloc(sizeof_float * zSize * xhatSize); + kf->HT_data = (float *)user_malloc(sizeof_float * xhatSize * zSize); + memset(kf->H_data, 0, sizeof_float * zSize * xhatSize); + memset(kf->HT_data, 0, sizeof_float * xhatSize * zSize); + Matrix_Init(&kf->H, kf->zSize, kf->xhatSize, (float *)kf->H_data); + Matrix_Init(&kf->HT, kf->xhatSize, kf->zSize, (float *)kf->HT_data); + + // process noise covariance matrix Q + kf->Q_data = (float *)user_malloc(sizeof_float * xhatSize * xhatSize); + memset(kf->Q_data, 0, sizeof_float * xhatSize * xhatSize); + Matrix_Init(&kf->Q, kf->xhatSize, kf->xhatSize, (float *)kf->Q_data); + + // measurement noise covariance matrix R + kf->R_data = (float *)user_malloc(sizeof_float * zSize * zSize); + memset(kf->R_data, 0, sizeof_float * zSize * zSize); + Matrix_Init(&kf->R, kf->zSize, kf->zSize, (float *)kf->R_data); + + // kalman gain K + kf->K_data = (float *)user_malloc(sizeof_float * xhatSize * zSize); + memset(kf->K_data, 0, sizeof_float * xhatSize * zSize); + Matrix_Init(&kf->K, kf->xhatSize, kf->zSize, (float *)kf->K_data); + + kf->S_data = (float *)user_malloc(sizeof_float * kf->xhatSize * kf->xhatSize); + kf->temp_matrix_data = (float *)user_malloc(sizeof_float * kf->xhatSize * kf->xhatSize); + kf->temp_matrix_data1 = (float *)user_malloc(sizeof_float * kf->xhatSize * kf->xhatSize); + kf->temp_vector_data = (float *)user_malloc(sizeof_float * kf->xhatSize); + kf->temp_vector_data1 = (float *)user_malloc(sizeof_float * kf->xhatSize); + Matrix_Init(&kf->S, kf->xhatSize, kf->xhatSize, (float *)kf->S_data); + Matrix_Init(&kf->temp_matrix, kf->xhatSize, kf->xhatSize, (float *)kf->temp_matrix_data); + Matrix_Init(&kf->temp_matrix1, kf->xhatSize, kf->xhatSize, (float *)kf->temp_matrix_data1); + Matrix_Init(&kf->temp_vector, kf->xhatSize, 1, (float *)kf->temp_vector_data); + Matrix_Init(&kf->temp_vector1, kf->xhatSize, 1, (float *)kf->temp_vector_data1); + + kf->SkipEq1 = 0; + kf->SkipEq2 = 0; + kf->SkipEq3 = 0; + kf->SkipEq4 = 0; + kf->SkipEq5 = 0; +} + +void Kalman_Filter_Measure(KalmanFilter_t *kf) +{ + // 矩阵H K R根据量测情况自动调整 + // matrix H K R auto adjustment + if (kf->UseAutoAdjustment != 0) + H_K_R_Adjustment(kf); + else + { + memcpy(kf->z_data, kf->MeasuredVector, sizeof_float * kf->zSize); + memset(kf->MeasuredVector, 0, sizeof_float * kf->zSize); + } + + memcpy(kf->u_data, kf->ControlVector, sizeof_float * kf->uSize); +} + +void Kalman_Filter_xhatMinusUpdate(KalmanFilter_t *kf) +{ + if (!kf->SkipEq1) + { + if (kf->uSize > 0) + { + kf->temp_vector.numRows = kf->xhatSize; + kf->temp_vector.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->F, &kf->xhat, &kf->temp_vector); + kf->temp_vector1.numRows = kf->xhatSize; + kf->temp_vector1.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->B, &kf->u, &kf->temp_vector1); + kf->MatStatus = Matrix_Add(&kf->temp_vector, &kf->temp_vector1, &kf->xhatminus); + } + else + { + kf->MatStatus = Matrix_Multiply(&kf->F, &kf->xhat, &kf->xhatminus); + } + } +} + +void Kalman_Filter_PminusUpdate(KalmanFilter_t *kf) +{ + if (!kf->SkipEq2) + { + kf->MatStatus = Matrix_Transpose(&kf->F, &kf->FT); + kf->MatStatus = Matrix_Multiply(&kf->F, &kf->P, &kf->Pminus); + kf->temp_matrix.numRows = kf->Pminus.numRows; + kf->temp_matrix.numCols = kf->FT.numCols; + kf->MatStatus = Matrix_Multiply(&kf->Pminus, &kf->FT, &kf->temp_matrix); // temp_matrix = F P(k-1) FT + kf->MatStatus = Matrix_Add(&kf->temp_matrix, &kf->Q, &kf->Pminus); + } +} +void Kalman_Filter_SetK(KalmanFilter_t *kf) +{ + if (!kf->SkipEq3) + { + kf->MatStatus = Matrix_Transpose(&kf->H, &kf->HT); // z|x => x|z + kf->temp_matrix.numRows = kf->H.numRows; + kf->temp_matrix.numCols = kf->Pminus.numCols; + kf->MatStatus = Matrix_Multiply(&kf->H, &kf->Pminus, &kf->temp_matrix); // temp_matrix = H·P'(k) + kf->temp_matrix1.numRows = kf->temp_matrix.numRows; + kf->temp_matrix1.numCols = kf->HT.numCols; + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix, &kf->HT, &kf->temp_matrix1); // temp_matrix1 = H·P'(k)·HT + kf->S.numRows = kf->R.numRows; + kf->S.numCols = kf->R.numCols; + kf->MatStatus = Matrix_Add(&kf->temp_matrix1, &kf->R, &kf->S); // S = H P'(k) HT + R + kf->MatStatus = Matrix_Inverse(&kf->S, &kf->temp_matrix1); // temp_matrix1 = inv(H·P'(k)·HT + R) + kf->temp_matrix.numRows = kf->Pminus.numRows; + kf->temp_matrix.numCols = kf->HT.numCols; + kf->MatStatus = Matrix_Multiply(&kf->Pminus, &kf->HT, &kf->temp_matrix); // temp_matrix = P'(k)·HT + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix, &kf->temp_matrix1, &kf->K); + } +} +void Kalman_Filter_xhatUpdate(KalmanFilter_t *kf) +{ + if (!kf->SkipEq4) + { + kf->temp_vector.numRows = kf->H.numRows; + kf->temp_vector.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->H, &kf->xhatminus, &kf->temp_vector); // temp_vector = H xhat'(k) + kf->temp_vector1.numRows = kf->z.numRows; + kf->temp_vector1.numCols = 1; + kf->MatStatus = Matrix_Subtract(&kf->z, &kf->temp_vector, &kf->temp_vector1); // temp_vector1 = z(k) - H·xhat'(k) + kf->temp_vector.numRows = kf->K.numRows; + kf->temp_vector.numCols = 1; + kf->MatStatus = Matrix_Multiply(&kf->K, &kf->temp_vector1, &kf->temp_vector); // temp_vector = K(k)·(z(k) - H·xhat'(k)) + kf->MatStatus = Matrix_Add(&kf->xhatminus, &kf->temp_vector, &kf->xhat); + } +} +void Kalman_Filter_P_Update(KalmanFilter_t *kf) +{ + if (!kf->SkipEq5) + { + kf->temp_matrix.numRows = kf->K.numRows; + kf->temp_matrix.numCols = kf->H.numCols; + kf->temp_matrix1.numRows = kf->temp_matrix.numRows; + kf->temp_matrix1.numCols = kf->Pminus.numCols; + kf->MatStatus = Matrix_Multiply(&kf->K, &kf->H, &kf->temp_matrix); // temp_matrix = K(k)·H + kf->MatStatus = Matrix_Multiply(&kf->temp_matrix, &kf->Pminus, &kf->temp_matrix1); // temp_matrix1 = K(k)·H·P'(k) + kf->MatStatus = Matrix_Subtract(&kf->Pminus, &kf->temp_matrix1, &kf->P); + } +} + +/** + * @brief 执行卡尔曼滤波黄金五式,提供了用户定义函数,可以替代五个中的任意一个环节,方便自行扩展为EKF/UKF/ESKF/AUKF等 + * + * @param kf kf类型定义 + * @return float* 返回滤波值 + */ +float *Kalman_Filter_Update(KalmanFilter_t *kf) +{ + // 0. 获取量测信息 + Kalman_Filter_Measure(kf); + if (kf->User_Func0_f != NULL) + kf->User_Func0_f(kf); + + // 先验估计 + // 1. xhat'(k)= A·xhat(k-1) + B·u + Kalman_Filter_xhatMinusUpdate(kf); + if (kf->User_Func1_f != NULL) + kf->User_Func1_f(kf); + + // 预测更新 + // 2. P'(k) = A·P(k-1)·AT + Q + Kalman_Filter_PminusUpdate(kf); + if (kf->User_Func2_f != NULL) + kf->User_Func2_f(kf); + + if (kf->MeasurementValidNum != 0 || kf->UseAutoAdjustment == 0) + { + // 量测更新 + // 3. K(k) = P'(k)·HT / (H·P'(k)·HT + R) + Kalman_Filter_SetK(kf); + + if (kf->User_Func3_f != NULL) + kf->User_Func3_f(kf); + + // 融合 + // 4. xhat(k) = xhat'(k) + K(k)·(z(k) - H·xhat'(k)) + Kalman_Filter_xhatUpdate(kf); + + if (kf->User_Func4_f != NULL) + kf->User_Func4_f(kf); + + // 修正方差 + // 5. P(k) = (1-K(k)·H)·P'(k) ==> P(k) = P'(k)-K(k)·H·P'(k) + Kalman_Filter_P_Update(kf); + } + else + { + // 无有效量测,仅预测 + // xhat(k) = xhat'(k) + // P(k) = P'(k) + memcpy(kf->xhat_data, kf->xhatminus_data, sizeof_float * kf->xhatSize); + memcpy(kf->P_data, kf->Pminus_data, sizeof_float * kf->xhatSize * kf->xhatSize); + } + + // 自定义函数,可以提供后处理等 + if (kf->User_Func5_f != NULL) + kf->User_Func5_f(kf); + + // 避免滤波器过度收敛 + // suppress filter excessive convergence + for (uint8_t i = 0; i < kf->xhatSize; ++i) + { + if (kf->P_data[i * kf->xhatSize + i] < kf->StateMinVariance[i]) + kf->P_data[i * kf->xhatSize + i] = kf->StateMinVariance[i]; + } + + memcpy(kf->FilteredValue, kf->xhat_data, sizeof_float * kf->xhatSize); + + if (kf->User_Func6_f != NULL) + kf->User_Func6_f(kf); + + return kf->FilteredValue; +} + +static void H_K_R_Adjustment(KalmanFilter_t *kf) +{ + kf->MeasurementValidNum = 0; + + memcpy(kf->z_data, kf->MeasuredVector, sizeof_float * kf->zSize); + memset(kf->MeasuredVector, 0, sizeof_float * kf->zSize); + + // 识别量测数据有效性并调整矩阵H R K + // recognize measurement validity and adjust matrices H R K + memset(kf->R_data, 0, sizeof_float * kf->zSize * kf->zSize); + memset(kf->H_data, 0, sizeof_float * kf->xhatSize * kf->zSize); + for (uint8_t i = 0; i < kf->zSize; ++i) + { + if (kf->z_data[i] != 0) + { + // 重构向量z + // rebuild vector z + kf->z_data[kf->MeasurementValidNum] = kf->z_data[i]; + kf->temp[kf->MeasurementValidNum] = i; + // 重构矩阵H + // rebuild matrix H + kf->H_data[kf->xhatSize * kf->MeasurementValidNum + kf->MeasurementMap[i] - 1] = kf->MeasurementDegree[i]; + kf->MeasurementValidNum++; + } + } + for (uint8_t i = 0; i < kf->MeasurementValidNum; ++i) + { + // 重构矩阵R + // rebuild matrix R + kf->R_data[i * kf->MeasurementValidNum + i] = kf->MatR_DiagonalElements[kf->temp[i]]; + } + + // 调整矩阵维数 + // adjust the dimensions of system matrices + kf->H.numRows = kf->MeasurementValidNum; + kf->H.numCols = kf->xhatSize; + kf->HT.numRows = kf->xhatSize; + kf->HT.numCols = kf->MeasurementValidNum; + kf->R.numRows = kf->MeasurementValidNum; + kf->R.numCols = kf->MeasurementValidNum; + kf->K.numRows = kf->xhatSize; + kf->K.numCols = kf->MeasurementValidNum; + kf->z.numRows = kf->MeasurementValidNum; +} diff --git a/modules/algorithm/kalman_filter.h b/modules/algorithm/kalman_filter.h new file mode 100644 index 0000000..dadf1ce --- /dev/null +++ b/modules/algorithm/kalman_filter.h @@ -0,0 +1,122 @@ +/** + ****************************************************************************** + * @file kalman filter.h + * @author Wang Hongxi + * @version V1.2.2 + * @date 2022/1/8 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#ifndef __KALMAN_FILTER_H +#define __KALMAN_FILTER_H + +// cortex-m4 DSP lib +/* +#define __CC_ARM // Keil +#define ARM_MATH_CM4 +#define ARM_MATH_MATRIX_CHECK +#define ARM_MATH_ROUNDING +#define ARM_MATH_DSP // define in arm_math.h +*/ + +#include "stm32f407xx.h" +#include "arm_math.h" +//#include "dsp/matrix_functions.h" +#include "math.h" +#include "stdint.h" +#include "stdlib.h" + +#ifndef user_malloc +#ifdef _CMSIS_OS_H +#define user_malloc pvPortMalloc +#else +#define user_malloc malloc +#endif +#endif + +// 若运算速度不够,可以使用q31代替f32,但是精度会降低 +#define mat arm_matrix_instance_f32 +#define Matrix_Init arm_mat_init_f32 +#define Matrix_Add arm_mat_add_f32 +#define Matrix_Subtract arm_mat_sub_f32 +#define Matrix_Multiply arm_mat_mult_f32 +#define Matrix_Transpose arm_mat_trans_f32 +#define Matrix_Inverse arm_mat_inverse_f32 + +typedef struct kf_t +{ + float *FilteredValue; + float *MeasuredVector; + float *ControlVector; + + uint8_t xhatSize; + uint8_t uSize; + uint8_t zSize; + + uint8_t UseAutoAdjustment; + uint8_t MeasurementValidNum; + + uint8_t *MeasurementMap; // 量测与状态的关系 how measurement relates to the state + float *MeasurementDegree; // 测量值对应H矩阵元素值 elements of each measurement in H + float *MatR_DiagonalElements; // 量测方差 variance for each measurement + float *StateMinVariance; // 最小方差 避免方差过度收敛 suppress filter excessive convergence + uint8_t *temp; + + // 配合用户定义函数使用,作为标志位用于判断是否要跳过标准KF中五个环节中的任意一个 + uint8_t SkipEq1, SkipEq2, SkipEq3, SkipEq4, SkipEq5; + + // definiion of struct mat: rows & cols & pointer to vars + mat xhat; // x(k|k) + mat xhatminus; // x(k|k-1) + mat u; // control vector u + mat z; // measurement vector z + mat P; // covariance matrix P(k|k) + mat Pminus; // covariance matrix P(k|k-1) + mat F, FT; // state transition matrix F FT + mat B; // control matrix B + mat H, HT; // measurement matrix H + mat Q; // process noise covariance matrix Q + mat R; // measurement noise covariance matrix R + mat K; // kalman gain K + mat S, temp_matrix, temp_matrix1, temp_vector, temp_vector1; + + int8_t MatStatus; + + // 用户定义函数,可以替换或扩展基准KF的功能 + void (*User_Func0_f)(struct kf_t *kf); + void (*User_Func1_f)(struct kf_t *kf); + void (*User_Func2_f)(struct kf_t *kf); + void (*User_Func3_f)(struct kf_t *kf); + void (*User_Func4_f)(struct kf_t *kf); + void (*User_Func5_f)(struct kf_t *kf); + void (*User_Func6_f)(struct kf_t *kf); + + // 矩阵存储空间指针 + float *xhat_data, *xhatminus_data; + float *u_data; + float *z_data; + float *P_data, *Pminus_data; + float *F_data, *FT_data; + float *B_data; + float *H_data, *HT_data; + float *Q_data; + float *R_data; + float *K_data; + float *S_data, *temp_matrix_data, *temp_matrix_data1, *temp_vector_data, *temp_vector_data1; +} KalmanFilter_t; + +extern uint16_t sizeof_float, sizeof_double; + +void Kalman_Filter_Init(KalmanFilter_t *kf, uint8_t xhatSize, uint8_t uSize, uint8_t zSize); +void Kalman_Filter_Measure(KalmanFilter_t *kf); +void Kalman_Filter_xhatMinusUpdate(KalmanFilter_t *kf); +void Kalman_Filter_PminusUpdate(KalmanFilter_t *kf); +void Kalman_Filter_SetK(KalmanFilter_t *kf); +void Kalman_Filter_xhatUpdate(KalmanFilter_t *kf); +void Kalman_Filter_P_Update(KalmanFilter_t *kf); +float *Kalman_Filter_Update(KalmanFilter_t *kf); + +#endif //__KALMAN_FILTER_H diff --git a/modules/algorithm/user_lib.c b/modules/algorithm/user_lib.c new file mode 100644 index 0000000..5029109 --- /dev/null +++ b/modules/algorithm/user_lib.c @@ -0,0 +1,214 @@ +/** + ****************************************************************************** + * @file user_lib.c + * @author Wang Hongxi + * @author modified by neozng + * @version 0.2 beta + * @date 2021/2/18 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#include "stdlib.h" +#include "memory.h" +#include "user_lib.h" +#include "math.h" +#include "main.h" + +#ifdef _CMSIS_OS_H +#define user_malloc pvPortMalloc +#else +#define user_malloc malloc +#endif + +void *zmalloc(size_t size) +{ + void *ptr = malloc(size); + memset(ptr, 0, size); + return ptr; +} + +// 快速开方 +float Sqrt(float x) +{ + float y; + float delta; + float maxError; + + if (x <= 0) + { + return 0; + } + + // initial guess + y = x / 2; + + // refine + maxError = x * 0.001f; + + do + { + delta = (y * y) - x; + y -= delta / (2 * y); + } while (delta > maxError || delta < -maxError); + + return y; +} + +// 绝对值限制 +float abs_limit(float num, float Limit) +{ + if (num > Limit) + { + num = Limit; + } + else if (num < -Limit) + { + num = -Limit; + } + return num; +} + +// 判断符号位 +float sign(float value) +{ + if (value >= 0.0f) + { + return 1.0f; + } + else + { + return -1.0f; + } +} + +// 浮点死区 +float float_deadband(float Value, float minValue, float maxValue) +{ + if (Value < maxValue && Value > minValue) + { + Value = 0.0f; + } + return Value; +} + +// 限幅函数 +float float_constrain(float Value, float minValue, float maxValue) +{ + if (Value < minValue) + return minValue; + else if (Value > maxValue) + return maxValue; + else + return Value; +} + +// 限幅函数 +int16_t int16_constrain(int16_t Value, int16_t minValue, int16_t maxValue) +{ + if (Value < minValue) + return minValue; + else if (Value > maxValue) + return maxValue; + else + return Value; +} + +// 循环限幅函数 +float loop_float_constrain(float Input, float minValue, float maxValue) +{ + if (maxValue < minValue) + { + return Input; + } + + if (Input > maxValue) + { + float len = maxValue - minValue; + while (Input > maxValue) + { + Input -= len; + } + } + else if (Input < minValue) + { + float len = maxValue - minValue; + while (Input < minValue) + { + Input += len; + } + } + return Input; +} + +// 弧度格式化为-PI~PI + +// 角度格式化为-180~180 +float theta_format(float Ang) +{ + return loop_float_constrain(Ang, -180.0f, 180.0f); +} + +int float_rounding(float raw) +{ + static int integer; + static float decimal; + integer = (int)raw; + decimal = raw - integer; + if (decimal > 0.5f) + integer++; + return integer; +} + +// 三维向量归一化 +float *Norm3d(float *v) +{ + float len = Sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]); + v[0] /= len; + v[1] /= len; + v[2] /= len; + return v; +} + +// 计算模长 +float NormOf3d(float *v) +{ + return Sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]); +} + +// 三维向量叉乘v1 x v2 +void Cross3d(float *v1, float *v2, float *res) +{ + res[0] = v1[1] * v2[2] - v1[2] * v2[1]; + res[1] = v1[2] * v2[0] - v1[0] * v2[2]; + res[2] = v1[0] * v2[1] - v1[1] * v2[0]; +} + +// 三维向量点乘 +float Dot3d(float *v1, float *v2) +{ + return v1[0] * v2[0] + v1[1] * v2[1] + v1[2] * v2[2]; +} + +// 均值滤波,删除buffer中的最后一个元素,填入新的元素并求平均值 +float AverageFilter(float new_data, float *buf, uint8_t len) +{ + float sum = 0; + for (uint8_t i = 0; i < len - 1; i++) + { + buf[i] = buf[i + 1]; + sum += buf[i]; + } + buf[len - 1] = new_data; + sum += new_data; + return sum / len; +} + +void MatInit(mat *m, uint8_t row, uint8_t col) +{ + m->numCols = col; + m->numRows = row; + m->pData = (float *)zmalloc(row * col * sizeof(float)); +} diff --git a/modules/algorithm/user_lib.h b/modules/algorithm/user_lib.h new file mode 100644 index 0000000..9a15097 --- /dev/null +++ b/modules/algorithm/user_lib.h @@ -0,0 +1,126 @@ +/** + ****************************************************************************** + * @file user_lib.h + * @author Wang Hongxi + * @version V1.0.0 + * @date 2021/2/18 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#ifndef _USER_LIB_H +#define _USER_LIB_H + +#include "stdint.h" +#include "main.h" +#include "cmsis_os.h" +#include "stm32f407xx.h" +#include "arm_math.h" + + +#ifndef user_malloc +#ifdef _CMSIS_OS_H +#define user_malloc pvPortMalloc +#else +#define user_malloc malloc +#endif +#endif + +#define msin(x) (arm_sin_f32(x)) +#define mcos(x) (arm_cos_f32(x)) + +typedef arm_matrix_instance_f32 mat; +// 若运算速度不够,可以使用q31代替f32,但是精度会降低 +#define MatAdd arm_mat_add_f32 +#define MatSubtract arm_mat_sub_f32 +#define MatMultiply arm_mat_mult_f32 +#define MatTranspose arm_mat_trans_f32 +#define MatInverse arm_mat_inverse_f32 +void MatInit(mat *m, uint8_t row, uint8_t col); + +/* boolean type definitions */ +#ifndef TRUE +#define TRUE 1 /**< boolean true */ +#endif + +#ifndef FALSE +#define FALSE 0 /**< boolean fails */ +#endif + +/* circumference ratio */ +#ifndef PI +#define PI 3.14159265354f +#endif + +#define VAL_LIMIT(val, min, max) \ + do \ + { \ + if ((val) <= (min)) \ + { \ + (val) = (min); \ + } \ + else if ((val) >= (max)) \ + { \ + (val) = (max); \ + } \ + } while (0) + +#define ANGLE_LIMIT_360(val, angle) \ + do \ + { \ + (val) = (angle) - (int)(angle); \ + (val) += (int)(angle) % 360; \ + } while (0) + +#define ANGLE_LIMIT_360_TO_180(val) \ + do \ + { \ + if ((val) > 180) \ + (val) -= 360; \ + } while (0) + +#define VAL_MIN(a, b) ((a) < (b) ? (a) : (b)) +#define VAL_MAX(a, b) ((a) > (b) ? (a) : (b)) + +/** + * @brief 返回一块干净的内�?,不过仍然需要强制转�?为你需要的类型 + * + * @param size 分配大小 + * @return void* + */ +void *zmalloc(size_t size); + +// ���ٿ��� +float Sqrt(float x); +// �������� +float abs_limit(float num, float Limit); +// �жϷ���λ +float sign(float value); +// �������� +float float_deadband(float Value, float minValue, float maxValue); +// ������ +float float_constrain(float Value, float minValue, float maxValue); +// ������ +int16_t int16_constrain(int16_t Value, int16_t minValue, int16_t maxValue); +// ѭ�������� +float loop_float_constrain(float Input, float minValue, float maxValue); +// �Ƕ� ���� 180 ~ -180 +float theta_format(float Ang); + +int float_rounding(float raw); + +float *Norm3d(float *v); + +float NormOf3d(float *v); + +void Cross3d(float *v1, float *v2, float *res); + +float Dot3d(float *v1, float *v2); + +float AverageFilter(float new_data, float *buf, uint8_t len); + +#define rad_format(Ang) loop_float_constrain((Ang), -PI, PI) + +#endif diff --git a/modules/auto_aim/auto_aim.c b/modules/auto_aim/auto_aim.c new file mode 100644 index 0000000..7e01f96 --- /dev/null +++ b/modules/auto_aim/auto_aim.c @@ -0,0 +1,290 @@ +// +// Created by sph on 2024/1/21. +// +#include "auto_aim.h" +#include "arm_math.h" + +/** + * @brief 选择目标装甲板 + * @author SJQ + * @param[in] trajectory_cal:弹道解算结构体 + * @retval 返回空 + */ +int aim_armor_select(Aim_Select_Type_t *aim_sel, Trajectory_Type_t *trajectory_cal) { + aim_sel->delay_time = trajectory_cal->fly_time + trajectory_cal->extra_delay_time; + aim_sel->target_state.yaw += aim_sel->target_state.v_yaw * aim_sel->delay_time; + + //计算四块装甲板的位置 + int use_1 = 1; + int i = 0; + int idx = 0; // 选择的装甲板 + // 为平衡步兵 + if (aim_sel->target_state.armor_num == 2) { + for (i = 0; i < 2; i++) { + float tmp_yaw = aim_sel->target_state.yaw + i * PI; + float r = aim_sel->target_state.r1; + + aim_sel->armor_pose[i].x = aim_sel->target_state.x - r * arm_cos_f32(tmp_yaw); + aim_sel->armor_pose[i].y = aim_sel->target_state.y - r * arm_sin_f32(tmp_yaw); + aim_sel->armor_pose[i].z = aim_sel->target_state.z; + aim_sel->armor_pose[i].yaw = aim_sel->target_state.yaw + i * PI; + } + +// float yaw_diff_min = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[0].yaw); +// +// //因为是平衡步兵 只需判断两块装甲板即可 +// float temp_yaw_diff = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[1].yaw); +// if (temp_yaw_diff < yaw_diff_min) { +// yaw_diff_min = temp_yaw_diff; +// idx = 1; +// } + // 平衡步兵选择两块装甲板中较近的装甲板 + float distance_min = powf(aim_sel->armor_pose[0].x, 2) + powf(aim_sel->armor_pose[0].y, 2); + float distance_temp = powf(aim_sel->armor_pose[1].x, 2) + powf(aim_sel->armor_pose[1].y, 2); + if (distance_temp < distance_min) { + distance_min = distance_temp; + idx = 1; + } + + } else if (aim_sel->target_state.armor_num == 3)//前哨站 + { + for (i = 0; i < 3; i++) { + float tmp_yaw; + if (aim_sel->target_state.v_yaw <= 0) + tmp_yaw = aim_sel->target_state.yaw + i * (2.0 * PI / 3.0); + else + tmp_yaw = aim_sel->target_state.yaw - i * (2.0 * PI / 3.0); + float r = use_1 ? aim_sel->target_state.r1 : aim_sel->target_state.r2; + aim_sel->armor_pose[i].x = aim_sel->target_state.x - r * cos(tmp_yaw); + aim_sel->armor_pose[i].y = aim_sel->target_state.y - r * sin(tmp_yaw); + aim_sel->armor_pose[i].z = use_1 ? aim_sel->target_state.z : aim_sel->target_state.z + + aim_sel->target_state.dz; + aim_sel->armor_pose[i].yaw = aim_sel->target_state.yaw + i * (2.0 * PI / 3.0); + use_1 = !use_1; + } + +// //计算枪管到目标装甲板yaw最小的那个装甲板 +// float yaw_diff_min = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[0].yaw); +// for (i = 1; i < 3; i++) { +// float temp_yaw_diff = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[i].yaw); +// if (temp_yaw_diff < yaw_diff_min) { +// yaw_diff_min = temp_yaw_diff; +// idx = i; +// } +// } + // 选择两块较近的装甲板,再选择两块装甲板与自身位置连线,同旋转中心自身位置连线,夹角较小的为目标装甲板 +// float distance_temp0 = powf(aim_sel->armor_pose[0].x, 2) + powf(aim_sel->armor_pose[0].y, 2); +// float distance_temp1 = powf(aim_sel->armor_pose[1].x, 2) + powf(aim_sel->armor_pose[1].y, 2); +// float distance_temp2 = powf(aim_sel->armor_pose[2].x, 2) + powf(aim_sel->armor_pose[2].y, 2); + +// int label_first = 0; +// int label_second = 1; +// if (distance_temp0 > distance_temp1) { +// label_first = 1; +// if (distance_temp0 > distance_temp2) { +// label_second = 2; +// } else label_second = 0; +// } else { +// label_first = 0; +// if (distance_temp1 > distance_temp2) { +// label_second = 2; +// } else label_second = 1; +// } + + // 选择两块较近的装甲板 + float distance[3]; + for (i = 0; i < 3; i++) { + distance[i] = powf(aim_sel->armor_pose[i].x, 2) + powf(aim_sel->armor_pose[i].y, 2); + } + + int label_first = 0; + int label_second = 0; + + for (i = 1; i < 3; i++) { + if (distance[i] < distance[label_first]) { + label_second = label_first; + label_first = i; + } else if (distance[i] < distance[label_second]) { + label_second = i; + } else if (distance[i] < distance[label_second] && distance[i] < distance[label_first]) { + label_second = i; + } + } + + //再选择两块装甲板与自身位置连线,同旋转中心自身位置连线,夹角较小的为目标装甲板 + float center_length = sqrtf(powf(aim_sel->target_state.x, 2) + powf(aim_sel->target_state.y, 2)); + + float cos_theta_first = (aim_sel->armor_pose[label_first].x * aim_sel->target_state.x + + aim_sel->armor_pose[label_first].y * aim_sel->target_state.y) / + (sqrtf(powf(aim_sel->armor_pose[label_first].x, 2) + + powf(aim_sel->armor_pose[label_first].y, 2)) * center_length); + float cos_theta_second = (aim_sel->armor_pose[label_second].x * aim_sel->target_state.x + + aim_sel->armor_pose[label_second].y * aim_sel->target_state.y) / + (sqrtf(powf(aim_sel->armor_pose[label_second].x, 2) + + powf(aim_sel->armor_pose[label_second].y, 2)) * center_length); + + if (cos_theta_first > cos_theta_second) + idx = label_first; + else + idx = label_second; + + } else { + for (i = 0; i < 4; i++) { + float tmp_yaw = aim_sel->target_state.yaw + i * PI / 2.0; + float r = use_1 ? aim_sel->target_state.r1 : aim_sel->target_state.r2; + + aim_sel->armor_pose[i].x = aim_sel->target_state.x - r * arm_cos_f32(tmp_yaw); + aim_sel->armor_pose[i].y = aim_sel->target_state.y - r * arm_sin_f32(tmp_yaw); + aim_sel->armor_pose[i].z = use_1 ? aim_sel->target_state.z : aim_sel->target_state.z + + aim_sel->target_state.dz; + aim_sel->armor_pose[i].yaw = tmp_yaw; + use_1 = !use_1; + } + +// //计算枪管到目标装甲板yaw最小的那个装甲板 +// float yaw_diff_min = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[0].yaw); +// for (i = 1; i < 4; i++) { +// float temp_yaw_diff = fabsf(trajectory_cal->cmd_yaw - aim_sel->armor_pose[i].yaw); +// if (temp_yaw_diff < yaw_diff_min) { +// yaw_diff_min = temp_yaw_diff; +// idx = i; +// } +// } + + // 选择两块较近的装甲板 + float distance[4]; + for (i = 0; i < 4; i++) { + distance[i] = powf(aim_sel->armor_pose[i].x, 2) + powf(aim_sel->armor_pose[i].y, 2); + } + + int label_first = 0; + int label_second = 0; + + for (i = 1; i < 4; i++) { + if (distance[i] < distance[label_first]) { + label_second = label_first; + label_first = i; + } else if (distance[i] < distance[label_second]) { + label_second = i; + } else if (distance[i] < distance[label_second] && distance[i] < distance[label_first]) { + label_second = i; + } + } + + //再选择两块装甲板与自身位置连线,同旋转中心自身位置连线,夹角较小的为目标装甲板 + float center_length = sqrtf(powf(aim_sel->target_state.x, 2) + powf(aim_sel->target_state.y, 2)); + + float cos_theta_first = (aim_sel->armor_pose[label_first].x * aim_sel->target_state.x + + aim_sel->armor_pose[label_first].y * aim_sel->target_state.y) / + (sqrtf(powf(aim_sel->armor_pose[label_first].x, 2) + + powf(aim_sel->armor_pose[label_first].y, 2)) * center_length); + float cos_theta_second = (aim_sel->armor_pose[label_second].x * aim_sel->target_state.x + + aim_sel->armor_pose[label_second].y * aim_sel->target_state.y) / + (sqrtf(powf(aim_sel->armor_pose[label_second].x, 2) + + powf(aim_sel->armor_pose[label_second].y, 2)) * center_length); + + if (cos_theta_first > cos_theta_second) + idx = label_first; + else + idx = label_second; + } + aim_sel->aim_point[0] = aim_sel->armor_pose[idx].x + aim_sel->target_state.vx * aim_sel->delay_time; + aim_sel->aim_point[1] = aim_sel->armor_pose[idx].y + aim_sel->target_state.vy * aim_sel->delay_time; + aim_sel->aim_point[2] = aim_sel->armor_pose[idx].z + aim_sel->target_state.vz * aim_sel->delay_time; + return idx; +} + +/** + * @brief 子弹飞行时间解算 + * @author SJQ + * @param[in] x:瞄准时shooter_link下目标x坐标 + * @param[in] vx:瞄准时shooter_link下目标x速度 + * @param[in] v_x0:弹速水平分量 + * @retval 返回空 + */ +const float k1 = 0.0761; //标准大气压25度下空气阻力系数 +float get_fly_time(float x, float vx, float v_x0) { + float t = 0; + float f_ti = 0, df_ti = 0; + for (int i = 0; i < 5; i++) { + f_ti = log(k1 * v_x0 * t + 1) / k1 - x - vx * t; + df_ti = v_x0 / (k1 * v_x0 * t + 1) - vx; + t = t - f_ti / df_ti; + } + return t; +} + +/** + * @brief 解算期望云台角度(考虑子弹飞行时间) + * @author SJQ + * @param[in] trajectory_cal:弹道解算结构体 + * @retval 返回空 + */ +void get_cmd_angle(Trajectory_Type_t *trajectory_cal) { + + arm_power_f32(trajectory_cal->position_xy, 2, &trajectory_cal->dis2); + arm_sqrt_f32(trajectory_cal->dis2, &trajectory_cal->dis); + + trajectory_cal->dis = trajectory_cal->dis - 0.20; + + trajectory_cal->theta_0 = atan2f(trajectory_cal->z, trajectory_cal->dis); + trajectory_cal->alpha = atan2f(trajectory_cal->position_xy[1], trajectory_cal->position_xy[0]); + //将目标的xyz速度转化为平行枪管与垂直枪管的速度 + trajectory_cal->vx = trajectory_cal->velocity[0] * arm_cos_f32(trajectory_cal->alpha) + + trajectory_cal->velocity[1] * arm_sin_f32(trajectory_cal->alpha); + trajectory_cal->vy = -trajectory_cal->velocity[0] * arm_sin_f32(trajectory_cal->alpha) + + trajectory_cal->velocity[1] * arm_cos_f32(trajectory_cal->alpha); + + float v_x0 = trajectory_cal->v0 * arm_cos_f32(trajectory_cal->theta_0);//水平方向弹速 + float v_y0 = trajectory_cal->v0 * arm_sin_f32(trajectory_cal->theta_0);//竖直方向弹速 + + trajectory_cal->fly_time = get_fly_time(trajectory_cal->dis, trajectory_cal->vx, v_x0); + arm_power_f32(&trajectory_cal->fly_time, 1, &trajectory_cal->fly_time2); + trajectory_cal->h_r = trajectory_cal->z + trajectory_cal->velocity[2] * trajectory_cal->fly_time; + //开始迭代 + trajectory_cal->theta_k = trajectory_cal->theta_0; + trajectory_cal->k = 0; + while (trajectory_cal->k < 10) { + v_y0 = trajectory_cal->v0 * arm_sin_f32(trajectory_cal->theta_k);//竖直方向弹速 + trajectory_cal->h_k = v_y0 * trajectory_cal->fly_time - 0.5 * 9.8 * trajectory_cal->fly_time2; + trajectory_cal->err_k = trajectory_cal->h_r - trajectory_cal->h_k; + trajectory_cal->theta_k += 0.1 * trajectory_cal->err_k; + trajectory_cal->k++; + if (trajectory_cal->err_k < 0.005) break; + } + + trajectory_cal->cmd_yaw = atan2f(trajectory_cal->position_xy[1], + trajectory_cal->position_xy[0]); + + trajectory_cal->cmd_pitch = trajectory_cal->theta_k; +} + +int auto_aim(Aim_Select_Type_t *aim_sel, Trajectory_Type_t *trajectory_cal, RecievePacket_t *receive_packet) { + trajectory_cal->extra_delay_time = 0.035;//0.025 + + aim_sel->target_state.armor_type = receive_packet->id; + aim_sel->target_state.armor_num = receive_packet->armors_num; + aim_sel->target_state.x = receive_packet->x; + aim_sel->target_state.y = receive_packet->y; + aim_sel->target_state.z = receive_packet->z; + aim_sel->target_state.vx = receive_packet->vx; + aim_sel->target_state.vy = receive_packet->vy; + aim_sel->target_state.vz = receive_packet->vz; + aim_sel->target_state.yaw = receive_packet->yaw; + aim_sel->target_state.v_yaw = receive_packet->v_yaw; + aim_sel->target_state.r1 = receive_packet->r1; + aim_sel->target_state.r2 = receive_packet->r2; + aim_sel->target_state.dz = receive_packet->dz; + + int idx = aim_armor_select(aim_sel, trajectory_cal); + + trajectory_cal->position_xy[0] = aim_sel->aim_point[0]; + trajectory_cal->position_xy[1] = aim_sel->aim_point[1]; + trajectory_cal->z = aim_sel->aim_point[2]; + trajectory_cal->velocity[0] = aim_sel->target_state.vx; + trajectory_cal->velocity[1] = aim_sel->target_state.vy; + trajectory_cal->velocity[2] = aim_sel->target_state.vz; + + get_cmd_angle(trajectory_cal); + return idx; +} diff --git a/modules/auto_aim/auto_aim.h b/modules/auto_aim/auto_aim.h new file mode 100644 index 0000000..ce151c1 --- /dev/null +++ b/modules/auto_aim/auto_aim.h @@ -0,0 +1,77 @@ +// +// Created by sph on 2024/1/21. +// + +#ifndef BASIC_FRAMEWORK_AUTO_AIM_H +#define BASIC_FRAMEWORK_AUTO_AIM_H + +#include "master_process.h" +//弹道解算 +typedef struct +{ + float v0; //子弹射速 + float velocity[3];//目标xyz速度 + float vx; //目标相对枪口方向的速度 + float vy; + float alpha; //目标初始航向角 + float position_xy[2];//目标xy坐标 + float z; //目标z坐标 + float fly_time; //子弹飞行时间 + float fly_time2; //子弹飞行时间平方 + float extra_delay_time ; + float theta_0; //初始目标角度 + float theta_k; //迭代目标角度 + float dis; //目标距离 + float dis2; //目标距离平方 + float err_k; //迭代误差 + uint8_t k; //迭代次数 + float h_k; //迭代高度 + float h_r; //目标真实高度 + + float cmd_yaw; + float cmd_pitch; +} Trajectory_Type_t; + +//整车状态 +typedef struct +{ + float x; + float y; + float z; + float yaw; + float vx; + float vy; + float vz; + float v_yaw; + float r1; + float r2; + float dz; + uint8_t armor_type; + uint8_t armor_num; +}Target_State_Type_t; + +//预瞄点 +typedef struct +{ + float x; + float y; + float z; + float yaw; +}Armor_Pose_Type_t; + +typedef struct +{ + Target_State_Type_t target_state; //整车状态 + Armor_Pose_Type_t armor_pose[4]; //四个装甲板状态 + float aim_point[3]; //预瞄点 + float delay_time; //预瞄时间差 + uint8_t suggest_fire; +}Aim_Select_Type_t; + + +int aim_armor_select(Aim_Select_Type_t *aim_sel, Trajectory_Type_t *trajectory_cal); +float get_fly_time(float x, float vx, float v_x0); +void get_cmd_angle(Trajectory_Type_t *trajectory_cal); +int auto_aim(Aim_Select_Type_t *aim_sel,Trajectory_Type_t *trajectory_cal,RecievePacket_t *receive_packet); + +#endif //BASIC_FRAMEWORK_AUTO_AIM_H diff --git a/modules/can_comm/can_comm.c b/modules/can_comm/can_comm.c new file mode 100644 index 0000000..bb39c59 --- /dev/null +++ b/modules/can_comm/can_comm.c @@ -0,0 +1,134 @@ +#include "can_comm.h" +#include "memory.h" +#include "stdlib.h" +#include "crc8.h" +#include "bsp_dwt.h" +#include "bsp_log.h" + +/** + * @brief 重置CAN comm的接收状态和buffer + * + * @param ins 需要重置的实例 + */ +static void CANCommResetRx(CANCommInstance *ins) +{ + // 当前已经收到的buffer清零 + memset(ins->raw_recvbuf, 0, ins->cur_recv_len); + ins->recv_state = 0; // 接收状态重置 + ins->cur_recv_len = 0; // 当前已经收到的长度重置 +} + +/** + * @brief cancomm的接收回调函数 + * + * @param _instance + */ +static void CANCommRxCallback(CANInstance *_instance) +{ + CANCommInstance *comm = (CANCommInstance *)_instance->id; // 注意写法,将can instance的id强制转换为CANCommInstance*类型 + + /* 当前接收状态判断 */ + if (_instance->rx_buff[0] == CAN_COMM_HEADER && comm->recv_state == 0) // 之前尚未开始接收且此次包里第一个位置是帧头 + { + if (_instance->rx_buff[1] == comm->recv_data_len) // 如果这一包里的datalen也等于我们设定接收长度(这是因为暂时不支持动态包长) + { + comm->recv_state = 1; // 设置接收状态为1,说明已经开始接收 + } + else + return; // 直接跳过即可 + } + + if (comm->recv_state) // 已经收到过帧头 + { + // 如果已经接收到的长度加上当前一包的长度大于总buf len,说明接收错误 + if (comm->cur_recv_len + _instance->rx_len > comm->recv_buf_len) + { + CANCommResetRx(comm); + return; // 重置状态然后返回 + } + + // 直接把当前接收到的数据接到buffer后面 + memcpy(comm->raw_recvbuf + comm->cur_recv_len, _instance->rx_buff, _instance->rx_len); + comm->cur_recv_len += _instance->rx_len; + + // 收完这一包以后刚好等于总buf len,说明已经收完了 + if (comm->cur_recv_len == comm->recv_buf_len) + { + // 如果buff里本tail的位置等于CAN_COMM_TAIL + if (comm->raw_recvbuf[comm->recv_buf_len - 1] == CAN_COMM_TAIL) + { // 通过校验,复制数据到unpack_data中 + if (comm->raw_recvbuf[comm->recv_buf_len - 2] == crc_8(comm->raw_recvbuf + 2, comm->recv_data_len)) + { // 数据量大的话考虑使用DMA + memcpy(comm->unpacked_recv_data, comm->raw_recvbuf + 2, comm->recv_data_len); + comm->update_flag = 1; // 数据更新flag置为1 + DaemonReload(comm->comm_daemon); // 重载daemon,避免数据更新后一直不被读取而导致数据更新不及时 + } + } + CANCommResetRx(comm); + return; // 重置状态然后返回 + } + } +} + +static void CANCommLostCallback(void *cancomm) +{ + CANCommInstance *comm = (CANCommInstance *)cancomm; + CANCommResetRx(comm); + LOGWARNING("[can_comm] can comm rx[%d] lost, reset rx state.", &comm->can_ins->rx_id); +} + +CANCommInstance *CANCommInit(CANComm_Init_Config_s *comm_config) +{ + CANCommInstance *ins = (CANCommInstance *)malloc(sizeof(CANCommInstance)); + memset(ins, 0, sizeof(CANCommInstance)); + + ins->recv_data_len = comm_config->recv_data_len; + ins->recv_buf_len = comm_config->recv_data_len + CAN_COMM_OFFSET_BYTES; // head + datalen + crc8 + tail + ins->send_data_len = comm_config->send_data_len; + ins->send_buf_len = comm_config->send_data_len + CAN_COMM_OFFSET_BYTES; + ins->raw_sendbuf[0] = CAN_COMM_HEADER; // head,直接设置避免每次发送都要重新赋值,下面的tail同理 + ins->raw_sendbuf[1] = comm_config->send_data_len; // datalen + ins->raw_sendbuf[comm_config->send_data_len + CAN_COMM_OFFSET_BYTES - 1] = CAN_COMM_TAIL; + // can instance的设置 + comm_config->can_config.id = ins; // CANComm的实例指针作为CANInstance的id,回调函数中会用到 + comm_config->can_config.can_module_callback = CANCommRxCallback; + ins->can_ins = CANRegister(&comm_config->can_config); + + Daemon_Init_Config_s daemon_config = { + .callback = CANCommLostCallback, + .owner_id = (void *)ins, + .reload_count = comm_config->daemon_count, + }; + ins->comm_daemon = DaemonRegister(&daemon_config); + return ins; +} + +void CANCommSend(CANCommInstance *instance, uint8_t *data) +{ + static uint8_t crc8; + static uint8_t send_len; + // 将data copy到raw_sendbuf中,计算crc8 + memcpy(instance->raw_sendbuf + 2, data, instance->send_data_len); + crc8 = crc_8(data, instance->send_data_len); + instance->raw_sendbuf[2 + instance->send_data_len] = crc8; + + // CAN单次发送最大为8字节,如果超过8字节,需要分包发送 + for (size_t i = 0; i < instance->send_buf_len; i += 8) + { // 如果是最后一包,send len将会小于8,要修改CAN的txconf中的DLC位,调用bsp_can提供的接口即可 + send_len = instance->send_buf_len - i >= 8 ? 8 : instance->send_buf_len - i; + CANSetDLC(instance->can_ins, send_len); + memcpy(instance->can_ins->tx_buff, instance->raw_sendbuf + i, send_len); + CANTransmit(instance->can_ins, 1); + } +} + +void *CANCommGet(CANCommInstance *instance) +{ + instance->update_flag = 0; // 读取后将更新flag置为0 + return instance->unpacked_recv_data; +} + +uint8_t CANCommIsOnline(CANCommInstance *instance) +{ + return DaemonIsOnline(instance->comm_daemon); +} diff --git a/modules/can_comm/can_comm.h b/modules/can_comm/can_comm.h new file mode 100644 index 0000000..398bcb5 --- /dev/null +++ b/modules/can_comm/can_comm.h @@ -0,0 +1,92 @@ +/** + * @file can_comm.h + * @author Neo neozng1@hnu.edu.cn + * @brief 用于多机CAN通信的收发模块 + * @version 0.1 + * @date 2022-11-27 + * + * @copyright Copyright (c) 2022 HNUYueLu EC all rights reserved + * + */ +#ifndef CAN_COMM_H +#define CAN_COMM_H + +#include "bsp_can.h" +#include "daemon.h" + +#define MX_CAN_COMM_COUNT 4 // 注意均衡负载,一条总线上不要挂载过多的外设 + +#define CAN_COMM_MAX_BUFFSIZE 60 // 最大发送/接收字节数,如果不够可以增加此数值 +#define CAN_COMM_HEADER 's' // 帧头 +#define CAN_COMM_TAIL 'e' // 帧尾 +#define CAN_COMM_OFFSET_BYTES 4 // 's'+ datalen + 'e' + crc8 + +#pragma pack(1) +/* CAN comm 结构体, 拥有CAN comm的app应该包含一个CAN comm指针 */ +typedef struct +{ + CANInstance *can_ins; + /* 发送部分 */ + uint8_t send_data_len; // 发送数据长度 + uint8_t send_buf_len; // 发送缓冲区长度,为发送数据长度+帧头单包数据长度帧尾以及校验和(4) + uint8_t raw_sendbuf[CAN_COMM_MAX_BUFFSIZE + CAN_COMM_OFFSET_BYTES]; // 额外4个bytes保存帧头帧尾和校验和 + /* 接收部分 */ + uint8_t recv_data_len; // 接收数据长度 + uint8_t recv_buf_len; // 接收缓冲区长度,为接收数据长度+帧头单包数据长度帧尾以及校验和(4) + uint8_t raw_recvbuf[CAN_COMM_MAX_BUFFSIZE + CAN_COMM_OFFSET_BYTES]; // 额外4个bytes保存帧头帧尾和校验和 + uint8_t unpacked_recv_data[CAN_COMM_MAX_BUFFSIZE]; // 解包后的数据,调用CANCommGet()后cast成对应的类型通过指针读取即可 + /* 接收和更新标志位*/ + uint8_t recv_state; // 接收状态, + uint8_t cur_recv_len; // 当前已经接收到的数据长度(包括帧头帧尾datalen和校验和) + uint8_t update_flag; // 数据更新标志位,当接收到新数据时,会将此标志位置1,调用CANCommGet()后会将此标志位置0 + + DaemonInstance* comm_daemon; +} CANCommInstance; +#pragma pack() + +/* CAN comm 初始化结构体 */ +typedef struct +{ + CAN_Init_Config_s can_config; // CAN初始化结构体 + uint8_t send_data_len; // 发送数据长度 + uint8_t recv_data_len; // 接收数据长度 + + uint16_t daemon_count; // 守护进程计数,用于初始化守护进程 +} CANComm_Init_Config_s; + +/** + * @brief 初始化CANComm + * + * @param config CANComm初始化结构体 + * @return CANCommInstance* + */ +CANCommInstance *CANCommInit(CANComm_Init_Config_s *comm_config); + +/** + * @brief 通过CANComm发送数据 + * + * @param instance cancomm实例 + * @param data 注意此地址的有效数据长度需要和初始化时传入的datalen相同 + */ +void CANCommSend(CANCommInstance *instance, uint8_t *data); + +/** + * @brief 获取CANComm接收的数据,需要自己使用强制类型转换将返回的void指针转换成指定类型 + * + * @return void* 返回的数据指针 + * @attention 注意如果希望直接通过转换指针访问数据,如果数据是union或struct,要检查是否使用了pack(n) + * CANComm接收到的数据可以看作是pack(1)之后的,是连续存放的. + * 如果使用了pack(n)可能会导致数据错乱,并且无法使用强制类型转换通过memcpy直接访问,转而需要手动解包. + * 强烈建议通过CANComm传输的数据使用pack(1) + */ +void *CANCommGet(CANCommInstance *instance); + +/** + * @brief 检查CANComm是否在线 + * + * @param instance + * @return uint8_t + */ +uint8_t CANCommIsOnline(CANCommInstance *instance); + +#endif // !CAN_COMM_H \ No newline at end of file diff --git a/modules/can_comm/can_comm.md b/modules/can_comm/can_comm.md new file mode 100644 index 0000000..5ebe50e --- /dev/null +++ b/modules/can_comm/can_comm.md @@ -0,0 +1,140 @@ +# can_comm + + neozng1@hnu.edu.cn
+ +> TODO: +> +> 1. 对`CANCommGet()`进行修改,使得其可以返回数据是否更新的相关信息。 + +## 重要提醒 + +如果传输过程中出现多次丢包或长度校验不通过,尤其是传输长度较大的时候,请开启CAN的Auto Retransmission,并尝试修改CANComm实例的发送和接受ID(以提高在总线仲裁中的优先级)。 + +## 总览和封装说明 + +CAN comm是用于CAN多机通信的模块。你不需要关心实现的协议,**只需要传入你想发送/接收的结构体的长度**(通过`sizeof()`获取)即可。单帧发送长度目前限制为60字节,如果需要加长可以在`can_comm.h`中修改`CAN_COMM_MAX_BUFFSIZE`的定义值。注意CAN的负载以及使用此模块的发送频率,否则可能造成堵塞。 + +## 代码结构 + +.h中放置的是数据定义和外部接口,以及协议的定义和宏,.c中包含一些私有函数。 + +## 外部接口 + +```c +CANCommInstance *CANCommInit(CANComm_Init_Config_s* comm_config); +void CANCommSend(CANCommInstance *instance, uint8_t *data); +void *CANCommGet(CANCommInstance *instance); +uint8_t CANCommIsOnline(CANCommInstance *instance); +``` + +第一个函数将会初始化一个CANComm实例,返回其指针。使用CANComm进行通信的应用应该保存返回的指针。初始化需要传入一个初始化结构体。请在应用初始化的时候调用该函数。推荐的结构体配置方式如下: + +```c +/* 初始化结构体的定义 */ +typedef struct +{ + can_instance_config_s can_config; + uint8_t send_data_len; //发送数据长度 + uint8_t recv_data_len; //接收数据长度,两者请用sizeof获取 +} CANComm_Init_Config_s; + +CANComm_Init_Config_s cconfig = { + .can_config = { + .can_handle=&hcan1, + .tx_id=0x02, + .rx_id=0x03}, + .send_data_len = sizeof(your_data_structure), + .recv_data_len = sizeof(recv_data_structure) +}; +``` + +第二个函数将会通过CAN发送一帧数据。这里的“帧”不是CAN的一帧报文,而是你使用的数据。在CANComm初始化的时候,使用sizeof获得你要发送的数据的长度。调用此函数时,将你的数据结构或数据cast成`u8`类型的指针传入即可。==**特别注意,你的结构体需要使用预编译指令`#pragma pack(1)`以及`#pragma pack()`包裹**==,从而进行字节压缩而不进行字节对齐,如: + +```c +#pragma pack(1) +typedef struct +{ + uint8_t aa; + float bb; + double cc; + uint16_t dd; +} some_struct; +#pragma pack() +``` + +只有这样,这个结构体才不会进行padding扩充字节实现字节对齐。你可以尝试一下,如果不使用pack处理,上面的结构体将会占据18个字节以上的空间;开启pack后,会降低至15。更多关于字节对齐的内容,自行查询。 + +> 后期可能更新字节对齐和内存访问相关的教程。 + +`CANCommGet()`是获取来自CANComm接收到的数据的接口,返回值为一个void类型指针,你需要通过**强制类型转换**将其变为你设定的接收类型指针,然后就可以访问其数据了。 + +## 私有函数和变量 + +```c +static CANCommInstance *can_comm_instance[MX_CAN_COMM_COUNT] = {NULL}; +static uint8_t idx; +static void CANCommResetRx(CANCommInstance *ins); +static void CANCommRxCallback(can_instance *_instance); +``` + +第一个指针数组保存所有的can comm实例,从而在callback中区分不同实例。idx是初始化使用的索引,用于确定每个can comm实例指针存放的位置。 + +`CANCommResetRx()`在`CANCommRxCallback()`中多次被调用,用于清空接收缓冲区。 + +`CANCommRxCallback()`是CAN comm初始化can实例时的回调函数,用于can接收中断,进行协议解析。 + +## 使用范例 + +例如,这里要发送的数据是一个float,接收的数据是如下的`struct`,**==注意要使用pack==**: + +```c +#pragma pack(1) +struct test +{ + float aa; + float bb; + float cc; + uint16_t dd; +}; +#pragma pack() +``` + +初始化时设置如下: + +```c +CANComm_Init_Config_s cconfig = { + .can_config = { + .can_handle=&hcan1, + .tx_id=0x02, + .rx_id=0x03}, + .send_data_len = sizeof(float), + .recv_data_len = sizeof(struct test) +}; +CANCommInstance* ins = CANCommInit(&cconfig); +``` + +通过`CANCommGet()`并使用强制类型转换获得接收到的数据指针: + +```c +struct test* data_ptr=(struct test*)CANCommGet(ins) +``` + +发送通过`CANCommSend()`,建议使用强制类型转换: + +```c +float tx=114.514; +CANCommSend(ins, (uint8_t*)&tx); +``` + +## 接收解析流程 + +CAN comm的通信协议如下: + +| 帧头 | 数据长度 | 数据 | crc8校验 | 帧尾 | +| ----------- | -------- | ---------------- | -------- | ----------- | +| 's'(0x73) | 0~255 | 最大60(可修改) | 校验码 | 'e'(0x65) | +| 1-byte | 1-byte | n-byte | 1-byte | 1-byte | + +接收的流程见代码注释。 + +流程图如下:![未命名文件](../../.assets/CANcomm.png) diff --git a/modules/daemon/daemon.c b/modules/daemon/daemon.c new file mode 100644 index 0000000..03021f8 --- /dev/null +++ b/modules/daemon/daemon.c @@ -0,0 +1,56 @@ +#include "daemon.h" +#include "bsp_dwt.h" // 后续通过定时器来计时? +#include "stdlib.h" +#include "memory.h" +#include "buzzer.h" + +// 用于保存所有的daemon instance +static DaemonInstance *daemon_instances[DAEMON_MX_CNT] = {NULL}; +static uint8_t idx; // 用于记录当前的daemon instance数量,配合回调使用 + +DaemonInstance *DaemonRegister(Daemon_Init_Config_s *config) +{ + DaemonInstance *instance = (DaemonInstance *)malloc(sizeof(DaemonInstance)); + memset(instance, 0, sizeof(DaemonInstance)); + + instance->owner_id = config->owner_id; + instance->reload_count = config->reload_count == 0 ? 100 : config->reload_count; // 默认值为100 + instance->callback = config->callback; + instance->temp_count = config->init_count == 0 ? 100 : config->init_count; // 默认值为100,初始计数 + + instance->temp_count = config->reload_count; + daemon_instances[idx++] = instance; + return instance; +} + +/* "喂狗"函数 */ +void DaemonReload(DaemonInstance *instance) +{ + instance->temp_count = instance->reload_count; +} + +uint8_t DaemonIsOnline(DaemonInstance *instance) +{ + return instance->temp_count > 0; +} + +void DaemonTask() +{ + DaemonInstance *dins; // 提高可读性同时降低访存开销 + for (size_t i = 0; i < idx; ++i) + { + + dins = daemon_instances[i]; + if (dins->temp_count > 0) // 如果计数器还有值,说明上一次喂狗后还没有超时,则计数器减一 + dins->temp_count--; + else if (dins->callback) // 等于零说明超时了,调用回调函数(如果有的话) + { + dins->callback(dins->owner_id); // module内可以将owner_id强制类型转换成自身类型从而调用特定module的offline callback + // @todo 为蜂鸣器/led等增加离线报警的功能,非常关键! + } + } +} +// (需要id的原因是什么?) 下面是copilot的回答! +// 需要id的原因是因为有些module可能有多个实例,而我们需要知道具体是哪个实例offline +// 如果只有一个实例,则可以不用id,直接调用callback即可 +// 比如: 有一个module叫做"电机",它有两个实例,分别是"电机1"和"电机2",那么我们调用电机的离线处理函数时就需要知道是哪个电机offline diff --git a/modules/daemon/daemon.h b/modules/daemon/daemon.h new file mode 100644 index 0000000..b4856d9 --- /dev/null +++ b/modules/daemon/daemon.h @@ -0,0 +1,62 @@ +#ifndef MONITOR_H +#define MONITOR_H + +#include "stdint.h" +#include "string.h" + +#define DAEMON_MX_CNT 64 + +/* 模块离线处理函数指针 */ +typedef void (*offline_callback)(void *); + +/* daemon结构体定义 */ +typedef struct daemon_ins +{ + uint16_t reload_count; // 重载值 + offline_callback callback; // 异常处理函数,当模块发生异常时会被调用 + + uint16_t temp_count; // 当前值,减为零说明模块离线或异常 + void *owner_id; // daemon实例的地址,初始化的时候填入 +} DaemonInstance; + +/* daemon初始化配置 */ +typedef struct +{ + uint16_t reload_count; // 实际上这是app唯一需要设置的值? + uint16_t init_count; // 上线等待时间,有些模块需要收到主控的指令才会反馈报文,或pc等需要开机时间 + offline_callback callback; // 异常处理函数,当模块发生异常时会被调用 + + void *owner_id; // id取拥有daemon的实例的地址,如DJIMotorInstance*,cast成void*类型 +} Daemon_Init_Config_s; + +/** + * @brief 注册一个daemon实例 + * + * @param config 初始化配置 + * @return DaemonInstance* 返回实例指针 + */ +DaemonInstance *DaemonRegister(Daemon_Init_Config_s *config); + +/** + * @brief 当模块收到新的数据或进行其他动作时,调用该函数重载temp_count,相当于"喂狗" + * + * @param instance daemon实例指针 + */ +void DaemonReload(DaemonInstance *instance); + +/** + * @brief 确认模块是否离线 + * + * @param instance daemon实例指针 + * @return uint8_t 若在线且工作正常,返回1;否则返回零. 后续根据异常类型和离线状态等进行优化. + */ +uint8_t DaemonIsOnline(DaemonInstance *instance); + +/** + * @brief 放入rtos中,会给每个daemon实例的temp_count按频率进行递减操作. + * 模块成功接受数据或成功操作则会重载temp_count的值为reload_count. + * + */ +void DaemonTask(); + +#endif // !MONITOR_H \ No newline at end of file diff --git a/modules/daemon/daemon.md b/modules/daemon/daemon.md new file mode 100644 index 0000000..103f77d --- /dev/null +++ b/modules/daemon/daemon.md @@ -0,0 +1,36 @@ +# daemon + +neozng1@hnu.edu.cn
+ +用于监测模块和应用运行情况的module(和官方代码中的deteck task作用相同) + +## 使用范例 + +要使用该module,则包含`daemon.h`的头文件,并在使用daemon的文件中保留一个daemon的指针。 + +初始化的时候,要传入以下参数: + +```c +typedef struct +{ + uint16_t reload_count; // 实际上这是app唯一需要设置的值? + offline_callback callback; // 异常处理函数,当模块发生异常时会被调用 + void *owner_id; // id取拥有daemon的实例的地址,如DJIMotorInstance*,cast成void*类型 +} Daemon_Init_Config_s; +``` + +`reload_count`是”喂狗“时的重载值,一般根据你希望的离线容许时间和模块接收数据/访问数据的频率确定。daemonTask递减计数器的频率是100hz(在HAL_N_Middlewares/Src/freertos.c中查看任务),你可以据此以及模块收到数据/操作的频率设置reload_count。 + +`daemon_task()`会在实时系统中以1kHz的频率运行,每次运行该任务,都会将所有daemon实例当前的count进行自减操作,当count减为零,则说明模块已经很久没有上线(处于deactivated状态,即没有收到数据,也没有进行其他读写操作)。 + +`offline_callback`是模块离线的回调函数,即当包含daemon的模块发生离线情况时,该函数会被调用以应对离线情况,如重启模块,重新初始化等。如果没有则传入`NULL`即可。 + +`owner_id`即模块取自身地址并通过强制类型转换化为`void*`类型,用于拥有多个实例的模块在`offline_callback`中区分自身。如多个电机都使用一个相同的`offline_callback`,那么在调用回调函数的时候就可以通过该指针来访问某个特定的电机。 + +> 这种方法也称作“parent pointer”,即**保存拥有指向自身的指针对象的地址**。这样就可以在特定的情况下通过自身来访问自己的父对象。 + + + +## 具体实现 + +即`DaemonTask()`,在操作系统中以1kHz运行。注释详细,请参见`daemon.c`。 \ No newline at end of file diff --git a/modules/encoder/encoder.md b/modules/encoder/encoder.md new file mode 100644 index 0000000..65a08e8 --- /dev/null +++ b/modules/encoder/encoder.md @@ -0,0 +1,6 @@ +# encoder + +提供对光电和霍尔磁编码器的支持. + +可能需要新增bsp_tim以提供period lapse和tim编码器计数的功能. + diff --git a/modules/general_def.h b/modules/general_def.h new file mode 100644 index 0000000..725e645 --- /dev/null +++ b/modules/general_def.h @@ -0,0 +1,17 @@ +#ifndef GENERAL_DEF_H +#define GENERAL_DEF_H + +// 一些module的通用数值型定义,注意条件macro兼容,一些宏可能在math.h中已经定义过了 + +#ifndef PI +#define PI 3.1415926535f +#endif +#define PI2 (PI * 2.0f) // 2 pi + +#define RAD_2_DEGREE 57.2957795f // 180/pi +#define DEGREE_2_RAD 0.01745329252f // pi/180 + +#define RPM_2_ANGLE_PER_SEC 6.0f // ×360°/60sec +#define RPM_2_RAD_PER_SEC 0.104719755f // ×2pi/60sec + +#endif // !GENERAL_DEF_H \ No newline at end of file diff --git a/modules/imu/BMI088Middleware.c b/modules/imu/BMI088Middleware.c new file mode 100644 index 0000000..b942e34 --- /dev/null +++ b/modules/imu/BMI088Middleware.c @@ -0,0 +1,29 @@ +#include "BMI088Middleware.h" +#include "main.h" + +SPI_HandleTypeDef *BMI088_SPI; + +void BMI088_ACCEL_NS_L(void) +{ + HAL_GPIO_WritePin(CS1_ACCEL_GPIO_Port, CS1_ACCEL_Pin, GPIO_PIN_RESET); +} +void BMI088_ACCEL_NS_H(void) +{ + HAL_GPIO_WritePin(CS1_ACCEL_GPIO_Port, CS1_ACCEL_Pin, GPIO_PIN_SET); +} + +void BMI088_GYRO_NS_L(void) +{ + HAL_GPIO_WritePin(CS1_GYRO_GPIO_Port, CS1_GYRO_Pin, GPIO_PIN_RESET); +} +void BMI088_GYRO_NS_H(void) +{ + HAL_GPIO_WritePin(CS1_GYRO_GPIO_Port, CS1_GYRO_Pin, GPIO_PIN_SET); +} + +uint8_t BMI088_read_write_byte(uint8_t txdata) +{ + uint8_t rx_data; + HAL_SPI_TransmitReceive(BMI088_SPI, &txdata, &rx_data, 1, 1000); + return rx_data; +} diff --git a/modules/imu/BMI088Middleware.h b/modules/imu/BMI088Middleware.h new file mode 100644 index 0000000..0866143 --- /dev/null +++ b/modules/imu/BMI088Middleware.h @@ -0,0 +1,32 @@ +#ifndef BMI088MIDDLEWARE_H +#define BMI088MIDDLEWARE_H + +#include "main.h" + +#define BMI088_USE_SPI +//#define BMI088_USE_IIC + +/* +#define CS1_ACCEL_GPIO_Port ACCEL_NSS_GPIO_Port +#define CS1_ACCEL_Pin ACCEL_NSS_Pin +#define CS1_GYRO_GPIO_Port GYRO_NSS_GPIO_Port +#define CS1_GYRO_Pin GYRO_NSS_Pin +*/ + + +#if defined(BMI088_USE_SPI) +extern void BMI088_ACCEL_NS_L(void); +extern void BMI088_ACCEL_NS_H(void); + +extern void BMI088_GYRO_NS_L(void); +extern void BMI088_GYRO_NS_H(void); + +extern uint8_t BMI088_read_write_byte(uint8_t reg); + +extern SPI_HandleTypeDef *BMI088_SPI; + +#elif defined(BMI088_USE_IIC) + +#endif + +#endif diff --git a/modules/imu/BMI088driver.c b/modules/imu/BMI088driver.c new file mode 100644 index 0000000..e681428 --- /dev/null +++ b/modules/imu/BMI088driver.c @@ -0,0 +1,405 @@ +#include "BMI088driver.h" +#include "BMI088reg.h" +#include "BMI088Middleware.h" +#include "bsp_dwt.h" +#include "bsp_log.h" +#include+ +#pragma message "this is a legacy support. test the new BMI088 module as soon as possible." + +float BMI088_ACCEL_SEN = BMI088_ACCEL_6G_SEN; +float BMI088_GYRO_SEN = BMI088_GYRO_2000_SEN; + +static uint8_t res = 0; +static uint8_t write_reg_num = 0; +static uint8_t error = BMI088_NO_ERROR; +float gyroDiff[3], gNormDiff; + +uint8_t caliOffset = 1; +int16_t caliCount = 0; + +IMU_Data_t BMI088; + +#if defined(BMI088_USE_SPI) + +#define BMI088_accel_write_single_reg(reg, data) \ + { \ + BMI088_ACCEL_NS_L(); \ + BMI088_write_single_reg((reg), (data)); \ + BMI088_ACCEL_NS_H(); \ + } +#define BMI088_accel_read_single_reg(reg, data) \ + { \ + BMI088_ACCEL_NS_L(); \ + BMI088_read_write_byte((reg) | 0x80); \ + BMI088_read_write_byte(0x55); \ + (data) = BMI088_read_write_byte(0x55); \ + BMI088_ACCEL_NS_H(); \ + } +#define BMI088_accel_read_muli_reg(reg, data, len) \ + { \ + BMI088_ACCEL_NS_L(); \ + BMI088_read_write_byte((reg) | 0x80); \ + BMI088_read_muli_reg(reg, data, len); \ + BMI088_ACCEL_NS_H(); \ + } + +#define BMI088_gyro_write_single_reg(reg, data) \ + { \ + BMI088_GYRO_NS_L(); \ + BMI088_write_single_reg((reg), (data)); \ + BMI088_GYRO_NS_H(); \ + } +#define BMI088_gyro_read_single_reg(reg, data) \ + { \ + BMI088_GYRO_NS_L(); \ + BMI088_read_single_reg((reg), &(data)); \ + BMI088_GYRO_NS_H(); \ + } +#define BMI088_gyro_read_muli_reg(reg, data, len) \ + { \ + BMI088_GYRO_NS_L(); \ + BMI088_read_muli_reg((reg), (data), (len)); \ + BMI088_GYRO_NS_H(); \ + } + +static void BMI088_write_single_reg(uint8_t reg, uint8_t data); +static void BMI088_read_single_reg(uint8_t reg, uint8_t *return_data); +static void BMI088_read_muli_reg(uint8_t reg, uint8_t *buf, uint8_t len); + +#elif defined(BMI088_USE_IIC) +#endif + +static uint8_t BMI088_Accel_Init_Table[BMI088_WRITE_ACCEL_REG_NUM][3] = + { + {BMI088_ACC_PWR_CTRL, BMI088_ACC_ENABLE_ACC_ON, BMI088_ACC_PWR_CTRL_ERROR}, + {BMI088_ACC_PWR_CONF, BMI088_ACC_PWR_ACTIVE_MODE, BMI088_ACC_PWR_CONF_ERROR}, + {BMI088_ACC_CONF, BMI088_ACC_NORMAL | BMI088_ACC_800_HZ | BMI088_ACC_CONF_MUST_Set, BMI088_ACC_CONF_ERROR}, + {BMI088_ACC_RANGE, BMI088_ACC_RANGE_6G, BMI088_ACC_RANGE_ERROR}, + {BMI088_INT1_IO_CTRL, BMI088_ACC_INT1_IO_ENABLE | BMI088_ACC_INT1_GPIO_PP | BMI088_ACC_INT1_GPIO_LOW, BMI088_INT1_IO_CTRL_ERROR}, + {BMI088_INT_MAP_DATA, BMI088_ACC_INT1_DRDY_INTERRUPT, BMI088_INT_MAP_DATA_ERROR} + +}; + +static uint8_t BMI088_Gyro_Init_Table[BMI088_WRITE_GYRO_REG_NUM][3] = + { + {BMI088_GYRO_RANGE, BMI088_GYRO_2000, BMI088_GYRO_RANGE_ERROR}, + {BMI088_GYRO_BANDWIDTH, BMI088_GYRO_2000_230_HZ | BMI088_GYRO_BANDWIDTH_MUST_Set, BMI088_GYRO_BANDWIDTH_ERROR}, + {BMI088_GYRO_LPM1, BMI088_GYRO_NORMAL_MODE, BMI088_GYRO_LPM1_ERROR}, + {BMI088_GYRO_CTRL, BMI088_DRDY_ON, BMI088_GYRO_CTRL_ERROR}, + {BMI088_GYRO_INT3_INT4_IO_CONF, BMI088_GYRO_INT3_GPIO_PP | BMI088_GYRO_INT3_GPIO_LOW, BMI088_GYRO_INT3_INT4_IO_CONF_ERROR}, + {BMI088_GYRO_INT3_INT4_IO_MAP, BMI088_GYRO_DRDY_IO_INT3, BMI088_GYRO_INT3_INT4_IO_MAP_ERROR} + +}; + +static void Calibrate_MPU_Offset(IMU_Data_t *bmi088); + +uint8_t BMI088Init(SPI_HandleTypeDef *bmi088_SPI, uint8_t calibrate) +{ + BMI088_SPI = bmi088_SPI; + error = BMI088_NO_ERROR; + + error |= bmi088_accel_init(); + error |= bmi088_gyro_init(); + if (calibrate) + Calibrate_MPU_Offset(&BMI088); + else + { + BMI088.GyroOffset[0] = GxOFFSET; + BMI088.GyroOffset[1] = GyOFFSET; + BMI088.GyroOffset[2] = GzOFFSET; + BMI088.gNorm = gNORM; + BMI088.AccelScale = 9.81f / BMI088.gNorm; + BMI088.TempWhenCali = 40; + } + + return error; +} + +void Calibrate_MPU_Offset(IMU_Data_t *bmi088) +{ + static float startTime; + static uint16_t CaliTimes = 6000; + uint8_t buf[8] = {0, 0, 0, 0, 0, 0}; + int16_t bmi088_raw_temp; + float gyroMax[3], gyroMin[3]; + float gNormTemp, gNormMax, gNormMin; + + startTime = DWT_GetTimeline_s(); + do + { + if (DWT_GetTimeline_s() - startTime > 12) + { + // ��???? + bmi088->GyroOffset[0] = GxOFFSET; + bmi088->GyroOffset[1] = GyOFFSET; + bmi088->GyroOffset[2] = GzOFFSET; + bmi088->gNorm = gNORM; + bmi088->TempWhenCali = 40; + LOGERROR("[BMI088] Calibrate Failed! Use offline params"); + break; + } + + DWT_Delay(0.005); + bmi088->gNorm = 0; + bmi088->GyroOffset[0] = 0; + bmi088->GyroOffset[1] = 0; + bmi088->GyroOffset[2] = 0; + + for (uint16_t i = 0; i < CaliTimes; ++i) + { + BMI088_accel_read_muli_reg(BMI088_ACCEL_XOUT_L, buf, 6); + bmi088_raw_temp = (int16_t)((buf[1]) << 8) | buf[0]; + bmi088->Accel[0] = bmi088_raw_temp * BMI088_ACCEL_SEN; + bmi088_raw_temp = (int16_t)((buf[3]) << 8) | buf[2]; + bmi088->Accel[1] = bmi088_raw_temp * BMI088_ACCEL_SEN; + bmi088_raw_temp = (int16_t)((buf[5]) << 8) | buf[4]; + bmi088->Accel[2] = bmi088_raw_temp * BMI088_ACCEL_SEN; + gNormTemp = sqrtf(bmi088->Accel[0] * bmi088->Accel[0] + + bmi088->Accel[1] * bmi088->Accel[1] + + bmi088->Accel[2] * bmi088->Accel[2]); + bmi088->gNorm += gNormTemp; + + BMI088_gyro_read_muli_reg(BMI088_GYRO_CHIP_ID, buf, 8); + if (buf[0] == BMI088_GYRO_CHIP_ID_VALUE) + { + bmi088_raw_temp = (int16_t)((buf[3]) << 8) | buf[2]; + bmi088->Gyro[0] = bmi088_raw_temp * BMI088_GYRO_SEN; + bmi088->GyroOffset[0] += bmi088->Gyro[0]; + bmi088_raw_temp = (int16_t)((buf[5]) << 8) | buf[4]; + bmi088->Gyro[1] = bmi088_raw_temp * BMI088_GYRO_SEN; + bmi088->GyroOffset[1] += bmi088->Gyro[1]; + bmi088_raw_temp = (int16_t)((buf[7]) << 8) | buf[6]; + bmi088->Gyro[2] = bmi088_raw_temp * BMI088_GYRO_SEN; + bmi088->GyroOffset[2] += bmi088->Gyro[2]; + } + + if (i == 0) + { + gNormMax = gNormTemp; + gNormMin = gNormTemp; + for (uint8_t j = 0; j < 3; ++j) + { + gyroMax[j] = bmi088->Gyro[j]; + gyroMin[j] = bmi088->Gyro[j]; + } + } + else + { + if (gNormTemp > gNormMax) + gNormMax = gNormTemp; + if (gNormTemp < gNormMin) + gNormMin = gNormTemp; + for (uint8_t j = 0; j < 3; ++j) + { + if (bmi088->Gyro[j] > gyroMax[j]) + gyroMax[j] = bmi088->Gyro[j]; + if (bmi088->Gyro[j] < gyroMin[j]) + gyroMin[j] = bmi088->Gyro[j]; + } + } + + gNormDiff = gNormMax - gNormMin; + for (uint8_t j = 0; j < 3; ++j) + gyroDiff[j] = gyroMax[j] - gyroMin[j]; + if (gNormDiff > 0.5f || + gyroDiff[0] > 0.15f || + gyroDiff[1] > 0.15f || + gyroDiff[2] > 0.15f) + { + LOGWARNING("[bmi088] calibration was interrupted\n"); + break; + } + + DWT_Delay(0.0005); + } + + bmi088->gNorm /= (float)CaliTimes; + for (uint8_t i = 0; i < 3; ++i) + bmi088->GyroOffset[i] /= (float)CaliTimes; + + BMI088_accel_read_muli_reg(BMI088_TEMP_M, buf, 2); + bmi088_raw_temp = (int16_t)((buf[0] << 3) | (buf[1] >> 5)); + if (bmi088_raw_temp > 1023) + bmi088_raw_temp -= 2048; + bmi088->TempWhenCali = bmi088_raw_temp * BMI088_TEMP_FACTOR + BMI088_TEMP_OFFSET; + + caliCount++; + } while (gNormDiff > 0.5f || + fabsf(bmi088->gNorm - 9.8f) > 0.5f || + gyroDiff[0] > 0.15f || + gyroDiff[1] > 0.15f || + gyroDiff[2] > 0.15f || + fabsf(bmi088->GyroOffset[0]) > 0.01f || + fabsf(bmi088->GyroOffset[1]) > 0.01f || + fabsf(bmi088->GyroOffset[2]) > 0.01f); + + bmi088->AccelScale = 9.81f / bmi088->gNorm; +} + +uint8_t bmi088_accel_init(void) +{ + // check commiunication + BMI088_accel_read_single_reg(BMI088_ACC_CHIP_ID, res); + DWT_Delay(0.001); + BMI088_accel_read_single_reg(BMI088_ACC_CHIP_ID, res); + DWT_Delay(0.001); + // accel software reset + BMI088_accel_write_single_reg(BMI088_ACC_SOFTRESET, BMI088_ACC_SOFTRESET_VALUE); + // HAL_Delay(BMI088_LONG_DELAY_TIME); + DWT_Delay(0.08); + // check commiunication is normal after reset + BMI088_accel_read_single_reg(BMI088_ACC_CHIP_ID, res); + DWT_Delay(0.001); + BMI088_accel_read_single_reg(BMI088_ACC_CHIP_ID, res); + DWT_Delay(0.001); + + // check the "who am I" + if (res != BMI088_ACC_CHIP_ID_VALUE) + { + LOGERROR("[bmi088] Can not read bmi088 acc chip id"); + return BMI088_NO_SENSOR; + } + + // set accel sonsor config and check + for (write_reg_num = 0; write_reg_num < BMI088_WRITE_ACCEL_REG_NUM; write_reg_num++) + { + + BMI088_accel_write_single_reg(BMI088_Accel_Init_Table[write_reg_num][0], BMI088_Accel_Init_Table[write_reg_num][1]); + DWT_Delay(0.001); + + BMI088_accel_read_single_reg(BMI088_Accel_Init_Table[write_reg_num][0], res); + DWT_Delay(0.001); + + if (res != BMI088_Accel_Init_Table[write_reg_num][1]) + { + // write_reg_num--; + // return BMI088_Accel_Init_Table[write_reg_num][2]; + error |= BMI088_Accel_Init_Table[write_reg_num][2]; + } + } + return BMI088_NO_ERROR; +} + +uint8_t bmi088_gyro_init(void) +{ + // check commiunication + BMI088_gyro_read_single_reg(BMI088_GYRO_CHIP_ID, res); + DWT_Delay(0.001); + BMI088_gyro_read_single_reg(BMI088_GYRO_CHIP_ID, res); + DWT_Delay(0.001); + + // reset the gyro sensor + BMI088_gyro_write_single_reg(BMI088_GYRO_SOFTRESET, BMI088_GYRO_SOFTRESET_VALUE); + // HAL_Delay(BMI088_LONG_DELAY_TIME); + DWT_Delay(0.08); + // check commiunication is normal after reset + BMI088_gyro_read_single_reg(BMI088_GYRO_CHIP_ID, res); + DWT_Delay(0.001); + BMI088_gyro_read_single_reg(BMI088_GYRO_CHIP_ID, res); + DWT_Delay(0.001); + + // check the "who am I" + if (res != BMI088_GYRO_CHIP_ID_VALUE) + { + LOGERROR("[bmi088] Can not read bmi088 gyro chip id"); + return BMI088_NO_SENSOR; + } + + // set gyro sonsor config and check + for (write_reg_num = 0; write_reg_num < BMI088_WRITE_GYRO_REG_NUM; write_reg_num++) + { + + BMI088_gyro_write_single_reg(BMI088_Gyro_Init_Table[write_reg_num][0], BMI088_Gyro_Init_Table[write_reg_num][1]); + DWT_Delay(0.001); + + BMI088_gyro_read_single_reg(BMI088_Gyro_Init_Table[write_reg_num][0], res); + DWT_Delay(0.001); + + if (res != BMI088_Gyro_Init_Table[write_reg_num][1]) + { + write_reg_num--; + // return BMI088_Gyro_Init_Table[write_reg_num][2]; + error |= BMI088_Accel_Init_Table[write_reg_num][2]; + } + } + + return BMI088_NO_ERROR; +} + +void BMI088_Read(IMU_Data_t *bmi088) +{ + static uint8_t buf[8] = {0}; + static int16_t bmi088_raw_temp; + + BMI088_accel_read_muli_reg(BMI088_ACCEL_XOUT_L, buf, 6); + + bmi088_raw_temp = (int16_t)((buf[1]) << 8) | buf[0]; + bmi088->Accel[0] = bmi088_raw_temp * BMI088_ACCEL_SEN * bmi088->AccelScale; + bmi088_raw_temp = (int16_t)((buf[3]) << 8) | buf[2]; + bmi088->Accel[1] = bmi088_raw_temp * BMI088_ACCEL_SEN * bmi088->AccelScale; + bmi088_raw_temp = (int16_t)((buf[5]) << 8) | buf[4]; + bmi088->Accel[2] = bmi088_raw_temp * BMI088_ACCEL_SEN * bmi088->AccelScale; + + BMI088_gyro_read_muli_reg(BMI088_GYRO_CHIP_ID, buf, 8); + if (buf[0] == BMI088_GYRO_CHIP_ID_VALUE) + { + if (caliOffset) + { + bmi088_raw_temp = (int16_t)((buf[3]) << 8) | buf[2]; + bmi088->Gyro[0] = bmi088_raw_temp * BMI088_GYRO_SEN - bmi088->GyroOffset[0]; + bmi088_raw_temp = (int16_t)((buf[5]) << 8) | buf[4]; + bmi088->Gyro[1] = bmi088_raw_temp * BMI088_GYRO_SEN - bmi088->GyroOffset[1]; + bmi088_raw_temp = (int16_t)((buf[7]) << 8) | buf[6]; + bmi088->Gyro[2] = bmi088_raw_temp * BMI088_GYRO_SEN - bmi088->GyroOffset[2]; + } + else + { + bmi088_raw_temp = (int16_t)((buf[3]) << 8) | buf[2]; + bmi088->Gyro[0] = bmi088_raw_temp * BMI088_GYRO_SEN; + bmi088_raw_temp = (int16_t)((buf[5]) << 8) | buf[4]; + bmi088->Gyro[1] = bmi088_raw_temp * BMI088_GYRO_SEN; + bmi088_raw_temp = (int16_t)((buf[7]) << 8) | buf[6]; + bmi088->Gyro[2] = bmi088_raw_temp * BMI088_GYRO_SEN; + } + } + BMI088_accel_read_muli_reg(BMI088_TEMP_M, buf, 2); + + bmi088_raw_temp = (int16_t)((buf[0] << 3) | (buf[1] >> 5)); + + if (bmi088_raw_temp > 1023) + { + bmi088_raw_temp -= 2048; + } + + bmi088->Temperature = bmi088_raw_temp * BMI088_TEMP_FACTOR + BMI088_TEMP_OFFSET; +} + +#if defined(BMI088_USE_SPI) + +static void BMI088_write_single_reg(uint8_t reg, uint8_t data) +{ + BMI088_read_write_byte(reg); + BMI088_read_write_byte(data); +} + +static void BMI088_read_single_reg(uint8_t reg, uint8_t *return_data) +{ + BMI088_read_write_byte(reg | 0x80); + *return_data = BMI088_read_write_byte(0x55); +} + +static void BMI088_read_muli_reg(uint8_t reg, uint8_t *buf, uint8_t len) +{ + BMI088_read_write_byte(reg | 0x80); + + while (len != 0) + { + *buf = BMI088_read_write_byte(0x55); + buf++; + len--; + } +} +#elif defined(BMI088_USE_IIC) + +#endif diff --git a/modules/imu/BMI088driver.h b/modules/imu/BMI088driver.h new file mode 100644 index 0000000..2fd30fb --- /dev/null +++ b/modules/imu/BMI088driver.h @@ -0,0 +1,133 @@ +#ifndef BMI088DRIVER_H +#define BMI088DRIVER_H + +#include "stdint.h" +#include "main.h" + +#define BMI088_TEMP_FACTOR 0.125f +#define BMI088_TEMP_OFFSET 23.0f + +#define BMI088_WRITE_ACCEL_REG_NUM 6 +#define BMI088_WRITE_GYRO_REG_NUM 6 + +#define BMI088_GYRO_DATA_READY_BIT 0 +#define BMI088_ACCEL_DATA_READY_BIT 1 +#define BMI088_ACCEL_TEMP_DATA_READY_BIT 2 + +#define BMI088_LONG_DELAY_TIME 80 +#define BMI088_COM_WAIT_SENSOR_TIME 150 + +#define BMI088_ACCEL_IIC_ADDRESSE (0x18 << 1) +#define BMI088_GYRO_IIC_ADDRESSE (0x68 << 1) + +#define BMI088_ACCEL_3G_SEN 0.0008974358974f +#define BMI088_ACCEL_6G_SEN 0.00179443359375f +#define BMI088_ACCEL_12G_SEN 0.0035888671875f +#define BMI088_ACCEL_24G_SEN 0.007177734375f + +#define BMI088_GYRO_2000_SEN 0.00106526443603169529841533860381f +#define BMI088_GYRO_1000_SEN 0.00053263221801584764920766930190693f +#define BMI088_GYRO_500_SEN 0.00026631610900792382460383465095346f +#define BMI088_GYRO_250_SEN 0.00013315805450396191230191732547673f +#define BMI088_GYRO_125_SEN 0.000066579027251980956150958662738366f + +// ���ֶ��� +#if INFANTRY_ID == 0 +#define GxOFFSET 0.00247530174f +#define GyOFFSET 0.000393082853f +#define GzOFFSET 0.000393082853f +#define gNORM 9.69293118f +#elif INFANTRY_ID == 1 +#define GxOFFSET 0.0007222f +#define GyOFFSET -0.001786f +#define GzOFFSET 0.0004346f +#define gNORM 9.876785f +#elif INFANTRY_ID == 2 +#define GxOFFSET 0.0007222f +#define GyOFFSET -0.001786f +#define GzOFFSET 0.0004346f +#define gNORM 9.876785f +#elif INFANTRY_ID == 3 +#define GxOFFSET 0.00270364084f +#define GyOFFSET -0.000532632112f +#define GzOFFSET 0.00478090625f +#define gNORM 9.73574924f +#elif INFANTRY_ID == 4 +#define GxOFFSET 0.0007222f +#define GyOFFSET -0.001786f +#define GzOFFSET 0.0004346f +#define gNORM 9.876785f +#endif + +/* IMU数据结构体 */ +typedef struct +{ + float Accel[3]; + + float Gyro[3]; + + float TempWhenCali; + float Temperature; + + float AccelScale; + float GyroOffset[3]; + + float gNorm; +} IMU_Data_t; + +/* BMI088错误码枚举 */ +enum +{ + BMI088_NO_ERROR = 0x00, + BMI088_ACC_PWR_CTRL_ERROR = 0x01, + BMI088_ACC_PWR_CONF_ERROR = 0x02, + BMI088_ACC_CONF_ERROR = 0x03, + BMI088_ACC_SELF_TEST_ERROR = 0x04, + BMI088_ACC_RANGE_ERROR = 0x05, + BMI088_INT1_IO_CTRL_ERROR = 0x06, + BMI088_INT_MAP_DATA_ERROR = 0x07, + BMI088_GYRO_RANGE_ERROR = 0x08, + BMI088_GYRO_BANDWIDTH_ERROR = 0x09, + BMI088_GYRO_LPM1_ERROR = 0x0A, + BMI088_GYRO_CTRL_ERROR = 0x0B, + BMI088_GYRO_INT3_INT4_IO_CONF_ERROR = 0x0C, + BMI088_GYRO_INT3_INT4_IO_MAP_ERROR = 0x0D, + + BMI088_SELF_TEST_ACCEL_ERROR = 0x80, + BMI088_SELF_TEST_GYRO_ERROR = 0x40, + BMI088_NO_SENSOR = 0xFF, +}; + +extern IMU_Data_t BMI088; + +/** + * @brief 初始化BMI088,传入连接的SPI总线handle,以及是否进行在线标定 + * + * @param bmi088_SPI handle + * @param calibrate 1为进行在线标定,0使用离线数据 + * @return uint8_t 成功则返回BMI088_NO_ERROR + */ +extern uint8_t BMI088Init(SPI_HandleTypeDef *bmi088_SPI, uint8_t calibrate); + +/** + * @brief 加速计初始化 + * + * @return uint8_t + */ +extern uint8_t bmi088_accel_init(void); + +/** + * @brief 陀螺仪初始化 + * + * @return uint8_t + */ +extern uint8_t bmi088_gyro_init(void); + +/** + * @brief 读取一次BMI088的数据,包括gyro和accel + * + * @param bmi088 传入BMI088实例(结构体) + */ +extern void BMI088_Read(IMU_Data_t *bmi088); + +#endif diff --git a/modules/imu/BMI088reg.h b/modules/imu/BMI088reg.h new file mode 100644 index 0000000..f571f7e --- /dev/null +++ b/modules/imu/BMI088reg.h @@ -0,0 +1,180 @@ +#ifndef BMI088REG_H +#define BMI088REG_H + +#define BMI088_ACC_CHIP_ID 0x00 // the register is " Who am I " +#define BMI088_ACC_CHIP_ID_VALUE 0x1E + +#define BMI088_ACC_ERR_REG 0x02 +#define BMI088_ACCEL_CONGIF_ERROR_SHFITS 0x2 +#define BMI088_ACCEL_CONGIF_ERROR (1 << BMI088_ACCEL_CONGIF_ERROR_SHFITS) +#define BMI088_FATAL_ERROR_SHFITS 0x0 +#define BMI088_FATAL_ERROR (1 << BMI088_FATAL_ERROR) + +#define BMI088_ACC_STATUS 0x03 +#define BMI088_ACCEL_DRDY_SHFITS 0x7 +#define BMI088_ACCEL_DRDY (1 << BMI088_ACCEL_DRDY_SHFITS) + +#define BMI088_ACCEL_XOUT_L 0x12 +#define BMI088_ACCEL_XOUT_M 0x13 +#define BMI088_ACCEL_YOUT_L 0x14 +#define BMI088_ACCEL_YOUT_M 0x15 +#define BMI088_ACCEL_ZOUT_L 0x16 +#define BMI088_ACCEL_ZOUT_M 0x17 + +#define BMI088_SENSORTIME_DATA_L 0x18 +#define BMI088_SENSORTIME_DATA_M 0x19 +#define BMI088_SENSORTIME_DATA_H 0x1A + +#define BMI088_ACC_INT_STAT_1 0x1D +#define BMI088_ACCEL_DRDY_INTERRUPT_SHFITS 0x7 +#define BMI088_ACCEL_DRDY_INTERRUPT (1 << BMI088_ACCEL_DRDY_INTERRUPT_SHFITS) + +#define BMI088_TEMP_M 0x22 + +#define BMI088_TEMP_L 0x23 + +#define BMI088_ACC_CONF 0x40 +#define BMI088_ACC_CONF_MUST_Set 0x80 +#define BMI088_ACC_BWP_SHFITS 0x4 +#define BMI088_ACC_OSR4 (0x0 << BMI088_ACC_BWP_SHFITS) +#define BMI088_ACC_OSR2 (0x1 << BMI088_ACC_BWP_SHFITS) +#define BMI088_ACC_NORMAL (0x2 << BMI088_ACC_BWP_SHFITS) + +#define BMI088_ACC_ODR_SHFITS 0x0 +#define BMI088_ACC_12_5_HZ (0x5 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_25_HZ (0x6 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_50_HZ (0x7 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_100_HZ (0x8 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_200_HZ (0x9 << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_400_HZ (0xA << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_800_HZ (0xB << BMI088_ACC_ODR_SHFITS) +#define BMI088_ACC_1600_HZ (0xC << BMI088_ACC_ODR_SHFITS) + +#define BMI088_ACC_RANGE 0x41 + +#define BMI088_ACC_RANGE_SHFITS 0x0 +#define BMI088_ACC_RANGE_3G (0x0 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_6G (0x1 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_12G (0x2 << BMI088_ACC_RANGE_SHFITS) +#define BMI088_ACC_RANGE_24G (0x3 << BMI088_ACC_RANGE_SHFITS) + +#define BMI088_INT1_IO_CTRL 0x53 +#define BMI088_ACC_INT1_IO_ENABLE_SHFITS 0x3 +#define BMI088_ACC_INT1_IO_ENABLE (0x1 << BMI088_ACC_INT1_IO_ENABLE_SHFITS) +#define BMI088_ACC_INT1_GPIO_MODE_SHFITS 0x2 +#define BMI088_ACC_INT1_GPIO_PP (0x0 << BMI088_ACC_INT1_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT1_GPIO_OD (0x1 << BMI088_ACC_INT1_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT1_GPIO_LVL_SHFITS 0x1 +#define BMI088_ACC_INT1_GPIO_LOW (0x0 << BMI088_ACC_INT1_GPIO_LVL_SHFITS) +#define BMI088_ACC_INT1_GPIO_HIGH (0x1 << BMI088_ACC_INT1_GPIO_LVL_SHFITS) + +#define BMI088_INT2_IO_CTRL 0x54 +#define BMI088_ACC_INT2_IO_ENABLE_SHFITS 0x3 +#define BMI088_ACC_INT2_IO_ENABLE (0x1 << BMI088_ACC_INT2_IO_ENABLE_SHFITS) +#define BMI088_ACC_INT2_GPIO_MODE_SHFITS 0x2 +#define BMI088_ACC_INT2_GPIO_PP (0x0 << BMI088_ACC_INT2_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT2_GPIO_OD (0x1 << BMI088_ACC_INT2_GPIO_MODE_SHFITS) +#define BMI088_ACC_INT2_GPIO_LVL_SHFITS 0x1 +#define BMI088_ACC_INT2_GPIO_LOW (0x0 << BMI088_ACC_INT2_GPIO_LVL_SHFITS) +#define BMI088_ACC_INT2_GPIO_HIGH (0x1 << BMI088_ACC_INT2_GPIO_LVL_SHFITS) + +#define BMI088_INT_MAP_DATA 0x58 +#define BMI088_ACC_INT2_DRDY_INTERRUPT_SHFITS 0x6 +#define BMI088_ACC_INT2_DRDY_INTERRUPT (0x1 << BMI088_ACC_INT2_DRDY_INTERRUPT_SHFITS) +#define BMI088_ACC_INT1_DRDY_INTERRUPT_SHFITS 0x2 +#define BMI088_ACC_INT1_DRDY_INTERRUPT (0x1 << BMI088_ACC_INT1_DRDY_INTERRUPT_SHFITS) + +#define BMI088_ACC_SELF_TEST 0x6D +#define BMI088_ACC_SELF_TEST_OFF 0x00 +#define BMI088_ACC_SELF_TEST_POSITIVE_SIGNAL 0x0D +#define BMI088_ACC_SELF_TEST_NEGATIVE_SIGNAL 0x09 + +#define BMI088_ACC_PWR_CONF 0x7C +#define BMI088_ACC_PWR_SUSPEND_MODE 0x03 +#define BMI088_ACC_PWR_ACTIVE_MODE 0x00 + +#define BMI088_ACC_PWR_CTRL 0x7D +#define BMI088_ACC_ENABLE_ACC_OFF 0x00 +#define BMI088_ACC_ENABLE_ACC_ON 0x04 + +#define BMI088_ACC_SOFTRESET 0x7E +#define BMI088_ACC_SOFTRESET_VALUE 0xB6 + +#define BMI088_GYRO_CHIP_ID 0x00 +#define BMI088_GYRO_CHIP_ID_VALUE 0x0F + +#define BMI088_GYRO_X_L 0x02 +#define BMI088_GYRO_X_H 0x03 +#define BMI088_GYRO_Y_L 0x04 +#define BMI088_GYRO_Y_H 0x05 +#define BMI088_GYRO_Z_L 0x06 +#define BMI088_GYRO_Z_H 0x07 + +#define BMI088_GYRO_INT_STAT_1 0x0A +#define BMI088_GYRO_DYDR_SHFITS 0x7 +#define BMI088_GYRO_DYDR (0x1 << BMI088_GYRO_DYDR_SHFITS) + +#define BMI088_GYRO_RANGE 0x0F +#define BMI088_GYRO_RANGE_SHFITS 0x0 +#define BMI088_GYRO_2000 (0x0 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_1000 (0x1 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_500 (0x2 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_250 (0x3 << BMI088_GYRO_RANGE_SHFITS) +#define BMI088_GYRO_125 (0x4 << BMI088_GYRO_RANGE_SHFITS) + +#define BMI088_GYRO_BANDWIDTH 0x10 +// the first num means Output data rate, the second num means bandwidth +#define BMI088_GYRO_BANDWIDTH_MUST_Set 0x80 +#define BMI088_GYRO_2000_532_HZ 0x00 +#define BMI088_GYRO_2000_230_HZ 0x01 +#define BMI088_GYRO_1000_116_HZ 0x02 +#define BMI088_GYRO_400_47_HZ 0x03 +#define BMI088_GYRO_200_23_HZ 0x04 +#define BMI088_GYRO_100_12_HZ 0x05 +#define BMI088_GYRO_200_64_HZ 0x06 +#define BMI088_GYRO_100_32_HZ 0x07 + +#define BMI088_GYRO_LPM1 0x11 +#define BMI088_GYRO_NORMAL_MODE 0x00 +#define BMI088_GYRO_SUSPEND_MODE 0x80 +#define BMI088_GYRO_DEEP_SUSPEND_MODE 0x20 + +#define BMI088_GYRO_SOFTRESET 0x14 +#define BMI088_GYRO_SOFTRESET_VALUE 0xB6 + +#define BMI088_GYRO_CTRL 0x15 +#define BMI088_DRDY_OFF 0x00 +#define BMI088_DRDY_ON 0x80 + +#define BMI088_GYRO_INT3_INT4_IO_CONF 0x16 +#define BMI088_GYRO_INT4_GPIO_MODE_SHFITS 0x3 +#define BMI088_GYRO_INT4_GPIO_PP (0x0 << BMI088_GYRO_INT4_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT4_GPIO_OD (0x1 << BMI088_GYRO_INT4_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT4_GPIO_LVL_SHFITS 0x2 +#define BMI088_GYRO_INT4_GPIO_LOW (0x0 << BMI088_GYRO_INT4_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT4_GPIO_HIGH (0x1 << BMI088_GYRO_INT4_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT3_GPIO_MODE_SHFITS 0x1 +#define BMI088_GYRO_INT3_GPIO_PP (0x0 << BMI088_GYRO_INT3_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT3_GPIO_OD (0x1 << BMI088_GYRO_INT3_GPIO_MODE_SHFITS) +#define BMI088_GYRO_INT3_GPIO_LVL_SHFITS 0x0 +#define BMI088_GYRO_INT3_GPIO_LOW (0x0 << BMI088_GYRO_INT3_GPIO_LVL_SHFITS) +#define BMI088_GYRO_INT3_GPIO_HIGH (0x1 << BMI088_GYRO_INT3_GPIO_LVL_SHFITS) + +#define BMI088_GYRO_INT3_INT4_IO_MAP 0x18 + +#define BMI088_GYRO_DRDY_IO_OFF 0x00 +#define BMI088_GYRO_DRDY_IO_INT3 0x01 +#define BMI088_GYRO_DRDY_IO_INT4 0x80 +#define BMI088_GYRO_DRDY_IO_BOTH (BMI088_GYRO_DRDY_IO_INT3 | BMI088_GYRO_DRDY_IO_INT4) + +#define BMI088_GYRO_SELF_TEST 0x3C +#define BMI088_GYRO_RATE_OK_SHFITS 0x4 +#define BMI088_GYRO_RATE_OK (0x1 << BMI088_GYRO_RATE_OK_SHFITS) +#define BMI088_GYRO_BIST_FAIL_SHFITS 0x2 +#define BMI088_GYRO_BIST_FAIL (0x1 << BMI088_GYRO_BIST_FAIL_SHFITS) +#define BMI088_GYRO_BIST_RDY_SHFITS 0x1 +#define BMI088_GYRO_BIST_RDY (0x1 << BMI088_GYRO_BIST_RDY_SHFITS) +#define BMI088_GYRO_TRIG_BIST_SHFITS 0x0 +#define BMI088_GYRO_TRIG_BIST (0x1 << BMI088_GYRO_TRIG_BIST_SHFITS) + +#endif diff --git a/modules/imu/ins_task.c b/modules/imu/ins_task.c new file mode 100644 index 0000000..9b6ea8a --- /dev/null +++ b/modules/imu/ins_task.c @@ -0,0 +1,336 @@ +/** + ****************************************************************************** + * @file ins_task.c + * @author Wang Hongxi + * @author annotation and modificaiton by neozng + * @version V2.0.0 + * @date 2022/2/23 + * @brief + ****************************************************************************** + * @attention + * + ****************************************************************************** + */ +#include "ins_task.h" +#include "controller.h" +#include "QuaternionEKF.h" +#include "spi.h" +#include "tim.h" +#include "user_lib.h" +#include "general_def.h" +#include "master_process.h" +#include "crc16.h" + +static INS_t INS; +static IMU_Param_t IMU_Param; +static PIDInstance TempCtrl = {0}; + +const float xb[3] = {1, 0, 0}; +const float yb[3] = {0, 1, 0}; +const float zb[3] = {0, 0, 1}; + +// 用于获取两次采样之间的时间间隔 +static uint32_t INS_DWT_Count = 0; +static float dt = 0, t = 0; +static float RefTemp = 40; // 恒温设定温度 + +static void IMU_Param_Correction(IMU_Param_t *param, float gyro[3], float accel[3]); + +static void IMUPWMSet(uint16_t pwm) { + __HAL_TIM_SetCompare(&htim10, TIM_CHANNEL_1, pwm); +} + +/** + * @brief 温度控制 + * + */ +static void IMU_Temperature_Ctrl(void) { + PIDCalculate(&TempCtrl, BMI088.Temperature, RefTemp); + IMUPWMSet(float_constrain(float_rounding(TempCtrl.Output), 0, UINT32_MAX)); +} + +// 使用加速度计的数据初始化Roll和Pitch,而Yaw置0,这样可以避免在初始时候的姿态估计误差 +static void InitQuaternion(float *init_q4) { + float acc_init[3] = {0}; + float gravity_norm[3] = {0, 0, 1}; // 导航系重力加速度矢量,归一化后为(0,0,1) + float axis_rot[3] = {0}; // 旋转轴 + // 读取100次加速度计数据,取平均值作为初始值 + for (uint8_t i = 0; i < 100; ++i) { + BMI088_Read(&BMI088); + acc_init[X] += BMI088.Accel[X]; + acc_init[Y] += BMI088.Accel[Y]; + acc_init[Z] += BMI088.Accel[Z]; + DWT_Delay(0.001); + } + for (uint8_t i = 0; i < 3; ++i) + acc_init[i] /= 100; + Norm3d(acc_init); + // 计算原始加速度矢量和导航系重力加速度矢量的夹角 + float angle = acosf(Dot3d(acc_init, gravity_norm)); + Cross3d(acc_init, gravity_norm, axis_rot); + Norm3d(axis_rot); + init_q4[0] = cosf(angle / 2.0f); + for (uint8_t i = 0; i < 2; ++i) + init_q4[i + 1] = axis_rot[i] * sinf(angle / 2.0f); // 轴角公式,第三轴为0(没有z轴分量) +} + +attitude_t *INS_Init(void) { + if (!INS.init) + INS.init = 1; + else + return (attitude_t *) &INS.Gyro; + + HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1); + + while (BMI088Init(&hspi1, 1) != BMI088_NO_ERROR); + IMU_Param.scale[X] = 1; + IMU_Param.scale[Y] = 1; + IMU_Param.scale[Z] = 1; + IMU_Param.Yaw = 0; + IMU_Param.Pitch = 0; + IMU_Param.Roll = 0; + IMU_Param.flag = 1; + + float init_quaternion[4] = {0}; + InitQuaternion(init_quaternion); + IMU_QuaternionEKF_Init(init_quaternion, 10, 0.001, 1000000, 1, 0); + // imu heat init + PID_Init_Config_s config = {.MaxOut = 2000, + .IntegralLimit = 300, + .DeadBand = 0, + .Kp = 1000, + .Ki = 20, + .Kd = 0, + .Improve = 0x01}; // enable integratiaon limit + PIDInit(&TempCtrl, &config); + + // noise of accel is relatively big and of high freq,thus lpf is used + INS.AccelLPF = 0.0085; + DWT_GetDeltaT(&INS_DWT_Count); + return (attitude_t *) &INS.Gyro; // @todo: 这里偷懒了,不要这样做! 修改INT_t结构体可能会导致异常,待修复. +} + +/* 注意以1kHz的频率运行此任务 */ +void INS_Task(void) { + static uint32_t count = 0; + const float gravity[3] = {0, 0, 9.81f}; + + dt = DWT_GetDeltaT(&INS_DWT_Count); + t += dt; + + // ins update + if ((count % 1) == 0) { + BMI088_Read(&BMI088); + + INS.Accel[X] = BMI088.Accel[X]; + INS.Accel[Y] = BMI088.Accel[Y]; + INS.Accel[Z] = BMI088.Accel[Z]; + INS.Gyro[X] = BMI088.Gyro[X]; + INS.Gyro[Y] = BMI088.Gyro[Y]; + INS.Gyro[Z] = BMI088.Gyro[Z]; + + // demo function,用于修正安装误差,可以不管,本demo暂时没用 + IMU_Param_Correction(&IMU_Param, INS.Gyro, INS.Accel); + + // 计算重力加速度矢量和b系的XY两轴的夹角,可用作功能扩展,本demo暂时没用 + // INS.atanxz = -atan2f(INS.Accel[X], INS.Accel[Z]) * 180 / PI; + // INS.atanyz = atan2f(INS.Accel[Y], INS.Accel[Z]) * 180 / PI; + + // 核心函数,EKF更新四元数 + IMU_QuaternionEKF_Update(INS.Gyro[X], INS.Gyro[Y], INS.Gyro[Z], INS.Accel[X], INS.Accel[Y], INS.Accel[Z], dt); + + memcpy(INS.q, QEKF_INS.q, sizeof(QEKF_INS.q)); + + // 机体系基向量转换到导航坐标系,本例选取惯性系为导航系 + BodyFrameToEarthFrame(xb, INS.xn, INS.q); + BodyFrameToEarthFrame(yb, INS.yn, INS.q); + BodyFrameToEarthFrame(zb, INS.zn, INS.q); + + // 将重力从导航坐标系n转换到机体系b,随后根据加速度计数据计算运动加速度 + float gravity_b[3]; + EarthFrameToBodyFrame(gravity, gravity_b, INS.q); + for (uint8_t i = 0; i < 3; ++i) // 同样过一个低通滤波 + { + INS.MotionAccel_b[i] = (INS.Accel[i] - gravity_b[i]) * dt / (INS.AccelLPF + dt) + + INS.MotionAccel_b[i] * INS.AccelLPF / (INS.AccelLPF + dt); + } + BodyFrameToEarthFrame(INS.MotionAccel_b, INS.MotionAccel_n, INS.q); // 转换回导航系n + + INS.Yaw = QEKF_INS.Yaw; + INS.Pitch = QEKF_INS.Pitch; + INS.Roll = QEKF_INS.Roll; + INS.YawTotalAngle = QEKF_INS.YawTotalAngle; + + //VisionSetAltitude(INS.Yaw, INS.Pitch, INS.Roll); + VisionSetAltitude(INS.Yaw * PI / 180, INS.Roll * PI / 180); + } + + // temperature control + if ((count % 2) == 0) { + // 500hz + IMU_Temperature_Ctrl(); + } + + if ((count++ % 1000) == 0) { + // 1Hz 可以加入monitor函数,检查IMU是否正常运行/离线 + } +} + +/** + * @brief Transform 3dvector from BodyFrame to EarthFrame + * @param[1] vector in BodyFrame + * @param[2] vector in EarthFrame + * @param[3] quaternion + */ +void BodyFrameToEarthFrame(const float *vecBF, float *vecEF, float *q) { + vecEF[0] = 2.0f * ((0.5f - q[2] * q[2] - q[3] * q[3]) * vecBF[0] + + (q[1] * q[2] - q[0] * q[3]) * vecBF[1] + + (q[1] * q[3] + q[0] * q[2]) * vecBF[2]); + + vecEF[1] = 2.0f * ((q[1] * q[2] + q[0] * q[3]) * vecBF[0] + + (0.5f - q[1] * q[1] - q[3] * q[3]) * vecBF[1] + + (q[2] * q[3] - q[0] * q[1]) * vecBF[2]); + + vecEF[2] = 2.0f * ((q[1] * q[3] - q[0] * q[2]) * vecBF[0] + + (q[2] * q[3] + q[0] * q[1]) * vecBF[1] + + (0.5f - q[1] * q[1] - q[2] * q[2]) * vecBF[2]); +} + +/** + * @brief Transform 3dvector from EarthFrame to BodyFrame + * @param[1] vector in EarthFrame + * @param[2] vector in BodyFrame + * @param[3] quaternion + */ +void EarthFrameToBodyFrame(const float *vecEF, float *vecBF, float *q) { + vecBF[0] = 2.0f * ((0.5f - q[2] * q[2] - q[3] * q[3]) * vecEF[0] + + (q[1] * q[2] + q[0] * q[3]) * vecEF[1] + + (q[1] * q[3] - q[0] * q[2]) * vecEF[2]); + + vecBF[1] = 2.0f * ((q[1] * q[2] - q[0] * q[3]) * vecEF[0] + + (0.5f - q[1] * q[1] - q[3] * q[3]) * vecEF[1] + + (q[2] * q[3] + q[0] * q[1]) * vecEF[2]); + + vecBF[2] = 2.0f * ((q[1] * q[3] + q[0] * q[2]) * vecEF[0] + + (q[2] * q[3] - q[0] * q[1]) * vecEF[1] + + (0.5f - q[1] * q[1] - q[2] * q[2]) * vecEF[2]); +} + +/** + * @brief reserved.用于修正IMU安装误差与标度因数误差,即陀螺仪轴和云台轴的安装偏移 + * + * + * @param param IMU参数 + * @param gyro 角速度 + * @param accel 加速度 + */ +static void IMU_Param_Correction(IMU_Param_t *param, float gyro[3], float accel[3]) { + static float lastYawOffset, lastPitchOffset, lastRollOffset; + static float c_11, c_12, c_13, c_21, c_22, c_23, c_31, c_32, c_33; + float cosPitch, cosYaw, cosRoll, sinPitch, sinYaw, sinRoll; + + if (fabsf(param->Yaw - lastYawOffset) > 0.001f || + fabsf(param->Pitch - lastPitchOffset) > 0.001f || + fabsf(param->Roll - lastRollOffset) > 0.001f || param->flag) { + cosYaw = arm_cos_f32(param->Yaw / 57.295779513f); + cosPitch = arm_cos_f32(param->Pitch / 57.295779513f); + cosRoll = arm_cos_f32(param->Roll / 57.295779513f); + sinYaw = arm_sin_f32(param->Yaw / 57.295779513f); + sinPitch = arm_sin_f32(param->Pitch / 57.295779513f); + sinRoll = arm_sin_f32(param->Roll / 57.295779513f); + + // 1.yaw(alpha) 2.pitch(beta) 3.roll(gamma) + c_11 = cosYaw * cosRoll + sinYaw * sinPitch * sinRoll; + c_12 = cosPitch * sinYaw; + c_13 = cosYaw * sinRoll - cosRoll * sinYaw * sinPitch; + c_21 = cosYaw * sinPitch * sinRoll - cosRoll * sinYaw; + c_22 = cosYaw * cosPitch; + c_23 = -sinYaw * sinRoll - cosYaw * cosRoll * sinPitch; + c_31 = -cosPitch * sinRoll; + c_32 = sinPitch; + c_33 = cosPitch * cosRoll; + param->flag = 0; + } + float gyro_temp[3]; + for (uint8_t i = 0; i < 3; ++i) + gyro_temp[i] = gyro[i] * param->scale[i]; + + gyro[X] = c_11 * gyro_temp[X] + + c_12 * gyro_temp[Y] + + c_13 * gyro_temp[Z]; + gyro[Y] = c_21 * gyro_temp[X] + + c_22 * gyro_temp[Y] + + c_23 * gyro_temp[Z]; + gyro[Z] = c_31 * gyro_temp[X] + + c_32 * gyro_temp[Y] + + c_33 * gyro_temp[Z]; + + float accel_temp[3]; + for (uint8_t i = 0; i < 3; ++i) + accel_temp[i] = accel[i]; + + accel[X] = c_11 * accel_temp[X] + + c_12 * accel_temp[Y] + + c_13 * accel_temp[Z]; + accel[Y] = c_21 * accel_temp[X] + + c_22 * accel_temp[Y] + + c_23 * accel_temp[Z]; + accel[Z] = c_31 * accel_temp[X] + + c_32 * accel_temp[Y] + + c_33 * accel_temp[Z]; + + lastYawOffset = param->Yaw; + lastPitchOffset = param->Pitch; + lastRollOffset = param->Roll; +} + +//------------------------------------functions below are not used in this demo------------------------------------------------- +//----------------------------------you can read them for learning or programming----------------------------------------------- +//----------------------------------they could also be helpful for further design----------------------------------------------- + +/** + * @brief Update quaternion + */ +void QuaternionUpdate(float *q, float gx, float gy, float gz, float dt) { + float qa, qb, qc; + + gx *= 0.5f * dt; + gy *= 0.5f * dt; + gz *= 0.5f * dt; + qa = q[0]; + qb = q[1]; + qc = q[2]; + q[0] += (-qb * gx - qc * gy - q[3] * gz); + q[1] += (qa * gx + qc * gz - q[3] * gy); + q[2] += (qa * gy - qb * gz + q[3] * gx); + q[3] += (qa * gz + qb * gy - qc * gx); +} + +/** + * @brief Convert quaternion to eular angle + */ +void QuaternionToEularAngle(float *q, float *Yaw, float *Pitch, float *Roll) { + *Yaw = atan2f(2.0f * (q[0] * q[3] + q[1] * q[2]), 2.0f * (q[0] * q[0] + q[1] * q[1]) - 1.0f) * 57.295779513f; + *Pitch = atan2f(2.0f * (q[0] * q[1] + q[2] * q[3]), 2.0f * (q[0] * q[0] + q[3] * q[3]) - 1.0f) * 57.295779513f; + *Roll = asinf(2.0f * (q[0] * q[2] - q[1] * q[3])) * 57.295779513f; +} + +/** + * @brief Convert eular angle to quaternion + */ +void EularAngleToQuaternion(float Yaw, float Pitch, float Roll, float *q) { + float cosPitch, cosYaw, cosRoll, sinPitch, sinYaw, sinRoll; + Yaw /= 57.295779513f; + Pitch /= 57.295779513f; + Roll /= 57.295779513f; + cosPitch = arm_cos_f32(Pitch / 2); + cosYaw = arm_cos_f32(Yaw / 2); + cosRoll = arm_cos_f32(Roll / 2); + sinPitch = arm_sin_f32(Pitch / 2); + sinYaw = arm_sin_f32(Yaw / 2); + sinRoll = arm_sin_f32(Roll / 2); + q[0] = cosPitch * cosRoll * cosYaw + sinPitch * sinRoll * sinYaw; + q[1] = sinPitch * cosRoll * cosYaw - cosPitch * sinRoll * sinYaw; + q[2] = sinPitch * cosRoll * sinYaw + cosPitch * sinRoll * cosYaw; + q[3] = cosPitch * cosRoll * sinYaw - sinPitch * sinRoll * cosYaw; +} diff --git a/modules/imu/ins_task.h b/modules/imu/ins_task.h new file mode 100644 index 0000000..4acac19 --- /dev/null +++ b/modules/imu/ins_task.h @@ -0,0 +1,143 @@ +/** + ****************************************************************************** + * @file ins_task.h + * @author Wang Hongxi + * @author annotation and modification by NeoZeng + * @version V2.0.0 + * @date 2022/2/23 + * @brief + ****************************************************************************** + * @attention INS任务的初始化不要放入实时系统!应该由application拥有实例,随后在 + * 应用层调用初始化函数. + * + ****************************************************************************** + */ +#ifndef __INS_TASK_H +#define __INS_TASK_H + +#include "stdint.h" +#include "BMI088driver.h" +#include "QuaternionEKF.h" + +#define X 0 +#define Y 1 +#define Z 2 + +#define INS_TASK_PERIOD 1 + +typedef struct +{ + float Gyro[3]; // 角速度 + float Accel[3]; // 加速度 + // 还需要增加角速度数据 + float Roll; + float Pitch; + float Yaw; + float YawTotalAngle; +} attitude_t; // 最终解算得到的角度,以及yaw转动的总角度(方便多圈控制) + +typedef struct +{ + float q[4]; // 四元数估计值 + + float MotionAccel_b[3]; // 机体坐标加速度 + float MotionAccel_n[3]; // 绝对系加速度 + + float AccelLPF; // 加速度低通滤波系数 + + // bodyframe在绝对系的向量表示 + float xn[3]; + float yn[3]; + float zn[3]; + + // 加速度在机体系和XY两轴的夹角 + // float atanxz; + // float atanyz; + + // IMU量测值 + float Gyro[3]; // 角速度 + float Accel[3]; // 加速度 + // 位姿 + float Roll; + float Pitch; + float Yaw; + float YawTotalAngle; + + uint8_t init; +} INS_t; + +/* 用于修正安装误差的参数 */ +typedef struct +{ + uint8_t flag; + + float scale[3]; + + float Yaw; + float Pitch; + float Roll; +} IMU_Param_t; + +/** + * @brief 初始化惯导解算系统 + * + */ +attitude_t *INS_Init(void); + +/** + * @brief 此函数放入实时系统中,以1kHz频率运行 + * p.s. osDelay(1); + * + */ +void INS_Task(void); + +/** + * @brief 四元数更新函数,即实现dq/dt=0.5Ωq + * + * @param q 四元数 + * @param gx + * @param gy + * @param gz + * @param dt 距离上次调用的时间间隔 + */ +void QuaternionUpdate(float *q, float gx, float gy, float gz, float dt); + +/** + * @brief 四元数转换成欧拉角 ZYX + * + * @param q + * @param Yaw + * @param Pitch + * @param Roll + */ +void QuaternionToEularAngle(float *q, float *Yaw, float *Pitch, float *Roll); + +/** + * @brief ZYX欧拉角转换为四元数 + * + * @param Yaw + * @param Pitch + * @param Roll + * @param q + */ +void EularAngleToQuaternion(float Yaw, float Pitch, float Roll, float *q); + +/** + * @brief 机体系到惯性系的变换函数 + * + * @param vecBF body frame + * @param vecEF earth frame + * @param q + */ +void BodyFrameToEarthFrame(const float *vecBF, float *vecEF, float *q); + +/** + * @brief 惯性系转换到机体系 + * + * @param vecEF + * @param vecBF + * @param q + */ +void EarthFrameToBodyFrame(const float *vecEF, float *vecBF, float *q); + +#endif diff --git a/modules/imu/ins_task.md b/modules/imu/ins_task.md new file mode 100644 index 0000000..5462027 --- /dev/null +++ b/modules/imu/ins_task.md @@ -0,0 +1,18 @@ +# ins_task + + neozng1@hnu.edu.cn
+ +## 硬触发流程 + +![image-20221113212706633](.assets\image-20221113212706633.png) + +`times%10` 是固定相机的采集频率为100hz,请根据视觉算法实际能达到的最大帧率调整。 + +## 算法解析 + +介绍EKF四元数姿态解算的教程在:[四元数EKF姿态更新算法](https://zhuanlan.zhihu.com/p/454155643) + +## 模块移植 + +由于历史遗留问题,IMU模块耦合程度高.后续实现BSP_SPI,将bmi088 middleware删除.仅保留BMI088读取的协议和寄存器定义等,单独实现IMU模块. +> 移植已经完成,请转而使用module/BMI088的模块. 当前文件夹将在beta1.2停止支持, 1.5之后删除. INS_Task届时会被放到algorithm中,以提供对不同IMU的兼容. diff --git a/modules/ist8310/ist8310.c b/modules/ist8310/ist8310.c new file mode 100644 index 0000000..64abee2 --- /dev/null +++ b/modules/ist8310/ist8310.c @@ -0,0 +1,100 @@ +#include "bsp_dwt.h" +#include "ist8310.h" +#include "bsp_log.h" +#include+#include + +// 一般这个模块只有一个实例,所以直接保存在这里,实际上不保存也可以,application可以自己保存 +static IST8310Instance *ist8310_instance = NULL; // 用于存储IST8310实例的指针 + +#define IST8310_WRITE_REG_NUM 4 // 方便阅读 +#define IST8310_DATA_REG 0x03 // ist8310的数据寄存器 +#define IST8310_WHO_AM_I 0x00 // ist8310 id 寄存器值 +#define IST8310_WHO_AM_I_VALUE 0x10 // 用于检测是否连接成功,读取ist8310的whoami会返回该值 + +// -------------------初始化写入数组,只使用一次,详见datasheet------------------------- +// the first column:the registers of IST8310. 第一列:IST8310的寄存器 +// the second column: the value to be writed to the registers.第二列:需要写入的寄存器值 +// the third column: return error value.第三列:返回的错误码 +static uint8_t ist8310_write_reg_data_error[IST8310_WRITE_REG_NUM][3] = { + {0x0B, 0x08, 0x01}, // enalbe interrupt and low pin polarity.开启中断,并且设置低电平 + {0x41, 0x09, 0x02}, // average 2 times.平均采样两次 + {0x42, 0xC0, 0x03}, // must be 0xC0. 必须是0xC0 + {0x0A, 0x0B, 0x04}}; // 200Hz output rate.200Hz输出频率 + +/** + * @brief IST8310解码函数,EXTI中断来临时被调用,将数据放到ist.mag中 + * @note 如果使用IT或DMA方式传输IIC,则传输完成后也会进入此函数 + * + * @param ist 发生中断的IST8310实例 + */ +static void IST8310Decode(IICInstance *iic) +{ + int16_t temp[3]; // 用于存储解码后的数据 + IST8310Instance *ist = (IST8310Instance *)(iic->id); // iic的id保存了IST8310实例的指针(父指针) + + memcpy(temp, ist->iic_buffer, 6 * sizeof(uint8_t)); // 不要强制转换,直接cpy + for (uint8_t i = 0; i < 3; i++) + ist->mag[i] = (float)temp[i] * MAG_SEN; // 乘以灵敏度转换成uT(微特斯拉) +} + +/** + * @brief EXTI中断回调函数,说明DRDY拉低.主机启动传输并在结束后调用IST8310Decode进行数据解析 + * @note 注意IICAccessMem是阻塞的 + * + * @param gpio 发生中断的GPIO实例 + */ +static void IST8310StartTransfer(GPIOInstance *gpio) +{ + // 先获取IST8310实例的指针(通过gpio实例的父指针id) + IST8310Instance *ist_for_transfer = (IST8310Instance *)gpio->id; + // 中断说明ist已经准备好读取数据寄存器;6个字节,读取后会进入IST8310Decode函数 + IICAccessMem(ist_for_transfer->iic, IST8310_DATA_REG, ist_for_transfer->iic_buffer, 6, IIC_READ_MEM, 1); + // 传输完成后会进入IST8310Decode函数进行数据解析 + IST8310Decode(ist_for_transfer->iic); +} + +IST8310Instance *IST8310Init(IST8310_Init_Config_s *config) +{ + static const uint8_t sleepTime = 50; // 50ms,ist8310的复位时间 + uint8_t check_who_i_am = 0; // 用于检测ist8310是否连接成功 + // 这个变量只会用到一次,出了这个函数就没用了,所以不用分配空间,直接定义在栈上(因为多看一眼就会爆炸) + + // 分配空间,清除flash防止已经填充的垃圾值 + IST8310Instance *ist = (IST8310Instance *)malloc(sizeof(IST8310Instance)); + memset(ist, 0, sizeof(IST8310Instance)); + + // c语言赋值从右到左,全部指向同一个地址(这些bspinstnace的父节点都是ist,即ist拥有这些instances) + config->iic_config.id = config->gpio_conf_exti.id = config->gpio_conf_rst.id = ist; + // 传入回调函数 + config->iic_config.callback = IST8310Decode; + config->gpio_conf_exti.gpio_model_callback = IST8310StartTransfer; + // 分别注册两个GPIO和IIC + ist->iic = IICRegister(&config->iic_config); + ist->gpio_exti = GPIORegister(&config->gpio_conf_exti); + ist->gpio_rst = GPIORegister(&config->gpio_conf_rst); + + // 重置IST8310,需要HAL_Delay()等待传感器完成Reset + GPIOReset(ist->gpio_rst); + HAL_Delay(sleepTime); + GPIOSet(ist->gpio_rst); + HAL_Delay(sleepTime); + + // 读取IST8310的ID,如果不是0x10(whoami macro的值),则返回错误 + IICAccessMem(ist->iic, IST8310_WHO_AM_I, &check_who_i_am, 1, IIC_READ_MEM, 1); + if (check_who_i_am != IST8310_WHO_AM_I_VALUE) + return NULL; // while(1) + + // 进行初始化配置写入并检查是否写入成功,这里用循环把最上面初始化数组的东西都写进去 + for (uint8_t i = 0; i < IST8310_WRITE_REG_NUM; i++) + { // 写入配置,写一句就读一下看看ist8310是否仍然在线 + IICAccessMem(ist->iic, ist8310_write_reg_data_error[i][0], &ist8310_write_reg_data_error[i][1], 1, IIC_WRITE_MEM, 1); + IICAccessMem(ist->iic, ist8310_write_reg_data_error[i][0], &check_who_i_am, 1, IIC_READ_MEM, 1); // 读回自身id + if (check_who_i_am != ist8310_write_reg_data_error[i][1]) + while (1) + LOGERROR("[ist8310] init error, code %d", ist8310_write_reg_data_error[i][2]); // 掉线/写入失败/未知错误,会返回对应的错误码 + } + + ist8310_instance = ist; // 保存ist8310实例的指针 + return ist; +} diff --git a/modules/ist8310/ist8310.h b/modules/ist8310/ist8310.h new file mode 100644 index 0000000..30ab6b6 --- /dev/null +++ b/modules/ist8310/ist8310.h @@ -0,0 +1,50 @@ +#pragma once // 防止头文件重复包含,也可以用header guard + +#include "bsp_iic.h" +#include "bsp_gpio.h" +#include "stdint.h" + +// 传感器灵敏度系数 +#define MAG_SEN 0.3f // raw int16 data change to uT unit. 原始整型数据变成 单位ut + +// IST8310 ret ERROR CODE +#define IST8310_NO_ERROR 0x00 // seldom used. 一般不会用到 +#define IST8310_NO_SENSOR 0x40 // seldom used. 一般不会用到 +#define IST8310_IIC_ADDRESS 0x0E // the I2C slave address of IST8310 + +/** + * @brief IST8310 实例定义 + * @attention 配置GPIO Pin的时候注意使用GPIO_PIN_x(1,2,3,...,这是一个宏),而不是1,2,3的整形! + * + */ +typedef struct tempist8310 +{ + IICInstance *iic; // iic实例 + GPIOInstance *gpio_rst; // gpio实例,用于复位 + GPIOInstance *gpio_exti; // gpio实例,用于获取MAG_DRDY引脚状态,判断数据是否准备好(EXTI外部中断) + uint8_t iic_buffer[8]; // iic接收缓冲区 + float mag[3]; // 三轴磁力计数据,[x,y,z] + + void (*ist_module_callback)(IICInstance *); // 模块回调函数 + // 后续有需要再添加 + // ... +} IST8310Instance; + +/** + * @brief IST8310 初始化配置结构体 + * @attention 配置GPIO Pin的时候注意使用GPIO_PIN_x(1,2,3,...,这是一个宏),而不是1,2,3的整形! + * + */ +typedef struct +{ + IIC_Init_Config_s iic_config; // iic初始化配置 + GPIO_Init_Config_s gpio_conf_rst; // gpio初始化配置,用于复位ist8310,看数据手册 + GPIO_Init_Config_s gpio_conf_exti; // gpio初始化配置,用于获取MAG_DRDY引脚状态,判断数据是否准备好(EXTI外部中断) +} IST8310_Init_Config_s; + +/** + * @brief IST8310 初始化. + * @note 注意一条i2c总线只能挂载一个IST8310,他们的地址是固定的,不能改变. + * + */ +IST8310Instance *IST8310Init(IST8310_Init_Config_s *config); diff --git a/modules/ist8310/ist8310.md b/modules/ist8310/ist8310.md new file mode 100644 index 0000000..7ae5662 --- /dev/null +++ b/modules/ist8310/ist8310.md @@ -0,0 +1,30 @@ + +# ist8310 + +## 使用示例 + +```c +IST8310_Init_Config_s ist8310_conf = { + .gpio_conf_exti = { + .exti_mode = GPIO_EXTI_MODE_RISING, + .GPIO_Pin = GPIO_PIN_3, + .GPIOx = GPIOG, + .gpio_model_callback = NULL, + }, + .gpio_conf_rst = { + .exti_mode = GPIO_EXTI_MODE_NONE, + .GPIO_Pin = GPIO_PIN_6, + .GPIOx = GPIOG, + .gpio_model_callback = NULL, + }, + .iic_config = { + .handle = &hi2c3, + .dev_address = IST8310_IIC_ADDRESS, + .work_mode = IIC_BLOCK_MODE, + }, +}; + +IST8310Instance *asdf = IST8310Init(&ist8310_conf); + +// 随后数据会被放到asdf.mag[i]中,每次数据准备好了就会触发int_ist引脚中断,继而启动iic通信读取数据并解析 +``` diff --git a/modules/led/led.c b/modules/led/led.c new file mode 100644 index 0000000..276d86f --- /dev/null +++ b/modules/led/led.c @@ -0,0 +1,46 @@ +#include "led.h" +#include "stdlib.h" +#include "memory.h" +#include "user_lib.h" + +static uint8_t idx; +static LEDInstance *bsp_led_ins[LED_MAX_NUM] = {NULL}; + +LEDInstance *LEDRegister(LED_Init_Config_s *led_config) +{ + LEDInstance *led_ins = (LEDInstance *)zmalloc(sizeof(LEDInstance)); + // 剩下的值暂时都被置零 + led_ins->led_pwm = PWMRegister(&led_config->pwm_config); + led_ins->led_switch = led_config->init_swtich; + + bsp_led_ins[idx++] = led_ins; + return led_ins; +} + +void LEDSet(LEDInstance *_led, uint8_t alpha, uint8_t color_value, uint8_t brightness) +{ +} + +void LEDSwitch(LEDInstance *_led, uint8_t led_switch) +{ + if (led_switch == 1) + { + _led->led_switch = 1; + } + else + { + _led->led_switch = 0; + // PWMSetPeriod(_led,0); + } +} + +void LEDShow(uint32_t aRGB) +{ + // static uint8_t alpha; + // static uint16_t red, green, blue; + + // alpha = (aRGB & 0xFF000000) >> 24; + // red = ((aRGB & 0x00FF0000) >> 16) * alpha; + // green = ((aRGB & 0x0000FF00) >> 8) * alpha; + // blue = ((aRGB & 0x000000FF) >> 0) * alpha; +} diff --git a/modules/led/led.h b/modules/led/led.h new file mode 100644 index 0000000..0741315 --- /dev/null +++ b/modules/led/led.h @@ -0,0 +1,33 @@ +#ifndef _LED_H_ +#define _LED_H_ + +#include "stdint.h" +#include "bsp_pwm.h" + +#define LED_MAX_NUM 3 + +typedef struct +{ + PWMInstance* led_pwm; + uint8_t led_alpha; // 透明度,通过pwm频率改变 + uint8_t led_brightness; // 亮度,通过电压改变(如果可以,使用dac) + uint8_t led_color; // rgb value,0-255 + uint8_t led_switch; // 开关,on1 off0 + // void (*action_callback)(void); // led动作回调函数 +} LEDInstance; + +typedef struct +{ + PWM_Init_Config_s pwm_config; + uint8_t init_swtich; // 初始化开关 +} LED_Init_Config_s; + +LEDInstance* LEDRegister(LED_Init_Config_s* led_config); + +void LEDSet(LEDInstance *_led,uint8_t alpha,uint8_t color_value,uint8_t brightness); + +void LEDSwitch(LEDInstance *_led,uint8_t led_switch); + +void LEDShow(); + +#endif // !_LED_H_ diff --git a/modules/led/led.md b/modules/led/led.md new file mode 100644 index 0000000..e5b1e17 --- /dev/null +++ b/modules/led/led.md @@ -0,0 +1,3 @@ +TO BE DONE + +请勿使用 \ No newline at end of file diff --git a/modules/master_machine/master_process.c b/modules/master_machine/master_process.c new file mode 100644 index 0000000..01f9c57 --- /dev/null +++ b/modules/master_machine/master_process.c @@ -0,0 +1,188 @@ +/** + * @file master_process.c + * @author neozng + * @brief module for recv&send vision data + * @version beta + * @date 2022-11-03 + * @todo 增加对串口调试助手协议的支持,包括vofa和serial debug + * @copyright Copyright (c) 2022 + * + */ +#include "master_process.h" +#include "seasky_protocol.h" +#include "daemon.h" +#include "bsp_log.h" +#include "robot_def.h" +#include "crc16.h" + +static RecievePacket_t recv_data; +static SendPacket_t send_data; +static DaemonInstance *vision_daemon_instance; + +//void VisionSetFlag(Enemy_Color_e enemy_color, Work_Mode_e work_mode, Bullet_Speed_e bullet_speed) +//{ +// send_data.enemy_color = enemy_color; +// send_data.work_mode = work_mode; +// send_data.bullet_speed = bullet_speed; +//} +void VisionSetFlag(Enemy_Color_e enemy_color) +{ + send_data.detect_color = enemy_color; + send_data.reserved = 0; +} + +//void VisionSetAltitude(float yaw, float pitch) +//{ +// send_data.yaw = yaw; +// send_data.pitch = pitch; +//} +void VisionSetAltitude(float yaw, float pitch) +{ + send_data.yaw = yaw; + send_data.pitch = pitch; +} + +void VisionSetAim(float aim_x, float aim_y, float aim_z) { + send_data.aim_x = aim_x; + send_data.aim_y = aim_y; + send_data.aim_z = aim_z; +} + + +/** + * @brief 离线回调函数,将在daemon.c中被daemon task调用 + * @attention 由于HAL库的设计问题,串口开启DMA接收之后同时发送有概率出现__HAL_LOCK()导致的死锁,使得无法 + * 进入接收中断.通过daemon判断数据更新,重新调用服务启动函数以解决此问题. + * + * @param id vision_usart_instance的地址,此处没用. + */ +static void VisionOfflineCallback(void *id) +{ +#ifdef VISION_USE_UART + USARTServiceInit(vision_usart_instance); +#endif // !VISION_USE_UART + LOGWARNING("[vision] vision offline, restart communication."); +} + +#ifdef VISION_USE_UART + +#include "bsp_usart.h" + +static USARTInstance *vision_usart_instance; + +/** + * @brief 接收解包回调函数,将在bsp_usart.c中被usart rx callback调用 + * @todo 1.提高可读性,将get_protocol_info的第四个参数增加一个float类型buffer + * 2.添加标志位解码 + */ +static void DecodeVision() +{ + uint16_t flag_register; + DaemonReload(vision_daemon_instance); // 喂狗 + get_protocol_info(vision_usart_instance->recv_buff, &flag_register, (uint8_t *)&recv_data.pitch); + // TODO: code to resolve flag_register; +} + +Vision_Recv_s *VisionInit(UART_HandleTypeDef *_handle) +{ + USART_Init_Config_s conf; + conf.module_callback = DecodeVision; + conf.recv_buff_size = VISION_RECV_SIZE; + conf.usart_handle = _handle; + vision_usart_instance = USARTRegister(&conf); + + // 为master process注册daemon,用于判断视觉通信是否离线 + Daemon_Init_Config_s daemon_conf = { + .callback = VisionOfflineCallback, // 离线时调用的回调函数,会重启串口接收 + .owner_id = vision_usart_instance, + .reload_count = 10, + }; + vision_daemon_instance = DaemonRegister(&daemon_conf); + + return &recv_data; +} + +/** + * @brief 发送函数 + * + * @param send 待发送数据 + * + */ +void VisionSend() +{ + // buff和txlen必须为static,才能保证在函数退出后不被释放,使得DMA正确完成发送 + // 析构后的陷阱需要特别注意! + static uint16_t flag_register; + static uint8_t send_buff[VISION_SEND_SIZE]; + static uint16_t tx_len; + // TODO: code to set flag_register + flag_register = 30 << 8 | 0b00000001; + // 将数据转化为seasky协议的数据包 + get_protocol_send_data(0x02, flag_register, &send_data.yaw, 3, send_buff, &tx_len); + USARTSend(vision_usart_instance, send_buff, tx_len, USART_TRANSFER_DMA); // 和视觉通信使用IT,防止和接收使用的DMA冲突 + // 此处为HAL设计的缺陷,DMASTOP会停止发送和接收,导致再也无法进入接收中断. + // 也可在发送完成中断中重新启动DMA接收,但较为复杂.因此,此处使用IT发送. + // 若使用了daemon,则也可以使用DMA发送. +} + +#endif // VISION_USE_UART + +#ifdef VISION_USE_VCP + +#include "bsp_usb.h" +static uint8_t *vis_recv_buff; //接收到的原始数据 + +static void DecodeVision(uint16_t recv_len) +{ +// uint16_t flag_register; +// get_protocol_info(vis_recv_buff, &flag_register, (uint8_t *)&recv_data.pitch); +// // TODO: code to resolve flag_register; + if(vis_recv_buff[0]==0xA5) + { + if(VerifyCRC16CheckSum(vis_recv_buff,sizeof(recv_data))) + { + memcpy(&recv_data,vis_recv_buff,sizeof(recv_data)); + } + } +} + +/* 视觉通信初始化 */ +RecievePacket_t *VisionInit(UART_HandleTypeDef *_handle) +{ + UNUSED(_handle); // 仅为了消除警告 + USB_Init_Config_s conf = {.rx_cbk = DecodeVision}; + vis_recv_buff = USBInit(conf); + + // 为master process注册daemon,用于判断视觉通信是否离线 + Daemon_Init_Config_s daemon_conf = { + .callback = VisionOfflineCallback, // 离线时调用的回调函数,会重启串口接收 + .owner_id = NULL, + .reload_count = 5, // 50ms + }; + vision_daemon_instance = DaemonRegister(&daemon_conf); + + return &recv_data; +} + +void VisionSend() +{ +// static uint16_t flag_register; +// static uint8_t send_buff[VISION_SEND_SIZE]; +// static uint16_t tx_len; +// // TODO: code to set flag_register +// flag_register = 30 << 8 | 0b00000001; +// // 将数据转化为seasky协议的数据包 +// get_protocol_send_data(0x02, flag_register, &send_data.yaw, 3, send_buff, &tx_len); +// USBTransmit(send_buff, tx_len); + static uint8_t send_buffer[24]={0}; + + send_data.header = 0x5A; +// VisionSetFlag(data->detect_color); +// VisionSetAim(data->aim_x,data->aim_y,data->aim_z); + send_data.checksum = crc_16(&send_data.header,sizeof(send_data)-2); + + memcpy(send_buffer,&send_data,sizeof(send_data)); + USBTransmit(send_buffer, sizeof(send_data)); +} + +#endif // VISION_USE_VCP diff --git a/modules/master_machine/master_process.h b/modules/master_machine/master_process.h new file mode 100644 index 0000000..405912a --- /dev/null +++ b/modules/master_machine/master_process.h @@ -0,0 +1,144 @@ +#ifndef MASTER_PROCESS_H +#define MASTER_PROCESS_H + +#include "bsp_usart.h" +#include "seasky_protocol.h" + +#define VISION_RECV_SIZE 18u // 当前为固定值,36字节 +#define VISION_SEND_SIZE 36u + +#pragma pack(1) +typedef enum { + NO_FIRE = 0, + AUTO_FIRE = 1, + AUTO_AIM = 2 +} Fire_Mode_e; + +typedef enum { + NO_TARGET = 0, + TARGET_CONVERGING = 1, + READY_TO_FIRE = 2 +} Target_State_e; + +typedef enum { + NO_TARGET_NUM = 0, + HERO1 = 1, + ENGINEER2 = 2, + INFANTRY3 = 3, + INFANTRY4 = 4, + INFANTRY5 = 5, + OUTPOST = 6, + SENTRY = 7, + BASE = 8 +} Target_Type_e; + +typedef struct { + Fire_Mode_e fire_mode; + Target_State_e target_state; + Target_Type_e target_type; + + float pitch; + float yaw; +} Vision_Recv_s; + +typedef enum { +// COLOR_NONE = 0, +// COLOR_BLUE = 1, +// COLOR_RED = 2, + ENEMY_COLOR_RED = 0, + ENEMY_COLOR_BLUE = 1, +} Enemy_Color_e; + +typedef enum { + VISION_MODE_AIM = 0, + VISION_MODE_SMALL_BUFF = 1, + VISION_MODE_BIG_BUFF = 2 +} Work_Mode_e; + +typedef enum { + BULLET_SPEED_NONE = 0, + BIG_AMU_10 = 10, + SMALL_AMU_15 = 15, + BIG_AMU_16 = 16, + SMALL_AMU_18 = 18, + SMALL_AMU_30 = 30, +} Bullet_Speed_e; + +typedef struct { + Enemy_Color_e enemy_color; + Work_Mode_e work_mode; + Bullet_Speed_e bullet_speed; + + float yaw; + float pitch; + float roll; +} Vision_Send_s; + +typedef __packed struct { + uint8_t header;//0x5A + uint8_t detect_color: 1; + uint8_t reserved: 7; + float pitch; + float yaw; + float aim_x; + float aim_y; + float aim_z; + uint16_t checksum; +} SendPacket_t; + +typedef __packed struct { + uint8_t header; //= 0xA5; + uint8_t tracking: 1; + uint8_t id: 3; // 0-outpost 6-guard 7-base + uint8_t armors_num: 3; // 2-balance 3-outpost 4-normal + uint8_t reserved: 1; + float x; + float y; + float z; + float yaw; + float vx; + float vy; + float vz; + float v_yaw; + float r1; + float r2; + float dz; + uint16_t checksum; +} RecievePacket_t; +#pragma pack() + +/** + * @brief 调用此函数初始化和视觉的串口通信 + * + * @param handle 用于和视觉通信的串口handle(C板上一般为USART1,丝印为USART2,4pin) + */ +//Vision_Recv_s *VisionInit(UART_HandleTypeDef *_handle); +RecievePacket_t *VisionInit(UART_HandleTypeDef *_handle); + +/** + * @brief 发送视觉数据 + * + */ +void VisionSend(); + +/** + * @brief 设置视觉发送标志位 + * + * @param enemy_color + * @param work_mode + * @param bullet_speed + */ +//void VisionSetFlag(Enemy_Color_e enemy_color, Work_Mode_e work_mode, Bullet_Speed_e bullet_speed); +void VisionSetFlag(Enemy_Color_e enemy_color); + +/** + * @brief 设置发送数据的姿态部分 + * + * @param yaw + * @param pitch + */ +//void VisionSetAltitude(float yaw, float pitch, float roll); +void VisionSetAltitude(float yaw, float pitch); + +void VisionSetAim(float aim_x, float aim_y,float aim_z); +#endif // !MASTER_PROCESS_H \ No newline at end of file diff --git a/modules/master_machine/master_process.md b/modules/master_machine/master_process.md new file mode 100644 index 0000000..e81e949 --- /dev/null +++ b/modules/master_machine/master_process.md @@ -0,0 +1,133 @@ +# master_process + + + + neozng1@hnu.edu.cn
+ +> TODO: +> +> 1. 补全标志位解析和发送设置的代码 +> 2. 增加发送给视觉数据的时间戳用于数据对齐 + + + +## 总览和封装说明 + +模块包含了和视觉通信的初始化、向上位机发送信息的接口和模块的串口的回调处理。接口的定义统一,可以方便的替换成其他通信方式,如CAN。 + +## 代码结构 + +.h文件内包括了外部接口和与**视觉上位机通信的数据结构定义**,以及模块对应的宏。c文件内为私有函数和外部接口的定义。 + +本模块主要是对协议解析的处理和协议发送的封装,实际内容不多。协议相关内容都在`seasky_protocol.h`中。 + +## 类型定义 + +和视觉通信所必须的标志位和数据。包括开火模式,目标状态,目标类型,接收/发送数据结构体。 + +```c +typedef enum +{ + NO_FIRE = 0, + AUTO_FIRE = 1, + AUTO_AIM = 2 +} Fire_Mode_e; + +typedef enum +{ + NO_TARGET = 0, + TARGET_CONVERGING = 1, + READY_TO_FIRE = 2 +} Target_State_e; + +typedef enum +{ + NO_TARGET_NUM = 0, + HERO1 = 1, + ENGINEER2 = 2, + INFANTRY3 = 3, + INFANTRY4 = 4, + INFANTRY5 = 5, + OUTPOST = 6, + SENTRY = 7, + BASE = 8 +} Target_Type_e; + +typedef struct +{ + Fire_Mode_e fire_mode; + Target_State_e target_state; + Target_Type_e target_type; + + float pitch; + float yaw; +} Vision_Recv_s; + +typedef enum +{ + BLUE = 0, + RED = 1 +} Enemy_Color_e; + +typedef enum +{ + MODE_AIM = 0, + MODE_SMALL_BUFF = 1, + MODE_BIG_BUFF = 2 +} Work_Mode_e; + +typedef enum +{ + BIG_AMU_10 = 10, + SMALL_AMU_15 = 15, + BIG_AMU_16 = 16, + SMALL_AMU_18 = 18, + SMALL_AMU_30 = 30, +} Bullet_Speed_e; + +typedef struct +{ + Enemy_Color_e enemy_color; + Work_Mode_e work_mode; + Bullet_Speed_e bullet_speed; + + float yaw; + float pitch; + float roll; +} Vision_Send_s; +``` + +## 外部接口 + +```c +Vision_Recv_s *VisionInit(UART_HandleTypeDef *_handle); + +void VisionSend(Vision_Send_s *send); +``` + +给`VisionInit()`传入串口handle,将初始化一个视觉通信模块,返回值是接收数据的结构体指针。拥有视觉模块的应用应该在初始化中调用此函数,并保存返回值的指针。 + +调用`VisionSend`并传入填好发送数据的结构体,会通过底层的通信模块向视觉发送一帧报文。 + +## 私有函数和变量 + +```c +static Vision_Recv_s recv_data; + +static usart_instance *vision_usart_instance; + +static void DecodeVision() +{ + static uint16_t flag_register; + get_protocol_info(vision_usart_instance->recv_buff, &flag_register, (uint8_t*)&recv_data.pitch); + // TODO: code to resolve flag_register; +} +``` + +第一个是保存接收数据的结构体,其指针将会在初始化的时候返回给拥有者。目前最多只能配置一个视觉模块。 + +第二个是该模块拥有的串口实例指针,用于调度其底层的发送和接收。如果要换成CAN/SPI等,替换成对应实例,并修改初始化和发送的实现即可。 + +`DecodeVision()`是解析视觉接收数据的回调函数,会在串口接收回调中被调用。如果修改通信协议,只需要更改 + +`get_protocol_info()`。 \ No newline at end of file diff --git a/modules/master_machine/seasky_protocol.c b/modules/master_machine/seasky_protocol.c new file mode 100644 index 0000000..85304dd --- /dev/null +++ b/modules/master_machine/seasky_protocol.c @@ -0,0 +1,133 @@ +/** + * @file seasky_protocol.c + * @author Liu Wei + * @author modified by Neozng + * @brief 湖南大学RoBoMatster串口通信协议 + * @version 0.1 + * @date 2022-11-03 + * + * @copyright Copyright (c) 2022 + * + */ + +#include "seasky_protocol.h" +#include "crc8.h" +#include "crc16.h" +#include "memory.h" + +/*获取CRC8校验码*/ +uint8_t Get_CRC8_Check(uint8_t *pchMessage,uint16_t dwLength) +{ + return crc_8(pchMessage,dwLength); +} +/*检验CRC8数据段*/ +static uint8_t CRC8_Check_Sum(uint8_t *pchMessage, uint16_t dwLength) +{ + uint8_t ucExpected = 0; + if ((pchMessage == 0) || (dwLength <= 2)) + return 0; + ucExpected = crc_8(pchMessage, dwLength - 1); + return (ucExpected == pchMessage[dwLength - 1]); +} + +/*获取CRC16校验码*/ +uint16_t Get_CRC16_Check(uint8_t *pchMessage,uint32_t dwLength) +{ + return crc_16(pchMessage,dwLength); +} + +/*检验CRC16数据段*/ +static uint16_t CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength) +{ + uint16_t wExpected = 0; + if ((pchMessage == 0) || (dwLength <= 2)) + { + return 0; + } + wExpected = crc_16(pchMessage, dwLength - 2); + return (((wExpected & 0xff) == pchMessage[dwLength - 2]) && (((wExpected >> 8) & 0xff) == pchMessage[dwLength - 1])); +} + +/*检验数据帧头*/ +static uint8_t protocol_heade_Check(protocol_rm_struct *pro, uint8_t *rx_buf) +{ + if (rx_buf[0] == PROTOCOL_CMD_ID) + { + pro->header.sof = rx_buf[0]; + if (CRC8_Check_Sum(&rx_buf[0], 4)) + { + pro->header.data_length = (rx_buf[2] << 8) | rx_buf[1]; + pro->header.crc_check = rx_buf[3]; + pro->cmd_id = (rx_buf[5] << 8) | rx_buf[4]; + return 1; + } + } + return 0; +} + +/* + 此函数根据待发送的数据更新数据帧格式以及内容,实现数据的打包操作 + 后续调用通信接口的发送函数发送tx_buf中的对应数据 +*/ +void get_protocol_send_data(uint16_t send_id, // 信号id + uint16_t flags_register, // 16位寄存器 + float *tx_data, // 待发送的float数据 + uint8_t float_length, // float的数据长度 + uint8_t *tx_buf, // 待发送的数据帧 + uint16_t *tx_buf_len) // 待发送的数据帧长度 +{ + static uint16_t crc16; + static uint16_t data_len; + + data_len = float_length * 4 + 2; + /*帧头部分*/ + tx_buf[0] = PROTOCOL_CMD_ID; + tx_buf[1] = data_len & 0xff; // 低位在前 + tx_buf[2] = (data_len >> 8) & 0xff; // 低位在前 + tx_buf[3] = crc_8(&tx_buf[0], 3); // 获取CRC8校验位 + + /*数据的信号id*/ + tx_buf[4] = send_id & 0xff; + tx_buf[5] = (send_id >> 8) & 0xff; + + /*建立16位寄存器*/ + tx_buf[6] = flags_register & 0xff; + tx_buf[7] = (flags_register >> 8) & 0xff; + + /*float数据段*/ + for (int i = 0; i < 4 * float_length; i++) + { + tx_buf[i + 8] = ((uint8_t *)(&tx_data[i / 4]))[i % 4]; + } + + /*整包校验*/ + crc16 = crc_16(&tx_buf[0], data_len + 6); + tx_buf[data_len + 6] = crc16 & 0xff; + tx_buf[data_len + 7] = (crc16 >> 8) & 0xff; + + *tx_buf_len = data_len + 8; +} +/* + 此函数用于处理接收数据, + 返回数据内容的id +*/ +uint16_t get_protocol_info(uint8_t *rx_buf, // 接收到的原始数据 + uint16_t *flags_register, // 接收数据的16位寄存器地址 + uint8_t *rx_data) // 接收的float数据存储地址 +{ + // 放在静态区,避免反复申请栈上空间 + static protocol_rm_struct pro; + static uint16_t date_length; + + if (protocol_heade_Check(&pro, rx_buf)) + { + date_length = OFFSET_BYTE + pro.header.data_length; + if (CRC16_Check_Sum(&rx_buf[0], date_length)) + { + *flags_register = (rx_buf[7] << 8) | rx_buf[6]; + memcpy(rx_data, rx_buf + 8, pro.header.data_length - 2); + return pro.cmd_id; + } + } + return 0; +} diff --git a/modules/master_machine/seasky_protocol.h b/modules/master_machine/seasky_protocol.h new file mode 100644 index 0000000..5c24c43 --- /dev/null +++ b/modules/master_machine/seasky_protocol.h @@ -0,0 +1,36 @@ +#ifndef __SEASKY_PROTOCOL_H +#define __SEASKY_PROTOCOL_H + +#include+#include + +#define PROTOCOL_CMD_ID 0XA5 +#define OFFSET_BYTE 8 // 出数据段外,其他部分所占字节数 + +typedef struct +{ + struct + { + uint8_t sof; + uint16_t data_length; + uint8_t crc_check; // 帧头CRC校验 + } header; // 数据帧头 + uint16_t cmd_id; // 数据ID + uint16_t frame_tail; // 帧尾CRC校验 +} protocol_rm_struct; + + +/*更新发送数据帧,并计算发送数据帧长度*/ +void get_protocol_send_data(uint16_t send_id, // 信号id + uint16_t flags_register, // 16位寄存器 + float *tx_data, // 待发送的float数据 + uint8_t float_length, // float的数据长度 + uint8_t *tx_buf, // 待发送的数据帧 + uint16_t *tx_buf_len); // 待发送的数据帧长度 + +/*接收数据处理*/ +uint16_t get_protocol_info(uint8_t *rx_buf, // 接收到的原始数据 + uint16_t *flags_register, // 接收数据的16位寄存器地址 + uint8_t *rx_data); // 接收的float数据存储地址 + +#endif diff --git a/modules/master_machine/湖南大学RoboMaster电控组通信协议.md b/modules/master_machine/湖南大学RoboMaster电控组通信协议.md new file mode 100644 index 0000000..6cb3b38 --- /dev/null +++ b/modules/master_machine/湖南大学RoboMaster电控组通信协议.md @@ -0,0 +1,73 @@ +# 湖南大学RoboMaster电控组通信协议 + + Seasky LIUWei
+ +modified by neozng1@hnu.edu.cn
+ +可用于视觉,以及其他自研模块(仅限串口通信) + +> TODO: +> +> 1. 利用F4自带的硬件CRC模块计算校验码,提高速度 +> 2. 增加更多的数据类型支持,使得数据类型也为可配置的 + +## 一、串口配置 + +通信方式是串口,配置为波特率 921600,8 位数据位,1 位停止位,无硬件流控,无校验位。 + +## 二、数据帧说明 + +以下所有低位在前发送,数据长度可变。 + +1. 通信协议格式 + + | 帧头 | 数据ID | 数据 | 帧尾 | + | ----------------------- | -------------- | ------------- | :---------------------------------- | + | protocol_header(4-byte) | cmd_id(2-byte) | data (n-byte) | frame_tail(2-byte,CRC16,整包校验) | + +2. 帧头详细定义 + + | 帧头 | 偏移位置 | 字节大小 | 内容 | + | ----------- | -------- | -------- | ----------------------------- | + | sof(CMD) | 0 | 1 | 数据帧起始字节,固定值为 0xA5 | + | data_length | 1 | 2 | 数据帧中 data 的长度 | + | crc_check | 3 | 1 | 帧头CRC校验 | + +3. cmd_id 命令码 ID 说明 **(字节偏移 4,字节大小 2)** + + | 命令码 | 数据段长度 | 功能说明 | + | -------------- | --------------- | -------- | + | 0x0001(可修改) | 2 byte (16-bit) | 视觉数据 | + | ....... | | | + +4. 数据段data (n-byte) + + | 数据 | 偏移位置 | 字节大小 | 内容 | + | -------------- | -------- | --------------- | ------------------------------------- | + | flags_register | 6 | 2 | 16位标志置位寄存器 | + | float_data | 8 | 4 * data_length | float数据内容(4 * data_length-byte) | + +5. frame_tail(CRC16,整包校验) + +## 三、协议接口说明 + +```c +/*更新发送数据帧,并计算发送数据帧长度*/ +void get_protocol_send_data(uint16_t send_id, //信号id + uint16_t flags_register, // 16位寄存器 + float *tx_data, //待发送的float数据 + uint8_t float_length, // float的数据长度 + uint8_t *tx_buf, //待发送的数据帧 + uint16_t *tx_buf_len); //待发送的数据帧长度 +``` + +将float_data字段准备好放入`tx_data[]`并设置好标志位`flags_register`之后,调用此函数。它将计算循环冗余校验码,并把数据转换成串口发送的格式,放在`tx_buf[]`中。 + +```c +/*接收数据处理*/ +uint16_t get_protocol_info(uint8_t *rx_buf, //接收到的原始数据 + uint16_t *flags_register, //接收数据的16位寄存器地址 + float *rx_data); //接收的float数据存储地址 +``` + +将收到的一包原始数据buff地址传入,若校验通过,会把收到的标志位和float数据解析出来,保存在`flags_register*`和 `rx_data[]`中。 \ No newline at end of file diff --git a/modules/message_center/message_center.c b/modules/message_center/message_center.c new file mode 100644 index 0000000..2509f59 --- /dev/null +++ b/modules/message_center/message_center.c @@ -0,0 +1,117 @@ +#include "message_center.h" +#include "stdlib.h" +#include "string.h" +#include "bsp_log.h" + +/* message_center是fake head node,是方便链表编写的技巧,这样就不需要处理链表头的特殊情况 */ +static Publisher_t message_center = { + .topic_name = "Message_Manager", + .first_subs = NULL, + .next_topic_node = NULL}; + +static void CheckName(char *name) +{ + if (strnlen(name, MAX_TOPIC_NAME_LEN + 1) >= MAX_TOPIC_NAME_LEN) + { + LOGERROR("EVENT NAME TOO LONG:%s", name); + while (1) + ; // 进入这里说明话题名超出长度限制 + } +} + +static void CheckLen(uint8_t len1, uint8_t len2) +{ + if (len1 != len2) + { + LOGERROR("EVENT LEN NOT SAME:%d,%d", len1, len2); + while (1) + ; // 进入这里说明相同话题的消息长度却不同 + } +} + +Publisher_t *PubRegister(char *name, uint8_t data_len) +{ + CheckName(name); + Publisher_t *node = &message_center; + while (node->next_topic_node) // message_center会直接跳过,不需要特殊处理,这被称作dumb_head(编程技巧) + { + node = node->next_topic_node; // 切换到下一个发布者(话题)结点 + if (strcmp(node->topic_name, name) == 0) // 如果已经注册了相同的话题,直接返回结点指针 + { + CheckLen(data_len, node->data_len); + node->pub_registered_flag = 1; + return node; + } + } // 遍历完发现尚未创建name对应的话题 + // 在链表尾部创建新的话题并初始化 + node->next_topic_node = (Publisher_t *)malloc(sizeof(Publisher_t)); + memset(node->next_topic_node, 0, sizeof(Publisher_t)); + node->next_topic_node->data_len = data_len; + strcpy(node->next_topic_node->topic_name, name); + node->pub_registered_flag = 1; + return node->next_topic_node; +} + +Subscriber_t *SubRegister(char *name, uint8_t data_len) +{ + Publisher_t *pub = PubRegister(name, data_len); // 查找或创建该话题的发布者 + // 创建新的订阅者结点,申请内存,注意要memset因为新空间不一定是空的,可能有之前留存的垃圾值 + Subscriber_t *ret = (Subscriber_t *)malloc(sizeof(Subscriber_t)); + memset(ret, 0, sizeof(Subscriber_t)); + // 对新建的Subscriber进行初始化 + ret->data_len = data_len; // 设定数据长度 + for (size_t i = 0; i < QUEUE_SIZE; ++i) + { // 给消息队列的每一个元素分配空间,queue里保存的实际上是数据执指针,这样可以兼容不同的数据长度 + ret->queue[i] = malloc(data_len); + } + // 如果是第一个订阅者,特殊处理一下,将first_subs指针指向新建的订阅者(详见文档) + if (pub->first_subs == NULL) + { + pub->first_subs = ret; + return ret; + } + // 若该话题已经有订阅者, 遍历订阅者链表,直到到达尾部 + Subscriber_t *sub = pub->first_subs; // 作为iterator + while (sub->next_subs_queue) // 遍历订阅了该话题的订阅者链表 + { + sub = sub->next_subs_queue; // 移动到下一个订阅者,遇到空指针停下,说明到了链表尾部 + } + sub->next_subs_queue = ret; // 把刚刚创建的订阅者接上 + return ret; +} + +/* 如果队列为空,会返回0;成功获取数据,返回1;后续可以做更多的修改,比如剩余消息数目等 */ +uint8_t SubGetMessage(Subscriber_t *sub, void *data_ptr) +{ + if (sub->temp_size == 0) + { + return 0; + } + memcpy(data_ptr, sub->queue[sub->front_idx], sub->data_len); + sub->front_idx = (sub->front_idx++) % QUEUE_SIZE; // 队列头索引增加 + sub->temp_size--; // pop一个数据,长度减1 + return 1; +} + +uint8_t PubPushMessage(Publisher_t *pub, void *data_ptr) +{ + static Subscriber_t *iter; + iter = pub->first_subs; // iter作为订阅者指针,遍历订阅该话题的所有订阅者;如果为空说明遍历结束 + // 遍历订阅了当前话题的所有订阅者,依次填入最新消息 + while (iter) + { + if (iter->temp_size == QUEUE_SIZE) // 如果队列已满,则需要删除最老的数据(头部),再填入 + { + // 队列头索引前移动,相当于抛弃前一个位置的数据,被抛弃的位置稍后会被写入新的数据 + iter->front_idx = (iter->front_idx + 1) % QUEUE_SIZE; + iter->temp_size--; // 相当于出队,size-1 + } + // 将Pub的数据复制到队列的尾部(最新) + memcpy(iter->queue[iter->back_idx], data_ptr, pub->data_len); + iter->back_idx = (iter->back_idx + 1) % QUEUE_SIZE; // 队列尾部前移 + iter->temp_size++; // 入队,size+1 + + iter = iter->next_subs_queue; // 访问下一个订阅者 + } + return 1; +} \ No newline at end of file diff --git a/modules/message_center/message_center.h b/modules/message_center/message_center.h new file mode 100644 index 0000000..f9e89e7 --- /dev/null +++ b/modules/message_center/message_center.h @@ -0,0 +1,85 @@ +/** + * @file message_center.h + * @author NeoZeng neozng1@hnu.edu.cn + * @brief 这是一个伪pubsub机制,仅对应用之间的通信进行了隔离 + * @version 0.1 + * @date 2022-11-30 + * + * @copyright Copyright (c) 2022 + * + */ + +#ifndef PUBSUB_H +#define PUBSUB_H + +#include "stdint.h" + +#define MAX_TOPIC_NAME_LEN 32 // 最大的话题名长度,每个话题都有字符串来命名 +#define MAX_TOPIC_COUNT 12 // 最多支持的话题数量 +#define QUEUE_SIZE 1 + +typedef struct mqt +{ + /* 用数组模拟FIFO队列 */ + void *queue[QUEUE_SIZE]; + uint8_t data_len; + uint8_t front_idx; + uint8_t back_idx; + uint8_t temp_size; // 当前队列长度 + + /* 指向下一个订阅了相同的话题的订阅者的指针 */ + struct mqt *next_subs_queue; // 使得发布者可以通过链表访问所有订阅了相同话题的订阅者 +} Subscriber_t; + +/** + * @brief 发布者类型.每个发布者拥有发布者实例,并且可以通过链表访问所有订阅了自己发布的话题的订阅者 + * + */ +typedef struct ent +{ + /* 话题名称 */ + char topic_name[MAX_TOPIC_NAME_LEN + 1]; // 1个字节用于存放字符串结束符 '\0' + uint8_t data_len; // 该话题的数据长度 + /* 指向第一个订阅了该话题的订阅者,通过链表访问所有订阅者 */ + Subscriber_t *first_subs; + /* 指向下一个Publisher的指针 */ + struct ent *next_topic_node; + uint8_t pub_registered_flag; // 用于标记该发布者是否已经注册 +} Publisher_t; + +/** + * @brief 订阅name的话题消息 + * + * @param name 话题名称 + * @param data_len 消息长度,通过sizeof()获取 + * @return Subscriber_t* 返回订阅者实例 + */ +Subscriber_t *SubRegister(char *name, uint8_t data_len); + +/** + * @brief 注册成为消息发布者 + * + * @param name 发布者发布的话题名称(话题) + * @return Publisher_t* 返回发布者实例 + */ +Publisher_t *PubRegister(char *name, uint8_t data_len); + +/** + * @brief 获取消息 + * + * @param sub 订阅者实例指针 + * @param data_ptr 数据指针,接收的消息将会放到此处 + * @return uint8_t 返回值为0说明没有新的消息(消息队列为空),为1说明获取到了新的消息 + */ +uint8_t SubGetMessage(Subscriber_t *sub, void *data_ptr); + +/** + * @brief 发布者给所有订阅了话题的订阅者推送消息 + * + * @param pub 发布者实例指针 + * @param data_ptr 指向要发布的数据的指针 + * @return uint8_t 新消息成功推送给几个订阅者 + */ +uint8_t PubPushMessage(Publisher_t *pub, void *data_ptr); + +#endif // !PUBSUB_H \ No newline at end of file diff --git a/modules/message_center/message_center.md b/modules/message_center/message_center.md new file mode 100644 index 0000000..ceed509 --- /dev/null +++ b/modules/message_center/message_center.md @@ -0,0 +1,180 @@ +# message_center + +neozng1@hnu.edu.cn
+ +> TODO: +> +> 支持自定义队列长度,使得订阅者可以自行确定需要的队列长度,适应不同的需求 + +## 总览和封装说明 + +**重要定义:** + +- 发布者:发布消息的对象。发布者会将自己的消息推送给所有订阅了某个特定**话题**的订阅者。 +- 订阅者:获取消息的对象。订阅者在订阅了某个话题之后,可以通过接口获得该话题的消息。 +- 话题(topic):用于区分消息来源的对象。可以将一个话题看作一刊杂志,不同的发布者会将文章汇集到杂志上,而订阅者选择订阅一种杂志,然后就可以获取所有写在杂志上的文章。 + +Message Center不同应用间进行消息传递的中介,它的存在可以在相当大的程度上解耦不同的app,使得不同的应用之间**不存在包含关系**,让代码的自由度更大,将不同模块之间的关系降为**松耦合**。在以往,如果一个.c文件中的数据需要被其他任务/源文件共享,那么其他模块应该要包含前者的头文件,且头文件中应当存在获取该模块数据的接口(即函数,一般是返回数据指针或直接返回数据,**强烈建议不要使用全局变量**);但现在,不同的应用之间完全隔离,他们不需要了解彼此的存在,而是只能看见一个**消息中心**以及一些**话题**。 + +需要被共享的消息,将会被**发布者**(publisher)发送到消息中心;要获取消息,则由**订阅者**(subscriber)从消息中心根据订阅的话题获取。在这之前,发布者要在消息中心完成**注册**,将自己要发布的消息类型和话题名称提交到消息中心;订阅者同样要先在消息中心完成订阅,将自己要接收的消息类型和话题名称提交到订阅中心。消息中心会根据**话题名称**,把订阅者绑定到发布相同名称的发布者上。 + +> 为了节省空间,数据结构上采用了链表+循环数组模拟队列的方式。C没有哈希表,因此让发布者保存所有订阅者的地址(实际上只保存首地址,然后通过链表访问所有订阅者)。 + +Message Center对外提供了四个接口,所有原本要进行信息交互的应用都应该包含`message_center.h`,并在初始化的时候进行注册。 + +## 代码结构 + +.h 文件中包含了外部接口和类型定义,.c中包含了各个接口的具体实现。 + +## 外部接口 + +**在代码实现上,话题名实际上就是通过一个字符串体现的。** + +```c +Subscriber_t* SubRegister(char* name,uint8_t data_len); + +Publisher_t* PubRegister(char* name,uint8_t data_len); + +uint8_t SubGetMessage(Subscriber_t* sub,void* data_ptr); + +void PubPushMessage(Publisher_t* pub,void* data_ptr); +``` + +### 订阅者 + +订阅者应该保存一个订阅者类型的指针`Subscriber_t*`,在初始化的时候调用`SubRegister()`并传入要订阅的话题名和该话题对应消息的长度,可以直接输入字符串,示例如下,将从event_name订阅float数据: + +```c +Subscriber_t* my_sub; +my_sub=SubRegister("event_name",sizeof(float)); +``` + +订阅完毕后,在应用中通过`SubGetMessage()`获取消息,调用时传入订阅时获得的指针,以及要存放数据的指针。在使用的时候,建议使用强制类型转换将`data_ptr` cast成void*类型(好习惯)。 + +如果消息队列中有消息,返回值为1;否则,返回值为0,说明没有新的消息可用。 + +### 发布者 + +发布者应该保存一个发布者类型的指针,在初始化的时候传入要发布的话题名和该话题对应的消息长度。 + +完成注册后,通过`PubPushMessage()`发布新的消息。所有订阅了该话题的订阅者都会收到新的消息推送。 + +### 可修改的宏 + +```c +#define MAX_EVENT_NAME_LEN 32 //最大的话题名长度,每个话题都由字符串来命名 +#define QUEUE_SIZE 1 //消息队列的长度 +``` + +修改第一个可以扩大话题名长度,第二个确定消息队列的长度,数量越大可以保存的消息越多。 + +## 私有函数和定义 + +```c +static Publisher_t message_center = { + .event_name = "Message_Manager", + .first_subs = NULL, + .next_event_node = NULL}; + +static void CheckName(char* name) +{ + if(strnlen(name,MAX_EVENT_NAME_LEN+1)>=MAX_EVENT_NAME_LEN) + { + while (1); // 进入这里说明话题名超出长度限制 + } +} +``` + +`message_center`内部保存了指向第一个发布者的指针,可以看作整个消息中心的抽象。通过这个变量,可以访问所有发布者和订阅者。它将会在各个函数中作为dumb_head(哑结点)以简化逻辑,这样不需要对链表头进行特殊处理。 + +`CheckName()`在发布者/订阅者注册的时候被调用,用于检查话题名是否超过长度限制。超长后会进入死循环,方便开发者检查。 + +> 四个外部接口的实现都有详细的注释,有兴趣的同学可以自行阅读。下方也提供了流程图。 + +## 注册、发布、获取消息流程 + +包含一个结构图和四个流程图。 + +### Message Center的结构![image-20221201150945052](../../.assets/image-20221201150945052.png) + +建议打开原图查看 + +**多个publisher可以绑定同一个话题,往该话题推送消息。但一个subscriber只能订阅一个话题,如果应用需要订阅多个话题,则要创建对应数量的订阅者。** + +> 对于电控程序目前的情况,不存在多个publisher向同一个话题推送消息的情况。 + +**对于相同话题,其消息长度必须相同**。发布者和订阅者在注册时都会传入消息长度,用`sizof(your_data)`获取。应当保证不同的模块在进行交互式,使用相同的数据长度。 + +### 发布者和订阅者注册的流程 + +- **发布者:** + + 遍历发布者的话题结点,如果发现相同的话题,直接返回指针即可;遍历完成后发现尚未创建则创建新的话题。 + + + +- **订阅者:** + + 需要注意,由于不同应用/模块的初始化顺序不同,可能出现订阅者先于发布者订阅某一消息的情况,所以要进行发布者链表的遍历,判断是否已经存在相同话题名的发布者,不存在则要先创建发布者结点再将新建订阅者结点并挂载到前者上。 + + + +### 推送/获取消息的流程 + +- **数组+头尾索引模拟队列** + + + +front指向队列头,即最早入队的数据;back指向队列尾,即最新的数据。队列是first in first out(FIFO,先进先出)的结构。back指向的位置是入队数据被写入的位置,front指向的是读取时会出队的位置。当有数据入队,back++;出队则front++。若碰到数组边界,则返回数组头,可以通过取模实现: + +```C +idx=(idx+1)%SIZE_OF_ARRAY; //SIZE_OF_ARRAY是数组大小 +``` + +我们还需要一个变量用于保存当前队列的元素个数,如果在写入时,队列长度等于上限,应该先将最老的数据出队,再写入新的数据,即: + +```c +back=(back+1)%SIZE_OF_ARRAY; +size--; +queue[front]=new_data; +front=(front+1)%SIZE_OF_ARRAY; +``` + +- **发布者推送消息到指定话题** + +通过发布者指针,将订阅了该话题的所有订阅者遍历,将新数据入队。 + +- **订阅者获取消息** + +从订阅者指针访问消息队列,取出最先进入队列的数据。注意判断队列是否为空,如果为空则返回0。 + +## 示例代码 + +```c +typedef struct +{ + float a; + uint8_t b; + uint32_t c; +}good; + +good g1; +good g2; +good pub_data={.a=1,.b=2,.c=3}; +// 一个发布者,两个订阅者 +Subscriber_t* s=SubRegister("test",sizeof(good)); +Subscriber_t* ss=SubRegister("test",sizeof(good)); +Publisher_t* p=PubRegister("test",sizeof(good)); +// 推送消息 +PubPushMessage(p,&pub_data); +pub_data.a=4; +pub_data.b=5; +pub_data.c=6; +// 推送新消息 +PubPushMessage(p,&pub_data); +volatile uint8_t d= 0; // 确定收到的消息是否有效,可以根据d的值进一步处理 +d=SubGetMessage(s,&g1); +d=SubGetMessage(s,&g1); +d=SubGetMessage(s,&g1); // 此时d等于0 +d=SubGetMessage(ss,&g2); +``` diff --git a/modules/module.md b/modules/module.md new file mode 100644 index 0000000..a761182 --- /dev/null +++ b/modules/module.md @@ -0,0 +1,3 @@ +# module + +这是module层的说明。 \ No newline at end of file diff --git a/modules/motor/DJImotor/dji_motor.c b/modules/motor/DJImotor/dji_motor.c new file mode 100644 index 0000000..b2027cc --- /dev/null +++ b/modules/motor/DJImotor/dji_motor.c @@ -0,0 +1,371 @@ +#include "dji_motor.h" +#include "general_def.h" +#include "bsp_dwt.h" +#include "bsp_log.h" +#include "user_lib.h" + +static uint8_t idx = 0; // register idx,是该文件的全局电机索引,在注册时使用 +/* DJI电机的实例,此处仅保存指针,内存的分配将通过电机实例初始化时通过malloc()进行 */ +static DJIMotorInstance *dji_motor_instance[DJI_MOTOR_CNT] = {NULL}; // 会在control任务中遍历该指针数组进行pid计算 + +/** + * @brief 由于DJI电机发送以四个一组的形式进行,故对其进行特殊处理,用6个(2can*3group)can_instance专门负责发送 + * 该变量将在 DJIMotorControl() 中使用,分组在 MotorSenderGrouping()中进行 + * + * @note 因为只用于发送,所以不需要在bsp_can中注册 + * + * C610(m2006)/C620(m3508):0x1ff,0x200; + * GM6020:0x1ff,0x2ff + * 反馈(rx_id): GM6020: 0x204+id ; C610/C620: 0x200+id + * can1: [0]:0x1FF,[1]:0x200,[2]:0x2FF + * can2: [3]:0x1FF,[4]:0x200,[5]:0x2FF + */ +static CANInstance sender_assignment[10] = { + [0] = {.can_handle = &hcan1, .txconf.StdId = 0x1ff, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [1] = {.can_handle = &hcan1, .txconf.StdId = 0x200, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [2] = {.can_handle = &hcan1, .txconf.StdId = 0x2ff, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [3] = {.can_handle = &hcan2, .txconf.StdId = 0x1ff, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [4] = {.can_handle = &hcan2, .txconf.StdId = 0x200, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [5] = {.can_handle = &hcan2, .txconf.StdId = 0x2ff, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [6] = {.can_handle = &hcan1, .txconf.StdId = 0x1fe, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [7] = {.can_handle = &hcan1, .txconf.StdId = 0x2fe, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [8] = {.can_handle = &hcan2, .txconf.StdId = 0x1fe, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}}, + [9] = {.can_handle = &hcan2, .txconf.StdId = 0x2fe, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = { + 0}} +}; + +/** + * @brief 6个用于确认是否有电机注册到sender_assignment中的标志位,防止发送空帧,此变量将在DJIMotorControl()使用 + * flag的初始化在 MotorSenderGrouping()中进行 + */ +static uint8_t sender_enable_flag[6] = {0}; + +/** + * @brief 根据电调/拨码开关上的ID,根据说明书的默认id分配方式计算发送ID和接收ID, + * 并对电机进行分组以便处理多电机控制命令 + */ +static void MotorSenderGrouping(DJIMotorInstance *motor, CAN_Init_Config_s *config) { + uint8_t motor_id = config->tx_id - 1; // 下标从零开始,先减一方便赋值 + uint8_t motor_send_num; + uint8_t motor_grouping; + + switch (motor->motor_type) { + case M2006: + case M3508: + if (motor_id < 4) // 根据ID分组 + { + motor_send_num = motor_id; + motor_grouping = config->can_handle == &hcan1 ? 1 : 4; + } else { + motor_send_num = motor_id - 4; + motor_grouping = config->can_handle == &hcan1 ? 0 : 3; + } + + // 计算接收id并设置分组发送id + config->rx_id = 0x200 + motor_id + 1; // 把ID+1,进行分组设置 + sender_enable_flag[motor_grouping] = 1; // 设置发送标志位,防止发送空帧 + motor->message_num = motor_send_num; + motor->sender_group = motor_grouping; + + // 检查是否发生id冲突 + for (size_t i = 0; i < idx; ++i) { + if (dji_motor_instance[i]->motor_can_instance->can_handle == config->can_handle && + dji_motor_instance[i]->motor_can_instance->rx_id == config->rx_id) { + LOGERROR( + "[dji_motor] ID crash. Check in debug mode, add dji_motor_instance to watch to get more information."); + uint16_t can_bus = config->can_handle == &hcan1 ? 1 : 2; + while (1) // 6020的id 1-4和2006/3508的id 5-8会发生冲突(若有注册,即1!5,2!6,3!7,4!8) (1!5!,LTC! (((不是) + LOGERROR("[dji_motor] id [%d], can_bus [%d]", config->rx_id, can_bus); + } + } + break; + + case GM6020: + if(motor->motor_control_type == CURRENT_CONTROL) //6020电流控制帧id 0x1fe 0x2fe + { + if (motor_id < 4) + { + motor_send_num = motor_id; + motor_grouping = config->can_handle == &hcan1 ? 6 : 8; + } + else + { + motor_send_num = motor_id - 4; + motor_grouping = config->can_handle == &hcan1 ? 7 : 9; + } + }else{ + if (motor_id < 4) + { + motor_send_num = motor_id; + motor_grouping = config->can_handle == &hcan1 ? 0 : 3; + } + else + { + motor_send_num = motor_id - 4; + motor_grouping = config->can_handle == &hcan1 ? 2 : 5; + } + } + + config->rx_id = 0x204 + motor_id + 1; // 把ID+1,进行分组设置 + sender_enable_flag[motor_grouping] = 1; // 只要有电机注册到这个分组,置为1;在发送函数中会通过此标志判断是否有电机注册 + motor->message_num = motor_send_num; + motor->sender_group = motor_grouping; + + for (size_t i = 0; i < idx; ++i) { + if (dji_motor_instance[i]->motor_can_instance->can_handle == config->can_handle && + dji_motor_instance[i]->motor_can_instance->rx_id == config->rx_id) { + LOGERROR( + "[dji_motor] ID crash. Check in debug mode, add dji_motor_instance to watch to get more information."); + uint16_t can_bus = config->can_handle == &hcan1 ? 1 : 2; + while (1) // 6020的id 1-4和2006/3508的id 5-8会发生冲突(若有注册,即1!5,2!6,3!7,4!8) (1!5!,LTC! (((不是) + LOGERROR("[dji_motor] id [%d], can_bus [%d]", config->rx_id, can_bus); + } + } + break; + + default: // other motors should not be registered here + while (1) + LOGERROR("[dji_motor]You must not register other motors using the API of DJI motor."); // 其他电机不应该在这里注册 + } +} + +/** + * @todo 是否可以简化多圈角度的计算? + * @brief 根据返回的can_instance对反馈报文进行解析 + * + * @param _instance 收到数据的instance,通过遍历与所有电机进行对比以选择正确的实例 + */ +static void DecodeDJIMotor(CANInstance *_instance) { + // 这里对can instance的id进行了强制转换,从而获得电机的instance实例地址 + // _instance指针指向的id是对应电机instance的地址,通过强制转换为电机instance的指针,再通过->运算符访问电机的成员motor_measure,最后取地址获得指针 + uint8_t *rxbuff = _instance->rx_buff; + DJIMotorInstance *motor = (DJIMotorInstance *) _instance->id; + DJI_Motor_Measure_s *measure = &motor->measure; // measure要多次使用,保存指针减小访存开销 + + DaemonReload(motor->daemon); + motor->dt = DWT_GetDeltaT(&motor->feed_cnt); + + // 解析数据并对电流和速度进行滤波,电机的反馈报文具体格式见电机说明手册 + measure->last_ecd = measure->ecd; + measure->ecd = ((uint16_t) rxbuff[0]) << 8 | rxbuff[1]; + measure->angle_single_round = ECD_ANGLE_COEF_DJI * (float) measure->ecd; + measure->speed_aps = (1.0f - SPEED_SMOOTH_COEF) * measure->speed_aps + + RPM_2_ANGLE_PER_SEC * SPEED_SMOOTH_COEF * (float) ((int16_t) (rxbuff[2] << 8 | rxbuff[3])); + measure->real_current = (1.0f - CURRENT_SMOOTH_COEF) * measure->real_current + + CURRENT_SMOOTH_COEF * (float) ((int16_t) (rxbuff[4] << 8 | rxbuff[5])); + measure->temperature = rxbuff[6]; + + // 多圈角度计算,前提是假设两次采样间电机转过的角度小于180°,自己画个图就清楚计算过程了 + if (measure->ecd - measure->last_ecd > 4096) + measure->total_round--; + else if (measure->ecd - measure->last_ecd < -4096) + measure->total_round++; + measure->total_angle = measure->total_round * 360 + measure->angle_single_round; +} + +static void DJIMotorLostCallback(void *motor_ptr) { + DJIMotorInstance *motor = (DJIMotorInstance *) motor_ptr; + uint16_t can_bus = motor->motor_can_instance->can_handle == &hcan1 ? 1 : 2; + LOGWARNING("[dji_motor] Motor lost, can bus [%d] , id [%d]", can_bus, motor->motor_can_instance->tx_id); +} + +// 电机初始化,返回一个电机实例 +DJIMotorInstance *DJIMotorInit(Motor_Init_Config_s *config) { + DJIMotorInstance *instance = (DJIMotorInstance *) malloc(sizeof(DJIMotorInstance)); + memset(instance, 0, sizeof(DJIMotorInstance)); + + // motor basic setting 电机基本设置 + instance->motor_type = config->motor_type; // 6020 or 2006 or 3508 + instance->motor_settings = config->controller_setting_init_config; // 正反转,闭环类型等 + instance->motor_control_type = config->motor_control_type; //电流控制or电压控制 + + // motor controller init 电机控制器初始化 + PIDInit(&instance->motor_controller.current_PID, &config->controller_param_init_config.current_PID); + PIDInit(&instance->motor_controller.speed_PID, &config->controller_param_init_config.speed_PID); + PIDInit(&instance->motor_controller.angle_PID, &config->controller_param_init_config.angle_PID); + instance->motor_controller.other_angle_feedback_ptr = config->controller_param_init_config.other_angle_feedback_ptr; + instance->motor_controller.other_speed_feedback_ptr = config->controller_param_init_config.other_speed_feedback_ptr; + instance->motor_controller.current_feedforward_ptr = config->controller_param_init_config.current_feedforward_ptr; + instance->motor_controller.speed_feedforward_ptr = config->controller_param_init_config.speed_feedforward_ptr; + // 后续增加电机前馈控制器(速度和电流) + + // 电机分组,因为至多4个电机可以共用一帧CAN控制报文 + MotorSenderGrouping(instance, &config->can_init_config); + + // 注册电机到CAN总线 + config->can_init_config.can_module_callback = DecodeDJIMotor; // set callback + config->can_init_config.id = instance; // set id,eq to address(it is identity) + instance->motor_can_instance = CANRegister(&config->can_init_config); + + // 注册守护线程 + Daemon_Init_Config_s daemon_config = { + .callback = DJIMotorLostCallback, + .owner_id = instance, + .reload_count = 2, // 20ms未收到数据则丢失 + }; + instance->daemon = DaemonRegister(&daemon_config); + + DJIMotorEnable(instance); + dji_motor_instance[idx++] = instance; + return instance; +} + +/* 电流只能通过电机自带传感器监测,后续考虑加入力矩传感器应变片等 */ +void DJIMotorChangeFeed(DJIMotorInstance *motor, Closeloop_Type_e loop, Feedback_Source_e type) { + if (loop == ANGLE_LOOP) + motor->motor_settings.angle_feedback_source = type; + else if (loop == SPEED_LOOP) + motor->motor_settings.speed_feedback_source = type; + else + LOGERROR("[dji_motor] loop type error, check memory access and func param"); // 检查是否传入了正确的LOOP类型,或发生了指针越界 +} + +void DJIMotorStop(DJIMotorInstance *motor) { + motor->stop_flag = MOTOR_STOP; +} + +void DJIMotorEnable(DJIMotorInstance *motor) { + motor->stop_flag = MOTOR_ENALBED; +} + +/* 修改电机的实际闭环对象 */ +void DJIMotorOuterLoop(DJIMotorInstance *motor, Closeloop_Type_e outer_loop) { + motor->motor_settings.outer_loop_type = outer_loop; +} + +// 设置参考值 +void DJIMotorSetRef(DJIMotorInstance *motor, float ref) { + motor->motor_controller.pid_ref = ref; +} + +static const float motor_power_K[3] = {1.6301e-6f,5.7501e-7f,2.5863e-7f}; +//依据3508电机功率模型,预测电机输出功率 +static float EstimatePower(DJIMotorInstance* chassis_motor,float output) +{ + float I_cmd = chassis_motor->motor_controller.current_PID.Output; + float w = chassis_motor->measure.speed_aps /6 ;//aps to rpm + + float power = motor_power_K[0] * I_cmd * w + motor_power_K[1]*w*w + motor_power_K[2]*I_cmd*I_cmd; + return power; +} + + +// 为所有电机实例计算三环PID,发送控制报文 +void DJIMotorControl() { + // 直接保存一次指针引用从而减小访存的开销,同样可以提高可读性 + uint8_t group, num; // 电机组号和组内编号 + int16_t set; // 电机控制CAN发送设定值 + DJIMotorInstance *motor; + Motor_Control_Setting_s *motor_setting; // 电机控制参数 + Motor_Controller_s *motor_controller; // 电机控制器 + DJI_Motor_Measure_s *measure; // 电机测量值 + float pid_measure, pid_ref; // 电机PID测量值和设定值 + + // 遍历所有电机实例,进行串级PID的计算并设置发送报文的值 + for (size_t i = 0; i < idx; ++i) { // 减小访存开销,先保存指针引用 + motor = dji_motor_instance[i]; + motor_setting = &motor->motor_settings; + motor_controller = &motor->motor_controller; + measure = &motor->measure; + pid_ref = motor_controller->pid_ref; // 保存设定值,防止motor_controller->pid_ref在计算过程中被修改 + if (motor_setting->motor_reverse_flag == MOTOR_DIRECTION_REVERSE) + pid_ref *= -1; // 设置反转 + + // pid_ref会顺次通过被启用的闭环充当数据的载体 + // 计算位置环,只有启用位置环且外层闭环为位置时会计算速度环输出 + if ((motor_setting->close_loop_type & ANGLE_LOOP) && (motor_setting->outer_loop_type == ANGLE_LOOP)) { + if (motor_setting->angle_feedback_source == OTHER_FEED) + pid_measure = *motor_controller->other_angle_feedback_ptr; + else + pid_measure = measure->total_angle; // MOTOR_FEED,对total angle闭环,防止在边界处出现突跃 + // 更新pid_ref进入下一个环 + pid_ref = PIDCalculate(&motor_controller->angle_PID, pid_measure, pid_ref); + } + + // 计算速度环,(外层闭环为速度或位置)且(启用速度环)时会计算速度环 + if ((motor_setting->close_loop_type & SPEED_LOOP) && + (motor_setting->outer_loop_type & (ANGLE_LOOP | SPEED_LOOP))) { + if (motor_setting->feedforward_flag & SPEED_FEEDFORWARD) + pid_ref += *motor_controller->speed_feedforward_ptr; + + if (motor_setting->speed_feedback_source == OTHER_FEED) + pid_measure = *motor_controller->other_speed_feedback_ptr; + else // MOTOR_FEED + pid_measure = measure->speed_aps; + // 更新pid_ref进入下一个环 + pid_ref = PIDCalculate(&motor_controller->speed_PID, pid_measure, pid_ref); + } + + // 计算电流环,目前只要启用了电流环就计算,不管外层闭环是什么,并且电流只有电机自身传感器的反馈 + if (motor_setting->feedforward_flag & CURRENT_FEEDFORWARD) + pid_ref += *motor_controller->current_feedforward_ptr; + if (motor_setting->close_loop_type & CURRENT_LOOP) { + //现在电调都有内置电流环,无需pid计算 + //pid_ref = PIDCalculate(&motor_controller->current_PID, measure->real_current, pid_ref); + } + + if (motor_setting->feedback_reverse_flag == FEEDBACK_DIRECTION_REVERSE) + pid_ref *= -1; + + //功率限制 + if(motor_setting->power_limit_flag == POWER_LIMIT_ON) + { + float I_cmd = pid_ref; + float w = measure->speed_aps /6 ;//aps to rpm + motor_controller->motor_power_predict = motor_power_K[0] * I_cmd * w + motor_power_K[1]*w*w + motor_power_K[2]*I_cmd*I_cmd; + //这里K应该使用所有底盘电机一起计算 (在底盘任务中) + //float K = motor_controller->motor_power_max / motor_controller->motor_power_predict; + float K = motor_controller->motor_power_scale; + if(K>=1 || motor_controller->motor_power_predict < 0)//未超过最大功率 或做负功的电机 不做限制 + { + + } + else if(K<1) + { + float P_cmd = K * motor_controller->motor_power_predict; //对输出功率进行缩放 + + float a = motor_power_K[2] ; + float b = motor_power_K[0] * w; + float c = motor_power_K[1] * w * w - P_cmd; + + if(pid_ref < 0) + pid_ref = (-b - sqrtf(b*b-4*a*c))/(2*a); + else + pid_ref = (-b + sqrtf(b*b-4*a*c))/(2*a); + } + //if( motor_controller->motor_power_predict < ) + } + + // 获取最终输出 此处注意set不要超过int16_t能表达的最大数 +-32767 + + pid_ref = float_constrain(pid_ref,-16384,16384); + // 获取最终输出 + set = (int16_t) pid_ref; + + // 分组填入发送数据 + group = motor->sender_group; + num = motor->message_num; + sender_assignment[group].tx_buff[2 * num] = (uint8_t) (set >> 8); // 低八位 + sender_assignment[group].tx_buff[2 * num + 1] = (uint8_t) (set & 0x00ff); // 高八位 + + // 若该电机处于停止状态,直接将buff置零 + if (motor->stop_flag == MOTOR_STOP) + memset(sender_assignment[group].tx_buff + 2 * num, 0, 16u); + } + + // 遍历flag,检查是否要发送这一帧报文 + for (size_t i = 0; i < 10; ++i) { + if (sender_enable_flag[i]) { + CANTransmit(&sender_assignment[i], 1); + } + } +} diff --git a/modules/motor/DJImotor/dji_motor.h b/modules/motor/DJImotor/dji_motor.h new file mode 100644 index 0000000..1130754 --- /dev/null +++ b/modules/motor/DJImotor/dji_motor.h @@ -0,0 +1,131 @@ +/** + * @file dji_motor.h + * @author neozng + * @brief DJI智能电机头文件 + * @version 0.2 + * @date 2022-11-01 + * + * @todo 1. 给不同的电机设置不同的低通滤波器惯性系数而不是统一使用宏 + 2. 为M2006和M3508增加开环的零位校准函数,并在初始化时调用(根据用户配置决定是否调用) + + * @copyright Copyright (c) 2022 HNU YueLu EC all rights reserved + * + */ + +#ifndef DJI_MOTOR_H +#define DJI_MOTOR_H + +#include "bsp_can.h" +#include "controller.h" +#include "motor_def.h" +#include "stdint.h" +#include "daemon.h" + +#define DJI_MOTOR_CNT 12 + +/* 滤波系数设置为1的时候即关闭滤波 */ +#define SPEED_SMOOTH_COEF 0.85f // 最好大于0.85 +#define CURRENT_SMOOTH_COEF 0.9f // 必须大于0.9 +#define ECD_ANGLE_COEF_DJI 0.043945f // (360/8192),将编码器值转化为角度制 + +/* DJI电机CAN反馈信息*/ +typedef struct +{ + uint16_t last_ecd; // 上一次读取的编码器值 + uint16_t ecd; // 0-8191,刻度总共有8192格 + float angle_single_round; // 单圈角度 + float speed_aps; // 角速度,单位为:度/秒 + int16_t real_current; // 实际电流 + uint8_t temperature; // 温度 Celsius + + float total_angle; // 总角度,注意方向 + int32_t total_round; // 总圈数,注意方向 +} DJI_Motor_Measure_s; + +/** + * @brief DJI intelligent motor typedef + * + */ +typedef struct +{ + DJI_Motor_Measure_s measure; // 电机测量值 + Motor_Control_Setting_s motor_settings; // 电机设置 + Motor_Controller_s motor_controller; // 电机控制器 + + CANInstance *motor_can_instance; // 电机CAN实例 + // 分组发送设置 + uint8_t sender_group; + uint8_t message_num; + + Motor_Type_e motor_type; // 电机类型 + Motor_Control_Type_e motor_control_type;//电机控制方式 + Motor_Working_Type_e stop_flag; // 启停标志 + + DaemonInstance* daemon; + uint32_t feed_cnt; + float dt; +} DJIMotorInstance; + +/** + * @brief 调用此函数注册一个DJI智能电机,需要传递较多的初始化参数,请在application初始化的时候调用此函数 + * 推荐传参时像标准库一样构造initStructure然后传入此函数. + * recommend: type xxxinitStructure = {.member1=xx, + * .member2=xx, + * ....}; + * 请注意不要在一条总线上挂载过多的电机(超过6个),若一定要这么做,请降低每个电机的反馈频率(设为500Hz), + * 并减小DJIMotorControl()任务的运行频率. + * + * @attention M3508和M2006的反馈报文都是0x200+id,而GM6020的反馈是0x204+id,请注意前两者和后者的id不要冲突. + * 如果产生冲突,在初始化电机的时候会进入IDcrash_Handler(),可以通过debug来判断是否出现冲突. + * + * @param config 电机初始化结构体,包含了电机控制设置,电机PID参数设置,电机类型以及电机挂载的CAN设置 + * + * @return DJIMotorInstance* + */ +DJIMotorInstance *DJIMotorInit(Motor_Init_Config_s *config); + +/** + * @brief 被application层的应用调用,给电机设定参考值. + * 对于应用,可以将电机视为传递函数为1的设备,不需要关心底层的闭环 + * + * @param motor 要设置的电机 + * @param ref 设定参考值 + */ +void DJIMotorSetRef(DJIMotorInstance *motor, float ref); + +/** + * @brief 切换反馈的目标来源,如将角速度和角度的来源换为IMU(小陀螺模式常用) + * + * @param motor 要切换反馈数据来源的电机 + * @param loop 要切换反馈数据来源的控制闭环 + * @param type 目标反馈模式 + */ +void DJIMotorChangeFeed(DJIMotorInstance *motor, Closeloop_Type_e loop, Feedback_Source_e type); + +/** + * @brief 该函数被motor_task调用运行在rtos上,motor_stask内通过osDelay()确定控制频率 + */ +void DJIMotorControl(); + +/** + * @brief 停止电机,注意不是将设定值设为零,而是直接给电机发送的电流值置零 + * + */ +void DJIMotorStop(DJIMotorInstance *motor); + +/** + * @brief 启动电机,此时电机会响应设定值 + * 初始化时不需要此函数,因为stop_flag的默认值为0 + * + */ +void DJIMotorEnable(DJIMotorInstance *motor); + +/** + * @brief 修改电机闭环目标(外层闭环) + * + * @param motor 要修改的电机实例指针 + * @param outer_loop 外层闭环类型 + */ +void DJIMotorOuterLoop(DJIMotorInstance *motor, Closeloop_Type_e outer_loop); + +#endif // !DJI_MOTOR_H diff --git a/modules/motor/DJImotor/dji_motor.md b/modules/motor/DJImotor/dji_motor.md new file mode 100644 index 0000000..6e1dfda --- /dev/null +++ b/modules/motor/DJImotor/dji_motor.md @@ -0,0 +1,470 @@ +# dji_motor + +neozng1@hnu.edu.cn
+ +> TODO: +> +> 1. 给不同的电机设置不同的低通滤波器惯性系数而不是统一使用宏 +> 2. 为M2006和M3508增加开环的零位校准函数 + +--- + +> 建议将电机的反馈频率通过RoboMaster Assistant统一设置为500Hz。当前默认的`MotorTask()`执行频率为500Hz,若不修改电机反馈频率可能导致单条总线挂载的电机数量有限,且容易出现帧错误和仲裁失败的情况。 + +## 总览和封装说明 + +> 如果你不需要理解该模块的工作原理,你只需要查看这一小节。 + +dji_motor模块对DJI智能电机,包括M2006,M3508以及GM6020进行了详尽的封装。你不再需要关心PID的计算以及CAN报文的发送和接收解析,你只需要专注于根据应用层的需求,设定合理的期望值,并通过`DJIMotorSetRef()`设置对应电机的输入参考即可。 + +**==设定值的单位==** + +1. ==位置环为**角度制**(0-360,total_angle可以为任意值)== + +2. ==速度环为角速度,单位为**度/每秒**(deg/sec)== + +3. ==电流环为A== + +4. ==GM6020的输入设定为**力矩**,待测量(-30000~30000)== + + ==M3508的输入设定为-20A~20A (-16384~16384)== + + ==M2006的输入设定为-10A~10A (-10000~10000)== + +如果你希望更改电机的反馈来源,比如进入小陀螺模式/视觉模式(这时候你想要云台保持静止,使用IMU的yaw角度值作为反馈来源),只需要调用`DJIMotorChangeFeed()`,电机便可立刻切换反馈数据来源至IMU。 + +要获得一个电机,请通过`DJIMotorInit()`并传入一些参数,他就会返回一个电机的指针。你也不再需要查看这些电机和电调的说明书,**只需要设置其电机id**(6020为拨码开关值,2006和3508为电调的闪动次数),该模块会自动为你计算CAN发送和接收ID并搞定所有硬件层的琐事。 + +初始化电机时,你需要传入的参数包括: + +- **电机挂载的CAN总线设置**,CAN1 or CAN2,以及电机的id,使用`can_instance_config_s`封装,只需要设置这两个参数: + + ```c + CAN_HandleTypeDef *can_handle; + uint32_t tx_id; // tx_id设置为电机id,不需要查说明书计算,直接为电调的闪动次数或拨码开关值,为1-8 + ``` + +- **电机类型**,使用`Motor_Type_e`: + + ```c + GM6020 = 0 + M3508 = 1 + M2006 = 2 + ``` + +- **电机控制设置** + + - 闭环类型 + + ```c + OPEN_LOOP + CURRENT_LOOP + SPEED_LOOP + ANGLE_LOOP + CURRENT_LOOP | SPEED_LOOP // 同时对电流和速度闭环 + SPEED_LOOP | ANGLE_LOOP // 同时对速度和位置闭环 + CURRENT_LOOP | SPEED_LOOP |ANGLE_LOOP // 三环全开 + ``` + + - 是否反转 + + ```c + MOTOR_DIRECTION_NORMAL + MOTOR_DIRECTION_REVERSE + ``` + + - 是否其他反馈来源,以及他们对应的数据指针(如果有的话) + + ```c + MOTOR_FEED = 0 + OTHER_FEED = 1 + --- + + // 电流只能从电机传感器获得所以无法设置其他来源 + ``` + + - 每个环的PID参数以及是否使用改进功能,以及其他反馈来源指针(如果在上一步启用了其他数据来源) + + ```c + typedef struct // config parameter + { + float Kp; + float Ki; + float Kd; + + float MaxOut; // 输出限幅 + // 以下是优化参数 + float IntegralLimit; // 积分限幅 + float DeadBand; // 死区 + float CoefA; // For Changing Integral + float CoefB; // ITerm = Err*((A-abs(err)+B)/A) when B<|err|motor_measure->speed_rpm; +... +``` + +***现在,忘记PID的计算和发送、接收以及协议解析,专注于模块之间的逻辑交互吧。*** + +--- + +## 代码结构 + +.h文件内包括了外部接口和类型定义,以及模块对应的宏。c文件内为私有函数和外部接口的定义。 + +motor_def.h内包含了一些电机通用的定义。 + +## 类型定义 + +```c +#define DJI_MOTOR_CNT 12 +#define SPEED_SMOOTH_COEF 0.9f // better to be greater than 0.85 +#define CURRENT_SMOOTH_COEF 0.98f // this coef must be greater than 0.95 + +typedef struct /* DJI电机CAN反馈信息*/ +{ + uint16_t ecd; + uint16_t last_ecd; + int16_t speed_rpm; + int16_t given_current; + uint8_t temperate; + int16_t total_round; + int32_t total_angle; +} dji_motor_measure; + +typedef struct +{ + /* motor measurement recv from CAN feedback */ + dji_motor_measure motor_measure; + /* basic config of a motor*/ + Motor_Control_Setting_s motor_settings; + /* controller used in the motor (3 loops)*/ + Motor_Controller_s motor_controller; + /* the CAN instance own by motor instance*/ + can_instance motor_can_instance; + /* sender assigment*/ + uint8_t sender_group; + uint8_t message_num; + + uint8_t stop_flag; + + Motor_Type_e motor_type; +} dji_motor_instance; +``` + +- `DJI_MOTOR_CNT`是允许的最大DJI电机数量,根据经验,暂定为每个CAN6个,防止出现拥塞。 + +- `SPEED_SMOOTH_COEF`和`CURRENT_SMOOTH_COEF`是电机反馈的电流和速度数据低通滤波器惯性系数,数值越小平滑效果越大,但滞后也越大。设定时不应当低于推荐值。 +- `dji_motor_measure`是DJI电机的反馈信息,包括当前编码器值、上次测量编码器值、速度、电流、温度、总圈数和单圈角度。 + +- `Motor_Control_Setting_s`的定义在`motor_def.h`之中,它和`Motor_Controller_s`都是所有电机通用的组件(如M3508,LK9025,HT04,MT6023等),其包含内容如下: + + ```c + typedef struct /* 电机控制配置 */ + { + Closeloop_Type_e outer_loop_type; + Closeloop_Type_e close_loop_type; + Motor_Reverse_Flag_e motor_reverse_flag; + Feedback_Source_e angle_feedback_source; + Feedback_Source_e speed_feedback_source; + } Motor_Control_Setting_s; + ``` + + `Motor_Control_Setting_s`里包含了电机的闭环类型,反转标志以及额外的反馈来源标志。 + + - 闭环类型指示该电机使用的控制器配置,其枚举定义如下: + + ```c + typedef enum + { + CURRENT_LOOP = 0b0001, + SPEED_LOOP = 0b0010, + ANGLE_LOOP = 0b0100, + _ = 0b0011, + __ = 0b0110, + ___ = 0b0111 + } Closeloop_Type_e; + ``` + + 以M3508为例,假设需要进行**速度闭环**和**电流闭环**,那么在初始化时就将这个变量的值设为`CURRENT_LOOP | SPEED_LOOP`。在`DJIMotorControl()`中,函数将会根据此标志位判断设定的参考值需要经过那些控制器的计算。 + 另外,你还需要设置当前电机的最外层闭环,即电机的闭环目标为什么类型的值。初始化时需要设置`outer_loop_type`。以M2006作为拨盘电机时为例,你希望它在单发/双发等固定发射数量的模式下对位置进行闭环(拨盘转过一定角度对应拨出一颗弹丸),但你也有可能希望在连发的时候让拨盘连续的转动,以一定的频率发射弹丸。我们提供了`DJIMotorOuterLoop()`用于修改电机的外层闭环,改变电机的闭环对象。 + + > 注意,务必分清串级控制(多环)和外层闭环的区别。前者是为了提高内环的性能,使得其能更好地跟随外环参考值;而后者描述的是系统真实的控制目标(闭环目标)。如3508,没有电流环仍然可以对速度完成闭环,对于高层的应用来说,它们本质上不关心电机内部是否还有电流环,它们只把外层闭环为速度的电机当作一个**速度伺服执行器**,**外层闭环**描述的就是真正的闭环目标。 + + - 为了避开恼人的正负号,提高代码的可维护性,在初始化电机时设定`motor_reverse_flag`使得所有电机都按照你想要的方向旋转,其定义如下: + + ```c + typedef enum + { + MOTOR_DIRECTION_NORMAL = 0, + MOTOR_DIRECTION_REVERSE = 1 + } Motor_Reverse_Flag_e; + ``` + + - `speed_feedback_source`以及`angle_feedback_source`是指示电机反馈来源的标志位。一般情况下电机使用自身的编码器作为控制反馈量。但在某些时候,如小陀螺模式,云台电机会使用IMU的姿态数据作为反馈数据来源。其定义如下: + + ```c + typedef enum + { + MOTOR_FEED = 0, + OTHER_FEED = 1 + } Feedback_Source_e; + ``` + + **注意,如果启用其他数据来源,你需要在电机的控制器配置`Motor_Controller_s`下的`other_xxx_feedback_ptr`中指定其他数据来源。** + + 你可以在`DJIMotorChangeFeed()`中修改电机的数据来源。 + +- `Motor_Controller_s`的定义也在`motor_def.h`之中: + + ```c + /* 电机控制器,包括其他来源的反馈数据指针,3环控制器和电机的参考输入*/ + typedef struct + { + float *other_angle_feedback_ptr; + float *other_speed_feedback_ptr; + PID_t current_PID; + PID_t speed_PID; + PID_t angle_PID; + + float pid_ref; // 将会作为每个环的输入和输出顺次通过串级闭环 + } Motor_Controller_s; + ``` + + 两个`float*`指针应当指向其他反馈来源数据(如果有的话,需要在`motor_settings`中设定)。 + + 三个PID分别为三个控制闭环所用,在`DJIMotorControl()`中,该函数会根据`close_loop_type`的设定计算对应的闭环。 + + **`pid_ref`是控制的设定值,app层的应用想要更改电机的输出,就要调用`DJIMotorSetRef()`更改此值。** + +- `dji_motor_instance`是一个DJI电机实例。一个电机实例内包含电机的反馈信息,电机的控制设置,电机控制器,电机对应的CAN实例以及电机的类型;由于DJI电机支持**一帧报文控制至多4个电机**,该结构体还包含了用于给电机分组发送进行特殊处理的`sender_group`和`message_num`(具体实现细节参考`MotorSenderGrouping()`函数)。 + +## 外部接口 + +```c +dji_motor_instance *DJIMotorInit(can_instance_config config, + Motor_Control_Setting_s motor_setting, + Motor_Controller_Init_s controller_init, + Motor_Type_e type); + +void DJIMotorSetRef(dji_motor_instance *motor, float ref); + +void DJIMotorChangeFeed(dji_motor_instance *motor, + Closeloop_Type_e loop, + Feedback_Source_e type); + +void DJIMotorControl(); + +void DJIMotorStop(dji_motor_instance *motor); + +void DJIMotorEnable(dji_motor_instance *motor); + +void DJIMotorOuterLoop(dji_motor_instance *motor); +``` + +- `DJIMotorInit()`是用于初始化电机对象的接口,传入包括电机can配置、电机控制配置、电机控制器配置以及电机类型在内的初始化参数。**它将会返回一个电机实例指针**,你应当在应用层保存这个指针,这样才能操控这个电机。 + +- `DJIMotorSetRef()`是设定电机输出的接口,**在调用这个函数的时候,你可以认为你的设定值会直接转变为电机的输出**。`DJIMotorControl()`会帮你完成闭环计算,不用担心PID。 + +- `DJIMotorChangeFeed()`一般在更改云台或底盘的运动模式的时候被调用,传入要修改反馈来源的电机实例指针、要修改的闭环以及反馈来源类型。如希望切换到IMU的yaw值作为云台设定值,传入yaw轴电机实例和`ANGLE_LOOP`(位置环)、`OTHER_FEED`(启用其他数据来源)即可。当然,你需要在初始化的时候设定`motor_controller`中的 `other_angle_feedback_ptr`,使其指向yaw值的变量。 + +- `DJIMotorControl()`是根据电机的配置计算控制值的函数。该函数在`motor_task.c`中被调用,应当在freeRTOS中以一定频率运行。此函数为PID的计算进行了彻底的封装,要修改电机的参考输入,请在app层的应用中调用`DJIMotorSetRef()`。 + + 该函数的具体实现请参照代码,注释已经较为清晰。流程大致为: + + 1. 根据电机的初始化控制配置,计算各个控制闭环 + 2. 根据反转标志位,确定是否将输出反转 + 3. 根据每个电机的发送分组,将最终输出值填入对应的分组buff + 4. 检查每一个分组,若该分组有电机,发送报文 + +- `DJIMotorStop()`和`DJIMotorEnable()`用于控制电机的启动和停止。当电机被设为stop的时候,不会响应任何的参考输入。 + +- `DJIMotorOuterLoop()`用于修改电机的外部闭环类型,即电机的真实闭环目标。 + +## 私有函数和变量 + +在.c文件内设为static的函数和变量 + +```c +static uint8_t idx = 0; // register idx,是该文件的全局电机索引,在注册时使用 +static dji_motor_instance *dji_motor_info[DJI_MOTOR_CNT] = {NULL}; +``` + +这是管理所有电机实例的入口。idx用于电机初始化。 + +```c +#define PI2 (3.141592f * 2) +#define ECD_ANGLE_COEF_DJI 3.835e-4 // ecd/8192*pi +``` + +这两个宏用于在电机反馈信息中的多圈角度计算,将编码器的0~8192转化为角度表示。 + +```c +/* @brief 由于DJI电机发送以四个一组的形式进行,故对其进行特殊处理,用6个(2can*3group)can_instance专门负责发送 + * 该变量将在 DJIMotorControl() 中使用,分组在 MotorSenderGrouping()中进行 + * + * can1: [0]:0x1FF,[1]:0x200,[2]:0x2FF + * can2: [0]:0x1FF,[1]:0x200,[2]:0x2FF */ +static can_instance sender_assignment[6] = +{ + [0] = {.can_handle = &hcan1, .txconf.StdId = 0x1ff, .txconf.IDE = CAN_ID_STD, .txconf.RTR = CAN_RTR_DATA, .txconf.DLC = 0x08, .tx_buff = {0}}, + ... + ... +}; + +static uint8_t sender_enable_flag[6] = {0}; +``` + +- 这些是电机分组发送所需的变量。注册电机时,会根据挂载的总线以及发送id,将电机分组。在CAN发送电机控制信息的时候,根据`sender_assignment[]`保存的分组进行发送,而不会使用电机实例自带的`can_instance`。 +- DJI电机共有3种分组,分别为0x1FF,0x200,0x2FF。注册电机的时候,`MotorSenderGrouping()`函数会根据发送id计算出CAN的`tx_id`(即上述三个中的一个)和`rx_id`。然后为电机实例分配用于指示其在`sender_assignment[]`中的编号的 `sender_group`和其在该发送组中的位置`message_num`(一帧报文可以发送四条控制指令,`message_num`会指定电机是这四个中的哪一个)。具体的分配请查看`MotorSenderGrouping()`的定义。 +- 当某一个分组有电机注册时,该分组的索引将会在`sender_enable_flag`[]中被置1,这样,就可以避免发送没有电机注册的报文,防止总线拥塞。具体的,在`DecodeDJIMotor()`中,该函数会查看`sender_enable_flag[]`的每一个位置,确定这一组是否有电机被注册,若有则发送`sender_assignment[]`中对应位置的`tx_buff`。 + +```c +static void IDcrash_Handler(uint8_t conflict_motor_idx, uint8_t temp_motor_idx) + +static void MotorSenderGrouping(can_instance_config *config) + +static void DecodeDJIMotor(can_instance *_instance) +``` + +- `IDcrash_Handler()`在电机id发生冲突的时候会被`MotorSenderGrouping()`调用,陷入死循环之中,并把冲突的id保存在函数里。这样就可以通过debug确定是否发生冲突以及冲突的编号。 + +- `MotorSenderGrouping()`被`DJIMotorInit()`调用,他将会根据电机id计算出CAN的发送和接收ID,并根据发送ID对电机进行分组。 + +- `DecodeDJIMotor()`是解析电机反馈报文的函数,在`DJIMotorInit()`中会将其注册到该电机实例对应的`can_instance`中(即`can_instance`的`can_module_callback()`)。这样,当该电机的反馈报文到达时,`bsp_can.c`中的回调函数会调用解包函数进行反馈数据解析。 + + 该函数还会对电流和速度反馈值进行滤波,消除高频噪声;同时计算多圈角度和单圈绝对角度。 + + **电机反馈的电流值为说明书中的映射值,需转换为实际值。** + + **反馈的速度单位是rpm(转每分钟),转换为角度每秒。** + + **反馈的位置是编码器值(0~8191),转换为角度。** + +## 使用范例 + +```c +//初始化设置 +Motor_Init_Config_s config = { + .motor_type = GM6020, + .can_init_config = { + .can_handle = &hcan1, + .tx_id = 6 + }, + .controller_setting_init_config = { + .angle_feedback_source = MOTOR_FEED, + .outer_loop_type = SPEED_LOOP, + .close_loop_type = SPEED_LOOP | ANGLE_LOOP, + .speed_feedback_source = MOTOR_FEED, + .motor_reverse_flag = MOTOR_DIRECTION_NORMAL + }, + .controller_param_init_config = { + .angle_PID = { + .Improve = 0, + .Kp = 1, + .Ki = 0, + .Kd = 0, + .DeadBand = 0, + .MaxOut = 4000}, + .speed_PID = { + .Improve = 0, + .Kp = 1, + .Ki = 0, + .Kd = 0, + .DeadBand = 0, + .MaxOut = 4000 + } + } +}; +//注册电机并保存实例指针 +dji_motor_instance *djimotor = DJIMotorInit(&config); +``` + +然后在任务中修改电机设定值即可实现控制: + +``` +DJIMotorSetRef(djimotor, 10); +``` + +前提是已经将`DJIMotorControl()`放入实时系统任务当中或以一定d。你也可以单独执行`DJIMotorControl()`。 diff --git a/modules/motor/HTmotor/HT04.c b/modules/motor/HTmotor/HT04.c new file mode 100644 index 0000000..fdfad15 --- /dev/null +++ b/modules/motor/HTmotor/HT04.c @@ -0,0 +1,235 @@ +#include "HT04.h" +#include "memory.h" +#include "general_def.h" +#include "user_lib.h" +#include "cmsis_os.h" +#include "string.h" +#include "daemon.h" +#include "stdlib.h" +#include "bsp_log.h" + +static uint8_t idx; +static HTMotorInstance *ht_motor_instance[HT_MOTOR_CNT]; +static osThreadId ht_task_handle[HT_MOTOR_CNT]; +static uint8_t zero_buff[6] = {0}; + +/** + * @brief 设置电机模式,报文内容[0xff,0xff,0xff,0xff,0xff,0xff,0xff,cmd] + * + * @param cmd + * @param motor + */ +static void HTMotorSetMode(HTMotor_Mode_t cmd, HTMotorInstance *motor) +{ + memset(motor->motor_can_instace->tx_buff, 0xff, 7); // 发送电机指令的时候前面7bytes都是0xff + motor->motor_can_instace->tx_buff[7] = (uint8_t)cmd; // 最后一位是命令id + CANTransmit(motor->motor_can_instace, 1); + memcpy(motor->motor_can_instace->tx_buff, zero_buff, 6); +} +/* 两个用于将uint值和float值进行映射的函数,在设定发送值和解析反馈值时使用 */ +static uint16_t float_to_uint(float x, float x_min, float x_max, uint8_t bits) +{ + float span = x_max - x_min; + float offset = x_min; + return (uint16_t)((x - offset) * ((float)((1 << bits) - 1)) / span); +} +static float uint_to_float(int x_int, float x_min, float x_max, int bits) +{ + float span = x_max - x_min; + float offset = x_min; + return ((float)x_int) * span / ((float)((1 << bits) - 1)) + offset; +} + +/** + * @brief 解析电机反馈值 + * + * @param motor_can 收到 + */ +static void HTMotorDecode(CANInstance *motor_can) +{ + uint16_t tmp; // 用于暂存解析值,稍后转换成float数据,避免多次创建临时变量 + uint8_t const *rxbuff = motor_can->rx_buff; + HTMotorInstance *motor = (HTMotorInstance *)motor_can->id; + HTMotor_Measure_t *measure = &(motor->measure); // 将can实例中保存的id转换成电机实例的指针 + + DaemonReload(motor->motor_daemon); + measure->feed_dt = DWT_GetDeltaT(&measure->feed_cnt); + + measure->last_angle = measure->total_angle; + tmp = (uint16_t)((rxbuff[1] << 8) | rxbuff[2]); + measure->total_angle = uint_to_float(tmp, P_MIN, P_MAX, 16); + + tmp = (uint16_t)(rxbuff[3] << 4) | (rxbuff[4] >> 4); + measure->speed_rads = AverageFilter((uint_to_float(tmp, V_MIN, V_MAX, 12) - HT_SPEED_BIAS), measure->speed_buff, SPEED_BUFFER_SIZE); + + tmp = (uint16_t)(((rxbuff[4] & 0x0f) << 8) | rxbuff[5]); + measure->real_current = CURRENT_SMOOTH_COEF * uint_to_float(tmp, T_MIN, T_MAX, 12) + + (1 - CURRENT_SMOOTH_COEF) * measure->real_current; +} + +static void HTMotorLostCallback(void *motor_ptr) +{ + HTMotorInstance *motor = (HTMotorInstance *)motor_ptr; + LOGWARNING("[ht_motor] motor %d lost\n", motor->motor_can_instace->tx_id); + if (++motor->lost_cnt % 10 != 0) + HTMotorSetMode(CMD_MOTOR_MODE, motor); // 尝试重新让电机进入控制模式 +} + +/* 海泰电机一生黑,什么垃圾协议! */ +void HTMotorCalibEncoder(HTMotorInstance *motor) +{ + uint16_t p, v, kp, kd, t; + p = float_to_uint(0, P_MIN, P_MAX, 16); + v = float_to_uint(0, V_MIN, V_MAX, 12); + kp = float_to_uint(0, KP_MIN, KP_MAX, 12); + kd = float_to_uint(0, KD_MIN, KD_MAX, 12); + t = float_to_uint(0, T_MIN, T_MAX, 12); + + uint8_t *buf = motor->motor_can_instace->tx_buff; + buf[0] = p >> 8; + buf[1] = p & 0xFF; + buf[2] = v >> 4; + buf[3] = ((v & 0xF) << 4) | (kp >> 8); + buf[4] = kp & 0xFF; + buf[5] = kd >> 4; + buf[6] = ((kd & 0xF) << 4) | (t >> 8); + buf[7] = t & 0xff; + memcpy(zero_buff, buf, 6); // 初始化的时候至少调用一次,故将其他指令为0时发送的报文保存一下,详见ht04电机说明 + CANTransmit(motor->motor_can_instace, 1); + DWT_Delay(0.005); + HTMotorSetMode(CMD_ZERO_POSITION, motor); // sb 玩意校准完了编码器也不为0 + DWT_Delay(0.005); + // HTMotorSetMode(CMD_MOTOR_MODE, motor); +} + +HTMotorInstance *HTMotorInit(Motor_Init_Config_s *config) +{ + HTMotorInstance *motor = (HTMotorInstance *)malloc(sizeof(HTMotorInstance)); + memset(motor, 0, sizeof(HTMotorInstance)); + + motor->motor_settings = config->controller_setting_init_config; + PIDInit(&motor->current_PID, &config->controller_param_init_config.current_PID); + PIDInit(&motor->speed_PID, &config->controller_param_init_config.speed_PID); + PIDInit(&motor->angle_PID, &config->controller_param_init_config.angle_PID); + motor->other_angle_feedback_ptr = config->controller_param_init_config.other_angle_feedback_ptr; + motor->other_speed_feedback_ptr = config->controller_param_init_config.other_speed_feedback_ptr; + + config->can_init_config.can_module_callback = HTMotorDecode; + config->can_init_config.id = motor; + motor->motor_can_instace = CANRegister(&config->can_init_config); + + Daemon_Init_Config_s conf = { + .callback = HTMotorLostCallback, + .owner_id = motor, + .reload_count = 5, // 20ms + }; + motor->motor_daemon = DaemonRegister(&conf); + + HTMotorEnable(motor); + HTMotorSetMode(CMD_MOTOR_MODE, motor); // 确保电机已经上电并执行电机模式 + DWT_Delay(0.05f); + HTMotorCalibEncoder(motor); // 将当前编码器位置作为零位 + DWT_Delay(0.05f); // 保证下一个电机发送时CAN是空闲的,注意应用在初始化模块的时候不应该进入中断 + ht_motor_instance[idx++] = motor; + return motor; +} + +void HTMotorSetRef(HTMotorInstance *motor, float ref) +{ + motor->pid_ref = ref; +} + +/** + * @brief 为了避免总线堵塞,为每个电机创建一个发送任务 + * @param argument 传入的电机指针 + */ +__attribute__((noreturn)) void HTMotorTask(void const *argument) +{ + float set, pid_measure, pid_ref; + HTMotorInstance *motor = (HTMotorInstance *)argument; + HTMotor_Measure_t *measure = &motor->measure; + Motor_Control_Setting_s *setting = &motor->motor_settings; + CANInstance *motor_can = motor->motor_can_instace; + uint16_t tmp; + + while (1) + { + pid_ref = motor->pid_ref; + if ((setting->close_loop_type & ANGLE_LOOP) && setting->outer_loop_type == ANGLE_LOOP) + { + if (setting->angle_feedback_source == OTHER_FEED) + pid_measure = *motor->other_angle_feedback_ptr; + else + pid_measure = measure->total_angle; + // measure单位是rad,ref是角度,统一到angle下计算,方便建模 + pid_ref = PIDCalculate(&motor->angle_PID, pid_measure * RAD_2_DEGREE, pid_ref); + } + + if ((setting->close_loop_type & SPEED_LOOP) && setting->outer_loop_type & (ANGLE_LOOP | SPEED_LOOP)) + { + if (setting->feedforward_flag & SPEED_FEEDFORWARD) + pid_ref += *motor->speed_feedforward_ptr; + + if (setting->angle_feedback_source == OTHER_FEED) + pid_measure = *motor->other_speed_feedback_ptr; + else + pid_measure = measure->speed_rads; + // measure单位是rad / s ,ref是angle per sec,统一到angle下计算 + pid_ref = PIDCalculate(&motor->speed_PID, pid_measure * RAD_2_DEGREE, pid_ref); + } + + if (setting->feedforward_flag & CURRENT_FEEDFORWARD) + pid_ref += *motor->current_feedforward_ptr; + if (setting->close_loop_type & CURRENT_LOOP) + { + pid_ref = PIDCalculate(&motor->current_PID, measure->real_current, pid_ref); + } + + set = pid_ref; + if (setting->motor_reverse_flag == MOTOR_DIRECTION_REVERSE) + set *= -1; + + LIMIT_MIN_MAX(set, T_MIN, T_MAX); + tmp = float_to_uint(set, T_MIN, T_MAX, 12); + if (motor->stop_flag == MOTOR_STOP) + tmp = float_to_uint(0, T_MIN, T_MAX, 12); + motor_can->tx_buff[6] = (tmp >> 8); + motor_can->tx_buff[7] = tmp & 0xff; + + CANTransmit(motor_can, 0.5); + + osDelay(1); + } +} + +void HTMotorControlInit() +{ + char ht_task_name[5] = "ht"; + // 遍历所有电机实例,创建任务 + if (!idx) + return; + for (size_t i = 0; i < idx; i++) + { + char ht_id_buff[2] = {0}; + __itoa(i, ht_id_buff, 10); + strcat(ht_task_name, ht_id_buff); // 似乎没什么吊用,osthreaddef会把第一个变量当作宏字符串传入,作为任务名 + // @todo 还需要一个更优雅的方案来区分不同的电机任务 + osThreadDef(ht_task_name, HTMotorTask, osPriorityNormal, 0, 128); + ht_task_handle[i] = osThreadCreate(osThread(ht_task_name), ht_motor_instance[i]); + } +} + +void HTMotorStop(HTMotorInstance *motor) +{ + motor->stop_flag = MOTOR_STOP; +} + +void HTMotorEnable(HTMotorInstance *motor) +{ + motor->stop_flag = MOTOR_ENALBED; +} + +void HTMotorOuterLoop(HTMotorInstance *motor, Closeloop_Type_e type) +{ + motor->motor_settings.outer_loop_type = type; +} diff --git a/modules/motor/HTmotor/HT04.h b/modules/motor/HTmotor/HT04.h new file mode 100644 index 0000000..1ad61f5 --- /dev/null +++ b/modules/motor/HTmotor/HT04.h @@ -0,0 +1,123 @@ +#ifndef HT04_H +#define HT04_H + +#include+#include "bsp_can.h" +#include "controller.h" +#include "motor_def.h" +#include "daemon.h" + +#define HT_MOTOR_CNT 4 +#define CURRENT_SMOOTH_COEF 0.9f +#define SPEED_BUFFER_SIZE 5 +#define HT_SPEED_BIAS -0.0109901428f // 电机速度偏差,单位rad/s + +#define P_MIN -95.5f // Radians +#define P_MAX 95.5f +#define V_MIN -45.0f // Rad/s +#define V_MAX 45.0f +#define T_MIN -18.0f // N·m +#define T_MAX 18.0f +#define KP_MIN 0.0f // N-m/rad +#define KP_MAX 500.0f +#define KD_MIN 0.0f // N-m/rad/s +#define KD_MAX 5.0f + +typedef struct // HT04 +{ + float total_angle; // 角度为多圈角度,范围是-95.5~95.5,单位为rad + float last_angle; + + float speed_rads; + float speed_buff[SPEED_BUFFER_SIZE]; + + float real_current; + + float feed_dt; + uint32_t feed_cnt; +} HTMotor_Measure_t; + +/* HT电机类型定义*/ +typedef struct +{ + HTMotor_Measure_t measure; + + Motor_Control_Setting_s motor_settings; + + PIDInstance current_PID; + PIDInstance speed_PID; + PIDInstance angle_PID; + float *other_angle_feedback_ptr; + float *other_speed_feedback_ptr; + float *speed_feedforward_ptr; + float *current_feedforward_ptr; + float pid_ref; + + Motor_Working_Type_e stop_flag; // 启停标志 + + CANInstance *motor_can_instace; + + DaemonInstance *motor_daemon; + uint32_t lost_cnt; +} HTMotorInstance; + +/* HT电机模式,初始化时自动进入CMD_MOTOR_MODE*/ +typedef enum +{ + CMD_MOTOR_MODE = 0xfc, // 使能,会响应指令 + CMD_RESET_MODE = 0xfd, // 停止 + CMD_ZERO_POSITION = 0xfe // 将当前的位置设置为编码器零位 +} HTMotor_Mode_t; + +/** + * @brief + * + * @param config + * @return HTMotorInstance* + */ +HTMotorInstance *HTMotorInit(Motor_Init_Config_s *config); + +/** + * @brief 设定电机的参考值 + * + * @param motor 要设定的电机 + * @param current 设定值 + */ +void HTMotorSetRef(HTMotorInstance *motor, float ref); + +/** + * @brief 初始化电机任务,若要使用,需要在motortask的死循环前调用 + * + */ +void HTMotorControlInit(); + +/** + * @brief 停止电机,之后电机不会响应HTMotorSetRef设定的值 + * + * @param motor + */ +void HTMotorStop(HTMotorInstance *motor); + +/** + * @brief 启动电机 + * + * @param motor 要启动的电机 + */ +void HTMotorEnable(HTMotorInstance *motor); + +/** + * @brief 修改电机闭环对象 + * + * @param motor + * @param type + */ +void HTMotorOuterLoop(HTMotorInstance *motor, Closeloop_Type_e type); + +/** + * @brief 将当前编码器位置置零 + * + * @param motor + */ +void HTMotorCalibEncoder(HTMotorInstance *motor); + +#endif // !HT04_H#define HT04_H \ No newline at end of file diff --git a/modules/motor/HTmotor/HT04.md b/modules/motor/HTmotor/HT04.md new file mode 100644 index 0000000..2f3ba49 --- /dev/null +++ b/modules/motor/HTmotor/HT04.md @@ -0,0 +1,44 @@ +- 在通过串口设置电机的时候,注意发送指令不要追加回车\n,否则电机端不响应。可以使用sscom,其会将你的按键直接当作ascii字符发送出去。 + +- **此电机的CAN线序和RoboMaster开发板相反,注意单独制作CAN线** + +- 电机控制和反馈报文: + ![控制报文](%E6%8E%A7%E5%88%B6%E6%8A%A5%E6%96%87.png) + +注意,我们的代码实现不使用其电调协议的位置PD算法;自行实现了三环,并在最后给出电流参考值,发送给电调。因此command packed structure中的**pos cmd & vel cmd & Kp & Kd均为零**。报文均为小端,**低位在前**。 + +请注意发送和反馈数据的**单位**。 + +> ~~HT的电机协议做的真不行,纯纯直接抄mit还抄不明白,之后全部换成LK!~~ + +另一种上电时校准编码器的方法: + +```c +static void HTMotorDecode(CANInstance *motor_can) +{ + uint16_t tmp; // 用于暂存解析值,稍后转换成float数据,避免多次创建临时变量 + uint8_t *rxbuff = motor_can->rx_buff; + HTMotor_Measure_t *measure = &((HTMotorInstance *)motor_can->id)->measure; // 将can实例中保存的id转换成电机实例的指针 + + measure->last_angle = measure->total_angle; + tmp = (uint16_t)((rxbuff[1] << 8) | rxbuff[2]); + measure->total_angle = uint_to_float(tmp, P_MIN, P_MAX, 16) - measure->angle_bias; + + tmp = (uint16_t)(rxbuff[3] << 4) | (rxbuff[4] >> 4); + measure->speed_rads = AverageFilter((uint_to_float(tmp, V_MIN, V_MAX, 12) - HT_SPEED_BIAS), measure->speed_buff, SPEED_BUFFER_SIZE); + + tmp = (uint16_t)(((rxbuff[4] & 0x0f) << 8) | rxbuff[5]); + measure->real_current = CURRENT_SMOOTH_COEF * uint_to_float(tmp, T_MIN, T_MAX, 12) + + (1 - CURRENT_SMOOTH_COEF) * measure->real_current; + + if (!measure->first_feedback_flag) // 初始化的时候设置偏置 + { + measure->first_feedback_flag = 1; + measure->angle_bias = measure->total_angle; + measure->total_angle = 0; + measure->speed_rads = 0; + } +} +``` + +第一次收到数据时默认电机处于限位处,将速度和角度都设置为零,记录当前的编码器数据,之后每次收到都减去该值. diff --git a/modules/motor/HTmotor/控制报文.png b/modules/motor/HTmotor/控制报文.png new file mode 100644 index 0000000..ebc490e Binary files /dev/null and b/modules/motor/HTmotor/控制报文.png differ diff --git a/modules/motor/HTmotor/驱动器硬件说明.pdf b/modules/motor/HTmotor/驱动器硬件说明.pdf new file mode 100644 index 0000000..2b990fa --- /dev/null +++ b/modules/motor/HTmotor/驱动器硬件说明.pdf @@ -0,0 +1,80 @@ + HT-04 驱动板说明文档(48V) + + 2020 年 10 月 19 日星期一 + +1. 驱动板的硬件说明 + 1) 驱动板出货前均进行了测试; + 2) 驱动的红灯为电源指示灯,绿灯为系统状态灯。 + 3) 驱动板编码器型号为 Ma702 + 4) 重点说明:因为考虑到电机工作的大电流,目前该版本驱动板没有做电源的防反 + 接,请通过 XT30 接口正确给电机进行供电。正常供电电压为 48V,请确保电源输 + 入电压正常。 + 5) 驱动板各个接口的说明如下图所示,串口端子型号为 molex51146-3pin,SWD 程 + 序烧录口端子型号为 molex51146-3pin,5V 电源输入口端子型号为 GH1.25-2pin, + CAN 总线接口端子型号为 GH1.25-2pin;黄色 XT30 接口,为电源输入接口,48V + 电机,输入电压为 48V;各接口的具体引脚见下图; + + 6) 关于 5V 电源接口说明:该驱动板预留 5V 电源接口是为了方便程序的调试及程序 + 的烧录。驱动板通过 XT30 供 24V 电源,不需要再供 5V 电源了。 + +2. 软件调试工具 + 1) 驱 动 板 日 志 输 出 , 编 码 器 校 准 , 参 数 设 置 等 需 要 用 到 串 口 。 可 以 使 用 + sscom(http://www.daxia.com/download/sscom.rar)。(已经打包在附件) +2) 如下图所示。USB 转 TTL 通过 molex51146-3Pin 接口连接到驱动板,插上 usb 转 + TTL 到电脑。打开 sscom 串口调试助手,选择正确的串口,并设置串口波特率为 + 921600。对驱动板通 24V 电源,SSCOM 串口调试助手能正常打印如下内容,可以 + 根据提示输入对应的命令,退出对应的命令可以按键盘的 esc 键。 + + 【m-Motor Mode】输入 m 命令电机进入 FOC 控制模式,控制参数将在下文提到。 + 【c-Calibrate Encoder】输入 c 命令,电机将进入相序和编码器校准。输入 c + 命令后,电机首先进行的是相序校准,电机将会旋转一个角度,相序校准完会输 + 出一个提示信息。校准完相序将进入编码器校准,校准过程电机将会正反旋转; + 【s-Setup】输入 s 命令,进入参数设置,根据打印输出的提示设置相应的参数; + 【e-Display Encoder】输入 e 命令,串口实时输出编码器信息; + + ⚫ Mechanical Angle: 电机的机械位置,单位是弧度;电机外转子(1:6 减速后)旋转 + + 一圈是 2π弧度。 + + ⚫ Electrical Angle: 电角度,电角度跟电机的极对数有一定的关系; + ⚫ Raw:系统读取到的 Ma70x 编码器反馈的角度值; + 【z-SetZeroPosition】设置电机的 0 位置; + 【esc-ExitToMenu】按键盘的 ESC 键,返回上一级退出命令,返回上一级菜单; +3. 关于源码 + + 1) 源代码地址:https://os.mbed.com/users/benkatz/code/Hobbyking_Cheetah/; + 2) 当前 48V 电机驱动的代码基于源代码进行了优化,代码当前不开放;客户自行 + + 修改代码并烧录到电机驱动板,导致电机或驱动板损坏的将不在售后范围内;如 + 有功能定制等需求,请联系售后; + 3) 通过串口校准完编码器之后,可以通过串口 m 命令或者通过 CAN 接口发送 + MotorMode 命令,让电机进入 FOC 控制模式,通过 can 接口发送电机控制参数控 + 制电机;整个电机控制共由 5 个参数构成 position command,velocity command, + kp,kd,feed forward torque; + 4) 通过 CAN 总线发送命令也可以进行电机模式的切换及编码器的校准。 + 5) CAN 命令控制参数之间的关系如下: + 驱动参考力矩 = kp*(机械位置差) + t + kd*(机械速度差); + + 机械位置差 = (P - 电机当前机械位置); + 机械速度差 = (V –电机当前机械速度); + + 其中:各个参数的单位如下,通过上面的表达式,最终计算的驱动参考力矩 + 的单位为 N-m; + + ①P 为目标位置,单位为弧度(rad); + ②V 为目标速度,单位为 rad/s; + ③kp 为位置增益,单位为 N-m/rad; + ④kd 为速度增益,单位为 N-m*s/rad; + ⑤t 为力矩,单位为 N-m; + 6) 关于电机 CAN 接口通信协议及 STM32 例程见附件。 +4. 问题解答 + 1. 电机进入 motor 模式之后,运行一段时间,通过发送参数控制命令,电机不响应; +但是,发送 MotorMode 和 RestMode 电机能正常相应,这是为什么呢? + 答:在不断电的情况下,连接电机的串口,并通过 USB 转 TTL 连接到电脑串 + +口调试助手,查看电机打印输出内容;如果看到调试助手实时打印输出 Fault 内 +容,说明电机在运行的过程中,产生了故障;该故障的原因,输入给电机的 P,V, +Kp,Kd,t 的参数不合理,造成电机瞬间相应,电机驱动进入自我保护并打印输 +出故障;遇到该情况,一般对电机驱动重新上电就可以解决;如果重新上电后, +串口一直输入 Fault 信息,说明驱动板已经损坏。 + diff --git a/modules/motor/LKmotor/LK-TECH电机CAN协议说明V2_3.pdf b/modules/motor/LKmotor/LK-TECH电机CAN协议说明V2_3.pdf new file mode 100644 index 0000000..47d3206 --- /dev/null +++ b/modules/motor/LKmotor/LK-TECH电机CAN协议说明V2_3.pdf @@ -0,0 +1,1467 @@ + 上海瓴控科技有限公司 + + 上海瓴控科技有限公司 + + 瓴控科技 M 系列电机包含(MS 、MF、MG、MH)4 大系列 + +免责声明 + + 感谢您购买瓴控科技 M 系列电机及驱动系统。在使用之前,请仔细阅读本声明,一旦使用,即被视为对本 + 声明全部内容的认可和接受。请严格遵守手册、产品说明和相关的法律法规、政策、准则安装和使用该产品。 + 在使用产品过程中,用户承诺对自己的行为及因此而产生的所有后果负责。因用户不当使用、安装、改装造成 + 的任何损失,瓴控科技将不承担法律责任。 + + LK-TECH 是上海瓴控科技有限公司及其关联公司的商标。本文出现的产品名称、品牌等,均为其所属公司 + 的商标或注册商标。 + + 本产品及手册为瓴控科技版权所有。未经许可,不得以任何形式复制翻印。关于免责声明的最终解释权, + 归瓴控科技所有。 + + 1 + 上海瓴控科技有限公司 2 +目录 + 2 +1 CAN总线.参数及单电机命令收发报文格式.............................................................................. 3 +2 单电机命令列表........................................................................................................................................... 3 +3 单电机命令说明........................................................................................................................................... 4 +(1) 读取PID参数命令................................................................................................................................. 4 +(2) 写入PID参数到RAM命令................................................................................................................ 4 +(3) 写入PID参数到ROM命令.................................................................................................................4 +(4) 读取加速度命令................................................................................................................................... 5 +(5) 写入加速度到RAM命令.................................................................................................................. 5 +(6) 读取编码器数据命令........................................................................................................................ 6 +(7) 写入编码器值到ROM作为电机零点命令........................................................................... 6 +(8) 写入当前位置到ROM作为电机零点命令........................................................................... 7 +(9) 读取多圈角度命................................................................................................................................... 7 +(10) 读取单圈角度命令............................................................................................................................. 8 +(11) 清除电机角度命令............................................................................................................................. 8 +(12) 读取电机状态1和错误标志命令.............................................................................................. 9 +(13) 清除电机错误标志命令.................................................................................................................. 9 +(14) 读取电机状态2命令......................................................................................................................... 10 +(15) 读取电机状态3命令......................................................................................................................... 11 +(16) 电机关闭命令....................................................................................................................................... 11 +(17) 电机停止命令...................................................................................................................................... 12 +(18) 电机运行命令...................................................................................................................................... 12 +(19) 转矩开环控制命令........................................................................................................................... 12 +(20) 转矩闭环控制命令........................................................................................................................... 13 +(21) 速度闭环控制命令........................................................................................................................... 14 +(22) 位置闭环控制命令1........................................................................................................................ 14 +(23) 位置闭环控制命令2........................................................................................................................ 15 +(24) 位置闭环控制命令3........................................................................................................................ 16 +(25) 位置闭环控制命令4........................................................................................................................ 17 +(26) 位置闭环控制命令5........................................................................................................................ 17 +(27) 位置闭环控制命令6........................................................................................................................ 18 +4 多电机命令................................................................................................................................................... 19 + 上海瓴控科技有限公司 + + CAN 总线通讯协议 + +1. CAN 总线参数及单电机命令收发报文格式 + + 总线接口:CAN + 波特率:1Mbps + + 用于向单个电机发送命令及电机回复的报文格式如下: + 标识符:0x140 + ID(1~32) + 帧格式:DATA + 帧类型:标准帧 + DLC:8 字节 + +2. 单电机命令列表 命令数据 + 0x30 + 目前 M 系列电机驱动支持的 CAN 控制命令如下表: 0x31 + 名称 0x32 + 0x33 + 读取 PID 参数命令 0x34 + 写入 PID 参数到 RAM 命令 0x90 + 写入 PID 参数到 ROM 命令 0x91 + 读取加速度命令 0x19 + 写入加速度到 RAM 命令 0x92 + 读取编码器命令 0x94 + 写入编码器值到 ROM 作为电机零点命令 0x95 + 写入当前位置到 ROM 作为电机零点命令 0x9A + 读取多圈角度命令 0x9B + 读取单圈角度命令 0x9C + 清除电机角度命令(设置电机初始位置) 0x9D + 读取电机状态 1 和错误标志命令 0x80 + 清除电机错误标志命令 0x81 + 读取电机状态 2 命令 0x88 + 读取电机状态 3 命令 0xA0 + 电机关闭命令 0xA1 + 电机停止命令 0xA2 + 电机运行命令 0xA3 + 转矩开环控制命令 0xA4 + 转矩闭环控制命令 0xA5 + 速度闭环控制命令 0xA6 + 位置闭环控制命令 1 0xA7 + 位置闭环控制命令 2 0xA8 + 位置闭环控制命令 3 + 位置闭环控制命令 4 3 + 位置闭环控制命令 5 + 位置闭环控制命令 6 +上海瓴控科技有限公司 + +3. 单电机命令说明 + +(1) 读取 PID 参数命令(1 帧) + +主机发送该命令读取当前电机的的 PID 参数 + +数据域 说明 数据 + +DATA[0] 命令字节 0x30 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +驱动回复数据中包含了各个控制环路的 PI 参数。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x30 + +DATA[1] NULL 0x00 + +DATA[2] 位置环 P 参数 DATA[2] = anglePidKp + +DATA[3] 位置环 I 参数 DATA[3] = anglePidKi + +DATA[4] 速度环 P 参数 DATA[4] = speedPidKp + +DATA[5] 速度环 I 参数 DATA[5] = speedPidKi + +DATA[6] 转矩环 P 参数 DATA[6] = iqPidKp + +DATA[7] 转矩环 I 参数 DATA[7] = iqPidKi + +(2) 写入 PID 参数到 RAM 命令(1 帧) + +主机发送该命令写入 PID 参数到 RAM 中,断电后写入参数失效 + +数据域 说明 数据 + +DATA[0] 命令字节 0x31 + +DATA[1] NULL 0x00 + +DATA[2] 位置环 P 参数 DATA[2] = anglePidKp + +DATA[3] 位置环 I 参数 DATA[3] = anglePidKi + +DATA[4] 速度环 P 参数 DATA[4] = speedPidKp + +DATA[5] 速度环 I 参数 DATA[5] = speedPidKi + +DATA[6] 转矩环 P 参数 DATA[6] = iqPidKp + +DATA[7] 转矩环 I 参数 DATA[7] = iqPidKi + +驱动回复(1 帧) + +电机在收到命令后回复主机,回复命令和接收命令一致 + +(3) 写入 PID 参数到 ROM 命令(1 帧) + +主机发送该命令写入 PID 参数到 ROM 中,断电仍然有效 + +数据域 说明 数据 + +DATA[0] 命令字节 0x32 + +DATA[1] NULL 0x00 + + 4 + 上海瓴控科技有限公司 + +DATA[2] 位置环 P 参数 DATA[2] = anglePidKp + +DATA[3] 位置环 I 参数 DATA[3] = anglePidKi + +DATA[4] 速度环 P 参数 DATA[4] = speedPidKp + +DATA[5] 速度环 I 参数 DATA[5] = speedPidKi + +DATA[6] 转矩环 P 参数 DATA[6] = iqPidKp + +DATA[7] 转矩环 I 参数 DATA[7] = iqPidKi + +驱动回复(1 帧) + 电机在收到命令后回复主机,回复命令和接收命令一致 + +(4) 读取加速度命令(1 帧) + +主机发送该命令读取当前电机的的加速度参数 + + 数据域 说明 数据 + +DATA[0] 命令字节 0x33 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +驱动回复数据中包含了加速度参数。加速度数据 Accel 为 int32_t 类型,单位 1dps/s + + 数据域 说明 数据 + +DATA[0] 命令字节 0x33 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 加速度低字节 1 DATA[4] = *(uint8_t *)(&Accel) + +DATA[5] 加速度字节 2 DATA[5] = *((uint8_t *)(&Accel)+1) + +DATA[6] 加速度字节 3 DATA[6] = *((uint8_t *)(&Accel)+2) + +DATA[7] 加速度字节 4 DATA[7] = *((uint8_t *)(&Accel)+3) + +(5) 写入加速度到 RAM 命令(1 帧) + +主机发送该命令写入加速度到 RAM 中,断电后写入参数失效。加速度数据 Accel 为 int32_t 类型,单 + +位 1dps/s + + 数据域 说明 数据 + +DATA[0] 命令字节 0x34 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 加速度低字节 1 DATA[4] = *(uint8_t *)(&Accel) + +DATA[5] 加速度字节 2 DATA[5] = *((uint8_t *)(&Accel)+1) + +DATA[6] 加速度字节 3 DATA[6] = *((uint8_t *)(&Accel)+2) + +DATA[7] 加速度字节 4 DATA[7] = *((uint8_t *)(&Accel)+3) + + 5 + 上海瓴控科技有限公司 + +驱动回复(1 帧) + 电机在收到命令后回复主机,回复命令和接收命令一致 + +(6) 读取编码器数据命令(1 帧) + +主机发送该命令以读取编码器的当前位置 + +数据域 说明 数据 + +DATA[0] 命令字节 0x90 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 编码器位置 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383),为编码器原始位置减 + +去编码器零偏后的值。 + +2. 编码器原始位置 encoderRaw(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +3. 编码器零偏 encoderOffset(uint16_t 类型,14bit 编码器的数值范围 0~16383),该点作为电机角 + +度的 0 点。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x90 + +DATA[1] NULL 0x00 + +DATA[2] 编码器位置低字节 DATA[2] = *(uint8_t *)(&encoder) + +DATA[3] 编码器位置高字节 DATA[3] = *((uint8_t *)(&encoder)+1) + +DATA[4] 编码器原始位置低字节 DATA[4] = *(uint8_t *)(&encoderRaw) + +DATA[5] 编码器原始位置高字节 DATA[5] = *((uint8_t *)(&encoderRaw)+1) + +DATA[6] 编码器零偏低字节 DATA[6] = *(uint8_t *)(&encoderOffset) + +DATA[7] 编码器零偏高字节 DATA[7] = *((uint8_t *)(&encoderOffset)+1) + +(7) 写入编码器值到 ROM 作为电机零点命令(1 帧) + +主机发送该命令以设置编码器的零偏,其中,需要写入的编码器值 encoderOffset 为 uint16_t 类型, + +14bit 编码器的数值范围 0~16383。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x91 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] 编码器零偏低字节 DATA[6] = *(uint8_t *)(&encoderOffset) + +DATA[7] 编码器零偏高字节 DATA[7] = *((uint8_t *)(&encoderOffset)+1) + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据和主机发送的命令相同。 + + 6 + 上海瓴控科技有限公司 + +(8) 写入当前位置到 ROM 作为电机零点命令(1 帧) + +将电机当前编码器位置作为初始位置写入到 ROM + +注意: + +1. 该命令需要重新上电后才能生效 + +2. 该命令会将零点写入驱动的 ROM,多次写入将会影响芯片寿命,不建议频繁使用 + +数据域 说明 数据 + +DATA[0] 命令字节 0x19 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,数据中 encoderOffset 为设置的 0 偏值 + +数据域 说明 数据 + +DATA[0] 命令字节 0x19 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] 编码器零偏低字节 DATA[6] = *(uint8_t *)(&encoderOffset) + +DATA[7] 编码器零偏高字节 DATA[7] = *((uint8_t *)(&encoderOffset)+1) + +(9) 读取多圈角度命令(1 帧) + +主机发送该命令以读取当前电机的多圈绝对角度值 + +数据域 说明 数据 + +DATA[0] 命令字节 0x92 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机角度 motorAngle,为 int64_t 类型数据,正值表示顺时针累计角度,负值表示逆时针累计角 + +度,单位 0.01°/LSB。 + +数据域 说明 数据 + + 7 +上海瓴控科技有限公司 + +DATA[0] 命令字节 0x92 + DATA[1] = *(uint8_t *)(&motorAngle) +DATA[1] 角度低字节 1 DATA[2] = *((uint8_t *)(& motorAngle)+1) + DATA[3] = *((uint8_t *)(& motorAngle)+2) +DATA[2] 角度字节 2 DATA[4] = *((uint8_t *)(& motorAngle)+3) + DATA[5] = *((uint8_t *)(& motorAngle)+4) +DATA[3] 角度字节 3 DATA[6] = *((uint8_t *)(& motorAngle)+5) + DATA[7] = *((uint8_t *)(& motorAngle)+6) +DATA[4] 角度字节 4 + +DATA[5] 角度字节 5 + +DATA[6] 角度字节 6 + +DATA[7] 角度字节 7 + +(10) 读取单圈角度命令(1 帧) + +主机发送该命令以读取当前电机的单圈角度 + +数据域 说明 数据 + +DATA[0] 命令字节 0x94 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机单圈角度 circleAngle,为 uint32_t 类型数据,以编码器零点为起始点,顺时针增加,再次到 + +达零点时数值回 0,单位 0.01°/LSB,数值范围 0~36000*减速比-1。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x94 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 单圈角度低字节 1 DATA[4] = *(uint8_t *)(& circleAngle) + +DATA[5] 单圈角度字节 2 DATA[5] = *((uint8_t *)(& circleAngle)+1) + +DATA[6] 单圈角度字节 3 DATA[6] = *((uint8_t *)(& circleAngle)+2) + +DATA[7] 单圈角度高字节 4 DATA[7] = *((uint8_t *)(& circleAngle)+3) + +(11) 清除电机角度命令(1 帧)暂未实现 + +该命令清除电机的多圈和单圈角度数据,并将当前位置设为电机的零点,断电后失效 + +注意:该命令会同时清除所有位置环的控制命令数据 + +数据域 说明 数据 + +DATA[0] 命令字节 0x95 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + + 8 + 上海瓴控科技有限公司 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,帧数据和主机发送相同 + +(12) 读取电机状态 1 和错误标志命令(1 帧) + +该命令读取当前电机的温度、电压和错误状态标志 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9A + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据包含了以下参数: + +1. 电机温度 temperature(int8_t 类型,单位 1℃/LSB)。 + +2. 电压 voltage(uint16_t 类型,单位 0.1V/LSB)。 + +3. 错误标志 errorState(为 uint8_t 类型,各个位代表不同的电机状态) + +数据域 说明 数据 + +DATA[0] 命令字节 0x9A + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] NULL 0x00 + +DATA[3] 电压低字节 DATA[3] = *(uint8_t *)(&voltage) + +DATA[4] 电压高字节 DATA[4] = *((uint8_t *)(& voltage)+1) + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] 错误状态字节 DATA[7]=errorState + +备注: + +1. errorState 各个位具体状态表如下 + + errorState 位 状态说明 0 1 + + 0 电压状态 电压正常 低压保护 + + 1 无效 + + 2 无效 + + 3 温度状态 温度正常 过温保护 + + 4 无效 + + 5 无效 + + 6 无效 + + 7 无效 + +(13) 清除电机错误标志命令(1 帧) + 该命令清除当前电机的错误状态,电机收到后返回 + + 9 + 上海瓴控科技有限公司 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9B + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + 电机在收到命令后回复主机,该帧数据包含了以下参数: + +1. 电机温度 temperature(int8_t 类型,单位 1℃/LSB)。 + +2. 电压 voltage(uint16_t 类型,单位 0.1V/LSB)。 + +3. 错误标志 errorState(为 uint8_t 类型,各个位代表不同的电机状态)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9A + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] NULL 0x00 + +DATA[3] 电压低字节 DATA[3] = *(uint8_t *)(&voltage) + +DATA[4] 电压高字节 DATA[4] = *((uint8_t *)(& voltage)+1) + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] 错误状态字节 DATA[7]=errorState + +备注: + +1. 电机状态没有恢复正常时,错误标志无法清除。 +2. errorState 各个位具体状态参考读取电机状态 1 和错误标志命令。 + +(14) 读取电机状态 2 命令(1 帧) + +该命令读取当前电机的温度、电压、转速、编码器位置。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9C + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + + 10 +上海瓴控科技有限公司 + +数据域 说明 数据 + 0x9C +DATA[0] 命令字节 DATA[1] = *(uint8_t *)(&temperature) + DATA[2] = *(uint8_t *)(&iq) +DATA[1] 电机温度 DATA[3] = *((uint8_t *)(&iq)+1) + DATA[4] = *(uint8_t *)(&speed) +DATA[2] 转矩电流低字节 DATA[5] = *((uint8_t *)(&speed)+1) + DATA[6] = *(uint8_t *)(&encoder) +DATA[3] 转矩电流高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +DATA[4] 电机速度低字节 + +DATA[5] 电机速度高字节 + +DATA[6] 编码器位置低字节 + +DATA[7] 编码器位置高字节 + +(15) 读取电机状态 3 命令(1 帧) + +该命令读取当前电机的温度和相电流数据 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9D + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据包含了以下数据: + +1. 电机温度 temperature(int8_t 类型,1℃/LSB) + +2. A 相电流数据,数据类型为 int16_t 类型,对应实际相电流为 1A/64LSB。 + +3. B 相电流数据,数据类型为 int16_t 类型,对应实际相电流为 1A/64LSB。 + +4. C 相电流数据,数据类型为 int16_t 类型,对应实际相电流为 1A/64LSB。 + +数据域 说明 数据 + +DATA[0] 命令字节 0x9D + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] A 相电流低字节 DATA[2] = *(uint8_t *)(&iA) + +DATA[3] A 相电流高字节 DATA[3] = *((uint8_t *)(& iA)+1) + +DATA[4] B 相电流低字节 DATA[4] = *(uint8_t *)(&iB) + +DATA[5] B 相电流高字节 DATA[5] = *((uint8_t *)(& iB)+1) + +DATA[6] C 相电流低字节 DATA[6] = *(uint8_t *)(&iC) + +DATA[7] C 相电流高字节 DATA[7] = *((uint8_t *)(& iC)+1) + +(16) 电机关闭命令(1 帧) + +关闭电机,同时清除电机运行状态和之前接收的控制指令 + +数据域 说明 数据 + +DATA[0] 命令字节 0x80 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + + 11 +上海瓴控科技有限公司 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,帧数据和主机发送相同 + +(17) 电机停止命令(1 帧) + +停止电机,但不清除电机运行状态和之前接收的控制指令 + +数据域 说明 数据 + +DATA[0] 命令字节 0x81 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,帧数据和主机发送相同 + +(18) 电机运行命令(1 帧) + +从电机停止命令中恢复电机运行(恢复停止前的控制方式) + +数据域 说明 数据 + +DATA[0] 命令字节 0x88 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] NULL 0x00 + +DATA[5] NULL 0x00 + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +驱动回复(1 帧) + +电机在收到命令后回复主机,帧数据和主机发送相同 + +(19) 转矩开环控制命令(1 帧)该命令仅在 MS 上实现 + +主机发送该命令以控制电机的开环输出功率,控制值 powerControl 为 int16_t 类型,数值范围-1000~ + +1000,(电机母线电流和扭矩因不同电机而异)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA0 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 输出功率控制值低字节 DATA[4] = *(uint8_t *)(& powerControl) + + 12 + 上海瓴控科技有限公司 + +DATA[5] 输出功率控制值高字节 DATA[5] = *((uint8_t *)(& powerControl)+1) + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +备注: + + 1. 该命令中的控制值 powerControl 不受上位机(LK-Motor Tool)中的 Max Power 值限制。 +驱动回复(1 帧) + + 电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 +2. 电机的输出功率值(int16_t 类型,范围-1000~1000)。 +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA0 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 输出功率值低字节 DATA[2] = *(uint8_t *)(& power) + +DATA[3] 输出功率值高字节 DATA[3] = *((uint8_t *)(&power)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) + +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(20) 转矩闭环控制命令(1 帧)该命令仅在 MF 和 MG 上实现 + +主机发送该命令以控制电机的转矩电流输出,控制值 iqControl 为 int16_t 类型,数值范围-2000~ 2000, + +对应实际转矩电流范围-32A~32A(母线电流和电机的实际扭矩因不同电机而异)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA1 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 转矩电流控制值低字节 DATA[4] = *(uint8_t *)(&iqControl) + +DATA[5] 转矩电流控制值高字节 DATA[5] = *((uint8_t *)(&iqControl)+1) + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +备注: + +1. 该命令中的控制值 iqControl 不受上位机(LK-Motor Tool)中的 Max Torque Current 值限制。 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA1 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + + 13 + 上海瓴控科技有限公司 + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + DATA[3] = *((uint8_t *)(&iq)+1) +DATA[3] 转矩电流高字节 DATA[4] = *(uint8_t *)(&speed) + DATA[5] = *((uint8_t *)(&speed)+1) +DATA[4] 电机速度低字节 DATA[6] = *(uint8_t *)(&encoder) + DATA[7] = *((uint8_t *)(&encoder)+1) +DATA[5] 电机速度高字节 + +DATA[6] 编码器位置低字节 + +DATA[7] 编码器位置高字节 + +(21) 速度闭环控制命令(1 帧) + +主机发送该命令以控制电机的速度,控制值 speedControl 为 int32_t 类型,对应实际转速为 0.01dps/LSB。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA2 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 速度控制低字节 DATA[4] = *(uint8_t *)(&speedControl) + +DATA[5] 速度控制 DATA[5] = *((uint8_t *)(&speedControl)+1) + +DATA[6] 速度控制 DATA[6] = *((uint8_t *)(&speedControl)+2) + +DATA[7] 速度控制高字节 DATA[7] = *((uint8_t *)(&speedControl)+3) + +备注: + +1. 该命令下电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限制。 + +2. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 + +驱动回复(1 帧) + 电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA2 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) + +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(22) 位置闭环控制命令 1(1 帧) + +主机发送该命令以控制电机的位置(多圈角度), 控制值 angleControl 为 int32_t 类型,对应实际位 + +置为 0.01degree/LSB,即 36000 代表 360°,电机转动方向由目标位置和当前位置的差值决定。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA3 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + + 14 + 上海瓴控科技有限公司 + +DATA[3] NULL 0x00 + +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) +DATA[5] 位置控制 DATA[5] = *((uint8_t *)(&angleControl)+1) +DATA[6] 位置控制 DATA[6] = *((uint8_t *)(&angleControl)+2) +DATA[7] 位置控制高字节 DATA[7] = *((uint8_t *)(&angleControl)+3) + +备注: + +1. 该命令下的控制值 angleControl 受上位机(LK-Motor Tool)中的 Max Angle 值限制。 +2. 该命令下电机的最大速度由上位机(LK-Motor Tool)中的 Max Speed 值限制。 +3. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 +4. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + +驱动回复(1 帧) + 电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA3 +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(23) 位置闭环控制命令 2(1 帧) + +主机发送该命令以控制电机的位置(多圈角度), 控制值 angleControl 为 int32_t 类型,对应实际位 + +置为 0.01degree/LSB,即 36000 代表 360°,电机转动方向由目标位置和当前位置的差值决定。 + +控制值 maxSpeed 限制了电机转动的最大速度,为 uint16_t 类型,对应实际转速 1dps/LSB。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA4 + +DATA[1] NULL 0x00 + +DATA[2] 速度限制低字节 DATA[2] = *(uint8_t *)(&maxSpeed) + +DATA[3] 速度限制高字节 DATA[3] = *((uint8_t *)(&maxSpeed)+1) + +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) + +DATA[5] 位置控制 DATA[5] = *((uint8_t *)(&angleControl)+1) + +DATA[6] 位置控制 DATA[6] = *((uint8_t *)(&angleControl)+2) + +DATA[7] 位置控制高字节 DATA[7] = *((uint8_t *)(&angleControl)+3) + +备注: + +1. 该命令下的控制值 angleControl 受上位机(LK-Motor Tool)中的 Max Angle 值限制。 + +2. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 + +3. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + + 15 + 上海瓴控科技有限公司 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA4 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) + +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(24) 位置闭环控制命令 3(1 帧) + +主机发送该命令以控制电机的位置(单圈角度), 控制值 angleControl 为 uint16_t 类型,数值范围 + +0~35999,对应实际位置为 0.01degree/LSB,即实际角度范围 0°~359.99°。 + +控制值 spinDirection 设置电机转动的方向,为 uint8_t 类型,0x00 代表顺时针,0x01 代表逆时针。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA5 + +DATA[1] 转动方向字节 DATA[1] = spinDirection + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 + +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) + +DATA[5] 位置控制高字节 DATA[5] = *((uint8_t *)(&angleControl)+1) + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +备注: + +1. 该命令下电机的最大速度由上位机(LK-Motor Tool)中的 Max Speed 值限制。 + +2. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 + +3. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA5 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + + 16 + 上海瓴控科技有限公司 + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + DATA[5] = *((uint8_t *)(&speed)+1) +DATA[5] 电机速度高字节 DATA[6] = *(uint8_t *)(&encoder) + DATA[7] = *((uint8_t *)(&encoder)+1) +DATA[6] 编码器位置低字节 + +DATA[7] 编码器位置高字节 + +(25) 位置闭环控制命令 4(1 帧) + +主机发送该命令以控制电机的位置(单圈角度)。 + +1. 角度控制值 angleControl 为 uint16_t 类型,数值范围 0~35999,对应实际位置为 0.01degree/LSB, + +即实际角度范围 0°~359.99°。 + +2. spinDirection 设置电机转动的方向,为 uint8_t 类型,0x00 代表顺时针,0x01 代表逆时针。 + +3. maxSpeed 限制了电机转动的最大速度,为 uint16_t 类型,对应实际转速 1dps/LSB。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA6 + +DATA[1] 转动方向字节 DATA[1] = spinDirection + +DATA[2] 速度限制低字节 DATA[2] = *(uint8_t *)(&maxSpeed) + +DATA[3] 速度限制高字节 DATA[3] = *((uint8_t *)(&maxSpeed)+1) + +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) + +DATA[5] 位置控制高字节 DATA[5] = *((uint8_t *)(&angleControl)+1) + +DATA[6] NULL 0x00 + +DATA[7] NULL 0x00 + +备注: + +1. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 + +2. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA6 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) + +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(26) 位置闭环控制命令 5(1 帧) + +主机发送该命令以控制电机的位置增量, 控制值 angleControl 为 int32_t 类型,对应实际位置为 + +0.01degree/LSB。电机的转动方向由控制量的符号确定。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA7 + + 17 + 上海瓴控科技有限公司 + +DATA[1] NULL 0x00 + +DATA[2] NULL 0x00 + +DATA[3] NULL 0x00 +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) +DATA[5] 位置控制 DATA[5] = *((uint8_t *)(&angleControl)+1) + +DATA[6] 位置控制 DATA[6] = *((uint8_t *)(&angleControl)+2) +DATA[7] 位置控制高字节 DATA[7] = *((uint8_t *)(&angleControl)+3) + +备注: + +1. 该命令下电机的最大速度由上位机(LK-Motor Tool)中的 Max Speed 值限制。 +2. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 +3. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 + +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA7 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +(27) 位置闭环控制命令 6(1 帧) + +主机发送该命令以控制电机的位置增量, 控制值 angleControl 为 int32_t 类型,对应实际位置为 + +0.01degree/LSB。电机的转动方向由控制量的符号确定。 + +控制值 maxSpeed 限制了电机转动的最大速度,为 uint16_t 类型,对应实际转速 1dps/LSB。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA8 + +DATA[1] NULL 0x00 + +DATA[2] 速度限制低字节 DATA[2] = *(uint8_t *)(&maxSpeed) + +DATA[3] 速度限制高字节 DATA[3] = *((uint8_t *)(&maxSpeed)+1) + +DATA[4] 位置控制低字节 DATA[4] = *(uint8_t *)(&angleControl) + +DATA[5] 位置控制 DATA[5] = *((uint8_t *)(&angleControl)+1) + +DATA[6] 位置控制 DATA[6] = *((uint8_t *)(&angleControl)+2) + +DATA[7] 位置控制高字节 DATA[7] = *((uint8_t *)(&angleControl)+3) + +备注: + +1. 该控制模式下,电机的最大加速度由上位机(LK-Motor Tool)中的 Max Acceleration 值限制。 + +2. 该控制模式下,电机的最大转矩电流由上位机(LK-Motor Tool)中的 Max Torque Current 值限 + + 制。 + + 18 +上海瓴控科技有限公司 + +驱动回复(1 帧) + +电机在收到命令后回复主机,该帧数据中包含了以下参数。 + +1. 电机温度 temperature(int8_t 类型,1℃/LSB)。 + +2. 电机的转矩电流值 iq(int16_t 类型,范围-2048~2048,对应实际转矩电流范围-33A~33A)。 +3. 电机转速 speed(int16_t 类型,1dps/LSB)。 + +4. 编码器位置值 encoder(uint16_t 类型,14bit 编码器的数值范围 0~16383)。 + +数据域 说明 数据 + +DATA[0] 命令字节 0xA8 + +DATA[1] 电机温度 DATA[1] = *(uint8_t *)(&temperature) + +DATA[2] 转矩电流低字节 DATA[2] = *(uint8_t *)(&iq) + +DATA[3] 转矩电流高字节 DATA[3] = *((uint8_t *)(&iq)+1) + +DATA[4] 电机速度低字节 DATA[4] = *(uint8_t *)(&speed) + +DATA[5] 电机速度高字节 DATA[5] = *((uint8_t *)(&speed)+1) + +DATA[6] 编码器位置低字节 DATA[6] = *(uint8_t *)(&encoder) + +DATA[7] 编码器位置高字节 DATA[7] = *((uint8_t *)(&encoder)+1) + +4. 多电机命令 + + 多电机命令需要在设定软件中打开,多电机命令和单电机命令无法同时使用 + 多电机转矩闭环控制命令(1 帧) + + 用于同时向多个电机发送命令的报文格式如下: + 标识符:0x280 + 帧格式:DATA + 帧类型:标准帧 + DLC:8 字节 + +主机发送该命令以同时控制最多 4 个电机的转矩电流输出,控制值 iqControl 为 int16_t 类型,数值范 + +围-2000~ 2000,对应实际转矩电流范围-32A~32A(母线电流和电机的实际扭矩因不同电机而异)。 + +电机 ID 应当设置为#1~#4,并且不能重复,与帧数据中的 4 个转矩电流对应 + +数据域 说明 数据 + +DATA[0] 转矩电流 1 控制值低字节 DATA[0] = *(uint8_t *)(&iqControl_1) + +DATA[1] 转矩电流 1 控制值高字节 DATA[1] = *((uint8_t *)(&iqControl_1)+1) + +DATA[2] 转矩电流 2 控制值低字节 DATA[2] = *(uint8_t *)(&iqControl_2) + +DATA[3] 转矩电流 2 控制值高字节 DATA[3] = *((uint8_t *)(&iqControl_2)+1) + +DATA[4] 转矩电流 3 控制值低字节 DATA[4] = *(uint8_t *)(&iqControl_3) + +DATA[5] 转矩电流 3 控制值高字节 DATA[5] = *((uint8_t *)(&iqControl_3)+1) + +DATA[6] 转矩电流 4 控制值低字节 DATA[6] = *(uint8_t *)(&iqControl_4) + +DATA[7] 转矩电流 4 控制值高字节 DATA[7] = *((uint8_t *)(&iqControl_4)+1) + + 驱动回复(1 帧) + 各个电机回复命令的报文格式如下: + 标识符:0x140 + ID(1~4) + 帧格式:DATA + 帧类型:标准帧 + DLC:8 字节 + + 19 + 上海瓴控科技有限公司 + +各个电机根据 ID 从小到大依次回复,各个电机的回复数据与单电机转矩闭环控制命令回复数据相同 + + 20 + diff --git a/modules/motor/LKmotor/LK9025.c b/modules/motor/LKmotor/LK9025.c new file mode 100644 index 0000000..c9fadbc --- /dev/null +++ b/modules/motor/LKmotor/LK9025.c @@ -0,0 +1,169 @@ +#include "LK9025.h" +#include "stdlib.h" +#include "general_def.h" +#include "daemon.h" +#include "bsp_dwt.h" +#include "bsp_log.h" + +static uint8_t idx; +static LKMotorInstance *lkmotor_instance[LK_MOTOR_MX_CNT] = {NULL}; +static CANInstance *sender_instance; // 多电机发送时使用的caninstance(当前保存的是注册的第一个电机的caninstance) +// 后续考虑兼容单电机和多电机指令. + +/** + * @brief 电机反馈报文解析 + * + * @param _instance 发生中断的caninstance + */ +static void LKMotorDecode(CANInstance *_instance) +{ + LKMotorInstance *motor = (LKMotorInstance *)_instance->id; // 通过caninstance保存的father id获取对应的motorinstance + LKMotor_Measure_t *measure = &motor->measure; + uint8_t *rx_buff = _instance->rx_buff; + + DaemonReload(motor->daemon); // 喂狗 + measure->feed_dt = DWT_GetDeltaT(&measure->feed_dwt_cnt); + + measure->last_ecd = measure->ecd; + measure->ecd = (uint16_t)((rx_buff[7] << 8) | rx_buff[6]); + + measure->angle_single_round = ECD_ANGLE_COEF_LK * measure->ecd; + + measure->speed_rads = (1 - SPEED_SMOOTH_COEF) * measure->speed_rads + + DEGREE_2_RAD * SPEED_SMOOTH_COEF * (float)((int16_t)(rx_buff[5] << 8 | rx_buff[4])); + + measure->real_current = (1 - CURRENT_SMOOTH_COEF) * measure->real_current + + CURRENT_SMOOTH_COEF * (float)((int16_t)(rx_buff[3] << 8 | rx_buff[2])); + + measure->temperature = rx_buff[1]; + + if (measure->ecd - measure->last_ecd > 32768) + measure->total_round--; + else if (measure->ecd - measure->last_ecd < -32768) + measure->total_round++; + measure->total_angle = measure->total_round * 360 + measure->angle_single_round; +} + +static void LKMotorLostCallback(void *motor_ptr) +{ + LKMotorInstance *motor = (LKMotorInstance *)motor_ptr; + LOGWARNING("[LKMotor] motor lost, id: %d", motor->motor_can_ins->tx_id); +} + +LKMotorInstance *LKMotorInit(Motor_Init_Config_s *config) +{ + LKMotorInstance *motor = (LKMotorInstance *)malloc(sizeof(LKMotorInstance)); + motor = (LKMotorInstance *)malloc(sizeof(LKMotorInstance)); + memset(motor, 0, sizeof(LKMotorInstance)); + + motor->motor_settings = config->controller_setting_init_config; + PIDInit(&motor->current_PID, &config->controller_param_init_config.current_PID); + PIDInit(&motor->speed_PID, &config->controller_param_init_config.speed_PID); + PIDInit(&motor->angle_PID, &config->controller_param_init_config.angle_PID); + motor->other_angle_feedback_ptr = config->controller_param_init_config.other_angle_feedback_ptr; + motor->other_speed_feedback_ptr = config->controller_param_init_config.other_speed_feedback_ptr; + + config->can_init_config.id = motor; + config->can_init_config.can_module_callback = LKMotorDecode; + config->can_init_config.rx_id = 0x140 + config->can_init_config.tx_id; + config->can_init_config.tx_id = config->can_init_config.tx_id + 0x280 - 1; // 这样在发送写入buffer的时候更方便,因为下标从0开始,LK多电机发送id为0x280 + motor->motor_can_ins = CANRegister(&config->can_init_config); + + if (idx == 0) // 用第一个电机的can instance发送数据 + { + sender_instance = motor->motor_can_ins; + sender_instance->tx_id = 0x280; // 修改tx_id为0x280,用于多电机发送,不用管其他LKMotorInstance的tx_id,它们仅作初始化用 + } + + LKMotorEnable(motor); + DWT_GetDeltaT(&motor->measure.feed_dwt_cnt); + lkmotor_instance[idx++] = motor; + + Daemon_Init_Config_s daemon_config = { + .callback = LKMotorLostCallback, + .owner_id = motor, + .reload_count = 5, // 50ms + }; + motor->daemon = DaemonRegister(&daemon_config); + + return motor; +} + +/* 第一个电机的can instance用于发送数据,向其tx_buff填充数据 */ +void LKMotorControl() +{ + float pid_measure, pid_ref; + int16_t set; + LKMotorInstance *motor; + LKMotor_Measure_t *measure; + Motor_Control_Setting_s *setting; + + for (size_t i = 0; i < idx; ++i) + { + motor = lkmotor_instance[i]; + measure = &motor->measure; + setting = &motor->motor_settings; + pid_ref = motor->pid_ref; + + if ((setting->close_loop_type & ANGLE_LOOP) && setting->outer_loop_type == ANGLE_LOOP) + { + if (setting->angle_feedback_source == OTHER_FEED) + pid_measure = *motor->other_angle_feedback_ptr; + else + pid_measure = measure->real_current; + pid_ref = PIDCalculate(&motor->angle_PID, pid_measure, pid_ref); + if (setting->feedforward_flag & SPEED_FEEDFORWARD) + pid_ref += *motor->speed_feedforward_ptr; + } + + if ((setting->close_loop_type & SPEED_LOOP) && setting->outer_loop_type & (ANGLE_LOOP | SPEED_LOOP)) + { + if (setting->angle_feedback_source == OTHER_FEED) + pid_measure = *motor->other_speed_feedback_ptr; + else + pid_measure = measure->speed_rads; + pid_ref = PIDCalculate(&motor->angle_PID, pid_measure, pid_ref); + if (setting->feedforward_flag & CURRENT_FEEDFORWARD) + pid_ref += *motor->current_feedforward_ptr; + } + + if (setting->close_loop_type & CURRENT_LOOP) + { + pid_ref = PIDCalculate(&motor->current_PID, measure->real_current, pid_ref); + } + + set = pid_ref; + if (setting->motor_reverse_flag == MOTOR_DIRECTION_REVERSE) + set *= -1; + // 这里随便写的,为了兼容多电机命令.后续应该将tx_id以更好的方式表达电机id,单独使用一个CANInstance,而不是用第一个电机的CANInstance + memcpy(sender_instance->tx_buff + (motor->motor_can_ins->tx_id - 0x280) * 2, &set, sizeof(uint16_t)); + + if (motor->stop_flag == MOTOR_STOP) + { // 若该电机处于停止状态,直接将发送buff置零 + memset(sender_instance->tx_buff + (motor->motor_can_ins->tx_id - 0x280) * 2, 0, sizeof(uint16_t)); + } + } + + if (idx) // 如果有电机注册了 + CANTransmit(sender_instance, 0.2); +} + +void LKMotorStop(LKMotorInstance *motor) +{ + motor->stop_flag = MOTOR_STOP; +} + +void LKMotorEnable(LKMotorInstance *motor) +{ + motor->stop_flag = MOTOR_ENALBED; +} + +void LKMotorSetRef(LKMotorInstance *motor, float ref) +{ + motor->pid_ref = ref; +} + +uint8_t LKMotorIsOnline(LKMotorInstance *motor) +{ + return DaemonIsOnline(motor->daemon); +} diff --git a/modules/motor/LKmotor/LK9025.h b/modules/motor/LKmotor/LK9025.h new file mode 100644 index 0000000..a5cef5a --- /dev/null +++ b/modules/motor/LKmotor/LK9025.h @@ -0,0 +1,98 @@ +#ifndef LK9025_H +#define LK9025_H + +#include "stdint.h" +#include "bsp_can.h" +#include "controller.h" +#include "motor_def.h" +#include "daemon.h" + +#define LK_MOTOR_MX_CNT 4 // 最多允许4个LK电机使用多电机指令,挂载在一条总线上 + +#define I_MIN -2000 +#define I_MAX 2000 +#define CURRENT_SMOOTH_COEF 0.9f +#define SPEED_SMOOTH_COEF 0.85f +#define REDUCTION_RATIO_DRIVEN 1 +#define ECD_ANGLE_COEF_LK (360.0f / 65536.0f) +#define CURRENT_TORQUE_COEF_LK 0.003645f // 电流设定值转换成扭矩的系数,算出来的设定值除以这个系数就是扭矩值 + +typedef struct // 9025 +{ + uint16_t last_ecd; // 上一次读取的编码器值 + uint16_t ecd; // 当前编码器值 + float angle_single_round; // 单圈角度 + float speed_rads; // speed rad/s + int16_t real_current; // 实际电流 + uint8_t temperature; // 温度,C° + + float total_angle; // 总角度 + int32_t total_round; // 总圈数 + + float feed_dt; + uint32_t feed_dwt_cnt; +} LKMotor_Measure_t; + +typedef struct +{ + LKMotor_Measure_t measure; + + Motor_Control_Setting_s motor_settings; + + float *other_angle_feedback_ptr; // 其他反馈来源的反馈数据指针 + float *other_speed_feedback_ptr; + float *speed_feedforward_ptr; // 速度前馈数据指针,可以通过此指针设置速度前馈值,或LQR等时作为速度状态变量的输入 + float *current_feedforward_ptr; // 电流前馈指针 + PIDInstance current_PID; + PIDInstance speed_PID; + PIDInstance angle_PID; + float pid_ref; + + Motor_Working_Type_e stop_flag; // 启停标志 + + CANInstance *motor_can_ins; + + DaemonInstance *daemon; + +} LKMotorInstance; + +/** + * @brief 初始化LK电机 + * + * @param config 电机配置 + * @return LKMotorInstance* 返回实例指针 + */ +LKMotorInstance *LKMotorInit(Motor_Init_Config_s *config); + +/** + * @brief 设置参考值 + * @attention 注意此函数设定的ref是最外层闭环的输入,若要设定内层闭环的值请通过前馈数据指针设置 + * + * @param motor 要设置的电机 + * @param ref 设定值 + */ +void LKMotorSetRef(LKMotorInstance *motor, float ref); + +/** + * @brief 为所有LK电机计算pid/反转/模式控制,并通过bspcan发送电流值(发送CAN报文) + * + */ +void LKMotorControl(); + +/** + * @brief 停止LK电机,之后电机不会响应任何指令 + * + * @param motor + */ +void LKMotorStop(LKMotorInstance *motor); + +/** + * @brief 启动LK电机 + * + * @param motor + */ +void LKMotorEnable(LKMotorInstance *motor); + +uint8_t LKMotorIsOnline(LKMotorInstance *motor); + +#endif // LK9025_H diff --git a/modules/motor/LKmotor/LK_motor.md b/modules/motor/LKmotor/LK_motor.md new file mode 100644 index 0000000..6784747 --- /dev/null +++ b/modules/motor/LKmotor/LK_motor.md @@ -0,0 +1,12 @@ +# LK motor + +这是瓴控电机的模块封装说明文档。关于LK电机的控制报文和反馈报文值,详见LK电机的说明文档,由于电机实例已经自带三环PID计算,一般来说**我们能用到的只有单电机的力矩指令和多电机指令。** + +注意LK电机在使用多电机发送的时候,只支持一条总线上至多4个电机,多电机模式下LK仅支持发送id 0x280为接收ID为0x140+id. + +要设置为多电机模式,请通过串口连接电机,并使用该文件夹下的LK motor tool.exe进行配置。 + + +## LK的其他电机 + +若使用其他LK电机,唯一需要修改的是确定编码器的精度,即LKMotorDecode()部分的速度反馈和编码器反馈解析。 \ No newline at end of file diff --git a/modules/motor/LKmotor/反馈报文.png b/modules/motor/LKmotor/反馈报文.png new file mode 100644 index 0000000..554042a Binary files /dev/null and b/modules/motor/LKmotor/反馈报文.png differ diff --git a/modules/motor/LKmotor/报文格式.png b/modules/motor/LKmotor/报文格式.png new file mode 100644 index 0000000..882a23d Binary files /dev/null and b/modules/motor/LKmotor/报文格式.png differ diff --git a/modules/motor/motor_def.h b/modules/motor/motor_def.h new file mode 100644 index 0000000..f97b6b9 --- /dev/null +++ b/modules/motor/motor_def.h @@ -0,0 +1,159 @@ +/** + * @file motor_def.h + * @author neozng + * @brief 电机通用的数据结构定义 + * @version beta + * @date 2022-11-01 + * + * @copyright Copyright (c) 2022 HNU YueLu EC all rights reserved + * + */ + +#ifndef MOTOR_DEF_H +#define MOTOR_DEF_H + +#include "controller.h" +#include "stdint.h" + +#define LIMIT_MIN_MAX(x, min, max) (x) = (((x) <= (min)) ? (min) : (((x) >= (max)) ? (max) : (x))) + +/** + * @brief 闭环类型,如果需要多个闭环,则使用或运算 + * 例如需要速度环和电流环: CURRENT_LOOP|SPEED_LOOP + */ +typedef enum +{ + OPEN_LOOP = 0b0000, + CURRENT_LOOP = 0b0001, + SPEED_LOOP = 0b0010, + ANGLE_LOOP = 0b0100, + + // only for checking + SPEED_AND_CURRENT_LOOP = 0b0011, + ANGLE_AND_SPEED_LOOP = 0b0110, + ALL_THREE_LOOP = 0b0111, +} Closeloop_Type_e; + +typedef enum +{ + FEEDFORWARD_NONE = 0b00, + CURRENT_FEEDFORWARD = 0b01, + SPEED_FEEDFORWARD = 0b10, + CURRENT_AND_SPEED_FEEDFORWARD = CURRENT_FEEDFORWARD | SPEED_FEEDFORWARD, +} Feedfoward_Type_e; + +/* 反馈来源设定,若设为OTHER_FEED则需要指定数据来源指针,详见Motor_Controller_s*/ +typedef enum +{ + MOTOR_FEED = 0, + OTHER_FEED, +} Feedback_Source_e; + +/* 电机正反转标志 */ +typedef enum +{ + MOTOR_DIRECTION_NORMAL = 0, + MOTOR_DIRECTION_REVERSE = 1 +} Motor_Reverse_Flag_e; + +/* 反馈量正反标志 */ +typedef enum +{ + FEEDBACK_DIRECTION_NORMAL = 0, + FEEDBACK_DIRECTION_REVERSE = 1 +} Feedback_Reverse_Flag_e; +typedef enum +{ + MOTOR_STOP = 0, + MOTOR_ENALBED = 1, +} Motor_Working_Type_e; + +typedef enum +{ + NO_POWER_LIMIT = 0, + POWER_LIMIT_ON = 1, +} Power_Limit_Type_e; + +/* 电机控制设置,包括闭环类型,反转标志和反馈来源 */ +typedef struct +{ + Closeloop_Type_e outer_loop_type; // 最外层的闭环,未设置时默认为最高级的闭环 + Closeloop_Type_e close_loop_type; // 使用几个闭环(串级) + Motor_Reverse_Flag_e motor_reverse_flag; // 是否反转 + Feedback_Reverse_Flag_e feedback_reverse_flag; // 反馈是否反向 + Feedback_Source_e angle_feedback_source; // 角度反馈类型 + Feedback_Source_e speed_feedback_source; // 速度反馈类型 + Feedfoward_Type_e feedforward_flag; // 前馈标志 + Power_Limit_Type_e power_limit_flag; //功率限制标志 + +} Motor_Control_Setting_s; + +/* 电机控制方式枚举 */ +typedef enum +{ + CONTROL_TYPE_NONE = 0, + CURRENT_CONTROL, + VOLTAGE_CONTROL, +} Motor_Control_Type_e; + + +/* 电机控制器,包括其他来源的反馈数据指针,3环控制器和电机的参考输入*/ +// 后续增加前馈数据指针 +typedef struct +{ + float *other_angle_feedback_ptr; // 其他反馈来源的反馈数据指针 + float *other_speed_feedback_ptr; + float *speed_feedforward_ptr; + float *current_feedforward_ptr; + + PIDInstance current_PID; + PIDInstance speed_PID; + PIDInstance angle_PID; + + float pid_ref; // 将会作为每个环的输入和输出顺次通过串级闭环 + + float motor_power_max; //每个电机分配的功率上限 + float motor_power_predict; //根据模型预测的电机功率 + float motor_power_scale; //电机功率缩放比例 +} Motor_Controller_s; + +/* 电机类型枚举 */ +typedef enum +{ + MOTOR_TYPE_NONE = 0, + GM6020, + M3508, + M2006, + LK9025, + HT04, +} Motor_Type_e; + +/** + * @brief 电机控制器初始化结构体,包括三环PID的配置以及两个反馈数据来源指针 + * 如果不需要某个控制环,可以不设置对应的pid config + * 需要其他数据来源进行反馈闭环,不仅要设置这里的指针还需要在Motor_Control_Setting_s启用其他数据来源标志 + */ +typedef struct +{ + float *other_angle_feedback_ptr; // 角度反馈数据指针,注意电机使用total_angle + float *other_speed_feedback_ptr; // 速度反馈数据指针,单位为angle per sec + + float *speed_feedforward_ptr; // 速度前馈数据指针 + float *current_feedforward_ptr; // 电流前馈数据指针 + + PID_Init_Config_s current_PID; + PID_Init_Config_s speed_PID; + PID_Init_Config_s angle_PID; +} Motor_Controller_Init_s; + +/* 用于初始化CAN电机的结构体,各类电机通用 */ +typedef struct +{ + Motor_Controller_Init_s controller_param_init_config; + Motor_Control_Setting_s controller_setting_init_config; + Motor_Type_e motor_type; + CAN_Init_Config_s can_init_config; + Motor_Control_Type_e motor_control_type; +} Motor_Init_Config_s; + +#endif // !MOTOR_DEF_H diff --git a/modules/motor/motor_task.c b/modules/motor/motor_task.c new file mode 100644 index 0000000..47ff232 --- /dev/null +++ b/modules/motor/motor_task.c @@ -0,0 +1,27 @@ +#include "motor_task.h" +#include "LK9025.h" +#include "HT04.h" +#include "dji_motor.h" +#include "step_motor.h" +#include "servo_motor.h" + +void MotorControlTask() +{ + // static uint8_t cnt = 0; 设定不同电机的任务频率 + // if(cnt%5==0) //200hz + // if(cnt%10==0) //100hz + DJIMotorControl(); + + /* 如果有对应的电机则取消注释,可以加入条件编译或者register对应的idx判断是否注册了电机 */ + LKMotorControl(); + + // legacy support + // 由于ht04电机的反馈方式为接收到一帧消息后立刻回传,以此方式连续发送可能导致总线拥塞 + // 为了保证高频率控制,HTMotor中提供了以任务方式启动控制的接口,可通过宏定义切换 + // HTMotorControl(); + // 将所有的CAN设备集中在一处发送,最高反馈频率仅能达到500Hz,为了更好的控制效果,应使用新的HTMotorControlInit()接口 + + ServeoMotorControl(); + + // StepMotorControl(); +} diff --git a/modules/motor/motor_task.h b/modules/motor/motor_task.h new file mode 100644 index 0000000..214d3c1 --- /dev/null +++ b/modules/motor/motor_task.h @@ -0,0 +1,25 @@ +/** + * @file motor_task.h + * @author neozng + * @brief 对所有电机,舵机等控制任务的进一步封装,MotorControlTask()将在操作系统中按一定频率调用 + * @version beta + * @date 2022-11-01 + * + * @copyright Copyright (c) 2022 + * + */ +#ifndef MOTOR_TASK_H +#define MOTOR_TASK_H + + +/** + * @brief 电机控制闭环任务,在RTOS中应该设定为1Khz运行 + * 舵机控制任务的频率设定为20Hz或更低 + * + * @note 好无语,就一个函数罢了,干脆全部放到头文件里好了. + * + */ +void MotorControlTask(); + +#endif // !MOTOR_TASK_H + diff --git a/modules/motor/servo_motor/servo_motor.c b/modules/motor/servo_motor/servo_motor.c new file mode 100644 index 0000000..e5c4564 --- /dev/null +++ b/modules/motor/servo_motor/servo_motor.c @@ -0,0 +1,123 @@ +#include "servo_motor.h" +#include "stdlib.h" +#include "memory.h" + +extern TIM_HandleTypeDef htim1; +/*第二版*/ +static ServoInstance *servo_motor_instance[SERVO_MOTOR_CNT] = {NULL}; +static int16_t compare_value[SERVO_MOTOR_CNT] = {0}; +static uint8_t servo_idx = 0; // register servo_idx,是该文件的全局舵机索引,在注册时使用 + +// 通过此函数注册一个舵机 +ServoInstance *ServoInit(Servo_Init_Config_s *Servo_Init_Config) +{ + ServoInstance *servo = (ServoInstance *)malloc(sizeof(ServoInstance)); + memset(servo, 0, sizeof(ServoInstance)); + + servo->Servo_type = Servo_Init_Config->Servo_type; + servo->htim = Servo_Init_Config->htim; + servo->Channel = Servo_Init_Config->Channel; + + HAL_TIM_PWM_Start(Servo_Init_Config->htim, Servo_Init_Config->Channel); + servo_motor_instance[servo_idx++] = servo; + return servo; +} + +/** + * @brief 写入自由角度数值 + * + * @param Servo_Motor 注册的舵机实例 + * @param S_angle 改变自由模式设定的角度 + */ +void Servo_Motor_FreeAngle_Set(ServoInstance *Servo_Motor, int16_t S_angle) +{ + switch (Servo_Motor->Servo_type) + { + case Servo180: + if (S_angle > 180) + S_angle = 180; + break; + case Servo270: + if (S_angle > 270) + S_angle = 270; + break; + case Servo360: + if (S_angle > 100) + S_angle = 100; + break; + default: + break; + } + if (S_angle < 0) + S_angle = 0; + Servo_Motor->Servo_Angle.free_angle = S_angle; +} + +/** + * @brief 写入起始,终止角度数值 + * + * @param Servo_Motor 注册的舵机实例 + * @param Start_angle 起始角度 + * @param Final_angle 终止角度 + */ +void Servo_Motor_StartSTOP_Angle_Set(ServoInstance *Servo_Motor, int16_t Start_angle, int16_t Final_angle) +{ + Servo_Motor->Servo_Angle.Init_angle = Start_angle; + Servo_Motor->Servo_Angle.Final_angle = Final_angle; +} +/** + * @brief 舵机模式选择 + * + * @param Servo_Motor 注册的舵机实例 + * @param mode 需要选择的模式 + */ +void Servo_Motor_Type_Select(ServoInstance *Servo_Motor, int16_t mode) +{ + Servo_Motor->Servo_Angle_Type = mode; +} + +/** + * @brief 舵机输出控制 + * + */ +void ServeoMotorControl() +{ + ServoInstance *Servo_Motor; + + for (size_t i = 0; i < servo_idx; i++) + { + if (servo_motor_instance[i]) + { + Servo_Motor = servo_motor_instance[i]; + + switch (Servo_Motor->Servo_type) + { + case Servo180: + if (Servo_Motor->Servo_Angle_Type == Start_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.Init_angle * 20000 / 20 / 90; + if (Servo_Motor->Servo_Angle_Type == Final_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.Final_angle * 20000 / 20 / 90; + if (Servo_Motor->Servo_Angle_Type == Free_Angle_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.free_angle * 20000 / 20 / 90; + __HAL_TIM_SET_COMPARE(Servo_Motor->htim, Servo_Motor->Channel, compare_value[i]); + break; + case Servo270: + if (Servo_Motor->Servo_Angle_Type == Start_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.Init_angle * 20000 / 20 / 135; + if (Servo_Motor->Servo_Angle_Type == Final_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.Final_angle * 20000 / 20 / 135; + if (Servo_Motor->Servo_Angle_Type == Free_Angle_mode) + compare_value[i] = 0.5 * 20000 / 20 + Servo_Motor->Servo_Angle.free_angle * 20000 / 20 / 135; + __HAL_TIM_SET_COMPARE(Servo_Motor->htim, Servo_Motor->Channel, compare_value[i]); + break; + case Servo360: + /*500-2500的占空比 500-1500对应正向转速 1500-2500对于反向转速*/ + compare_value[i] = 500 + 20 * Servo_Motor->Servo_Angle.servo360speed; + __HAL_TIM_SET_COMPARE(Servo_Motor->htim, Servo_Motor->Channel, compare_value[i]); + break; + default: + break; + } + } + } +} diff --git a/modules/motor/servo_motor/servo_motor.h b/modules/motor/servo_motor/servo_motor.h new file mode 100644 index 0000000..81a4237 --- /dev/null +++ b/modules/motor/servo_motor/servo_motor.h @@ -0,0 +1,90 @@ +/** + * @file servo_motor.h + * @author panrui + * @brief 舵机控制头文件 + * @version 0.1 + * @date 2022-12-12 + * + * @copyright Copyright (c) 2022 + * + */ + +#ifndef SERVO_MOTOR_H +#define SERVO_MOTOR_H + +#include "main.h" +#include "tim.h" +#include + +#define SERVO_MOTOR_CNT 7 + +/*各种舵机类型*/ +typedef enum +{ + Servo180 = 0, + Servo270 = 1, + Servo360 = 2, +} Servo_Type_e; + +/*舵机模式选择*/ +typedef enum +{ + Free_Angle_mode, // 任意角度模式 + Start_mode, // 起始角度模式 + Final_mode, // 终止角度模式 +} Servo_Angle_Type_e; +/*角度设置*/ +typedef struct +{ + /*起止角度模式设置值*/ + int16_t Init_angle; + int16_t Final_angle; + /*任意角度模式设置值*/ + int16_t free_angle; + /*下述值仅仅适用于360°舵机 + *设定值为0-100 为速度值百分比 + *0-50为正转 速度由快到慢 + *51-100为反转 速度由慢到快 + */ + int16_t servo360speed; +} Servo_Angle_s; + +/* 用于初始化不同舵机的结构体,各类舵机通用 */ +typedef struct +{ + Servo_Type_e Servo_type; + Servo_Angle_Type_e Servo_Angle_Type; + // 使用的定时器类型及通道 + TIM_HandleTypeDef *htim; + /*Channel值设定 + *TIM_CHANNEL_1 + *TIM_CHANNEL_2 + *TIM_CHANNEL_3 + *TIM_CHANNEL_4 + *TIM_CHANNEL_ALL + */ + uint32_t Channel; + +} Servo_Init_Config_s; +typedef struct +{ + Servo_Angle_Type_e Servo_Angle_Type; + Servo_Angle_s Servo_Angle; + Servo_Type_e Servo_type; + // 使用的定时器类型及通道 + TIM_HandleTypeDef *htim; + /*Channel值设定 + *TIM_CHANNEL_1 + *TIM_CHANNEL_2 + *TIM_CHANNEL_3 + *TIM_CHANNEL_4 + *TIM_CHANNEL_ALL + */ + uint32_t Channel; +} ServoInstance; + +ServoInstance *ServoInit(Servo_Init_Config_s *Servo_Init_Config); +void Servo_Motor_FreeAngle_Set(ServoInstance *Servo_Motor, int16_t S_angle); +void Servo_Motor_Type_Select(ServoInstance *Servo_Motor,int16_t mode); +void ServeoMotorControl(); +#endif // SERVO_MOTOR_H \ No newline at end of file diff --git a/modules/motor/servo_motor/servo_motor.md b/modules/motor/servo_motor/servo_motor.md new file mode 100644 index 0000000..12d1079 --- /dev/null +++ b/modules/motor/servo_motor/servo_motor.md @@ -0,0 +1,70 @@ +##舵机的使用 + + panrui@hnu.edu.cn
+ +> todo: 由于新增了bsp_pwm的支持,舵机模块需要部分重构 +### 舵机基础知识 + +已最常见的SG90舵机为例,SG90舵机要求工作在频率为50HZ——周期为20ms的PWM波,且对应信号的高低电平在0.5ms - 2.5ms之间,对应的舵机转动角度如下表所示(当然也可以按照这个线性的对应关系去达到转动自己想要的角度,如想要转动60°,则高电平脉宽为大概为1.2ms,具体能不能转到特定的角度还和舵机的精度有关) + +>0.5ms-------------0度; 2.5% +>1.0ms------------45度; 5.0% +>1.5ms------------90度; 7.5% +>2.0ms-----------135度; 10.0% +>2.5ms-----------180度; 12.5% + +根据`Tout = (PSC+1)* (ARR+1)/Tclk`公式 +则我们需要产生50Hz的PWM波,则预分频的系数为 Prescaler = 168-1,自动重装载值 Counter Period = 20000-1,此时定时器产生的频率为 168Mhz/168/20000 = 50Hz。 当然这个值也可以自己设置,只要满足产生的频率为50Hz即可. +`__HAL_TIM_SET_COMPARE(htim, Channel, compare_value);` +这是设置占空比的函数 +eg:当初始占空比为1200/20000则为6%,根据20*6%=1.2ms (1.2-0.5)/(2.5-0.5)*180=63° 故舵机会转动63° +为了方便通过上述eg我们将所需要的角度与PWM计数值对应关系封装成函数。需要在初始化的時候输入我们所需要的角度和相关定时器参数即可。这样我们就可以设置SG90为参数范围内(0~180°)任意度数。 + +--- + +## 如何注册一个舵机实例 +!!! + +**注意!由于舵机为开环控制,无论选择舵机为何种类型,舵机都能够正常运行,但是运行的角度可能会与设定不同,请务必正确选择舵机型号!且最多添加7个舵机!** +我们可以像这样注册一个舵机实例 +```c + +static ServoInstance *leftservomoto; +//初始化参数 +Servo_Init_Config_s config={ + //舵机安装选择的定时器及通道 + //C板有常用的7路PWM输出:TIM1-1,2,3,4 TIM8-1,2,3 + .htim=&htim1, + .Channel=TIM_CHANNEL_1, + //舵机的初始化模式和类型 + .Servo_Angle_Type=Start_mode, + .Servo_type=Servo180, +}; +// 设置好参数后进行初始化并保留返回的指针 +leftservomoto = ServoInit(&config); +``` +>要控制一个舵机 我们提供了以下三个接口 +```c +//自由模式下,写入自由角度数值 +void Servo_Motor_FreeAngle_Set(ServoInstance *Servo_Motor, int16_t S_angle); +//起止模式下,写入起始,终止角度数值(防止反复写入起始和终止角度) +void Servo_Motor_StartSTOP_Angle_Set(ServoInstance *Servo_Motor, int16_t Start_angle, int16_t Final_angle); +/* + Free_Angle_mode, // 任意角度模式 + Start_mode, // 起始角度模式 + Final_mode, // 终止角度模式 +*/ +void Servo_Motor_Type_Select(ServoInstance *Servo_Motor,int16_t mode); +//比如我们要使用舵机,并更改一个舵机的模式 +void ServoTask() +{ + //更改leftservomoto为Free_Angle_mode模式 + Servo_Motor_Type_Select(leftservomoto,Free_Angle_mode); + //设置转到0角度 + Servo_Motor_FreeAngle_Set(leftservomoto, 0); + //调用函数,控制电机 + Servo_Motor_Control(); +} + + +``` \ No newline at end of file diff --git a/modules/motor/step_motor/step_motor.c b/modules/motor/step_motor/step_motor.c new file mode 100644 index 0000000..e69de29 diff --git a/modules/motor/step_motor/step_motor.h b/modules/motor/step_motor/step_motor.h new file mode 100644 index 0000000..e69de29 diff --git a/modules/oled/oled.c b/modules/oled/oled.c new file mode 100644 index 0000000..a9e62c9 --- /dev/null +++ b/modules/oled/oled.c @@ -0,0 +1,378 @@ +#include "oled.h" +#include "oledfont.h" +#include "main.h" +#include+#include + +extern I2C_HandleTypeDef hi2c2; +static uint8_t OLED_GRAM[128][8]; + +/** + * @brief 写数据或者指令到OLED, 如果使用的是SPI,请重写这个函数 + * @param[in] dat: 要写入的字节 + * @param[in] cmd: OLED_CMD 代表写入的字节是指令; OLED_DATA 代表写入的字节是数据 + * @retval none + */ +void oled_write_byte(uint8_t dat, uint8_t cmd) +{ + static uint8_t cmd_data[2]; + if(cmd == OLED_CMD) + { + cmd_data[0] = 0x00; + } + else + { + cmd_data[0] = 0x40; + } + cmd_data[1] = dat; + HAL_I2C_Master_Transmit(&hi2c2, OLED_I2C_ADDRESS, cmd_data, 2, 10); +} + + +/** + * @brief 初始化OLED模块, + * @param[in] none + * @retval none + */ +void OLED_init(void) +{ + oled_write_byte(0xAE, OLED_CMD); //display off + oled_write_byte(0x20, OLED_CMD); //Set Memory Addressing Mode + oled_write_byte(0x10, OLED_CMD); //00,Horizontal Addressing Mode;01,Vertical Addressing Mode;10,Page Addressing Mode (RESET);11,Invalid + oled_write_byte(0xb0, OLED_CMD); //Set Page Start Address for Page Addressing Mode,0-7 + oled_write_byte(0xc8, OLED_CMD); //Set COM Output Scan Direction + oled_write_byte(0x00, OLED_CMD); //---set low column address + oled_write_byte(0x10, OLED_CMD); //---set high column address + oled_write_byte(0x40, OLED_CMD); //--set start line address + oled_write_byte(0x81, OLED_CMD); //--set contrast control register + oled_write_byte(0xff, OLED_CMD); //brightness 0x00~0xff + oled_write_byte(0xa1, OLED_CMD); //--set segment re-map 0 to 127 + oled_write_byte(0xa6, OLED_CMD); //--set normal display + oled_write_byte(0xa8, OLED_CMD); //--set multiplex ratio(1 to 64) + oled_write_byte(0x3F, OLED_CMD); // + oled_write_byte(0xa4, OLED_CMD); //0xa4,Output follows RAM content;0xa5,Output ignores RAM content + oled_write_byte(0xd3, OLED_CMD); //-set display offset + oled_write_byte(0x00, OLED_CMD); //-not offset + oled_write_byte(0xd5, OLED_CMD); //--set display clock divide ratio/oscillator frequency + oled_write_byte(0xf0, OLED_CMD); //--set divide ratio + oled_write_byte(0xd9, OLED_CMD); //--set pre-charge period + oled_write_byte(0x22, OLED_CMD); // + oled_write_byte(0xda, OLED_CMD); //--set com pins hardware configuration + oled_write_byte(0x12, OLED_CMD); + oled_write_byte(0xdb, OLED_CMD); //--set vcomh + oled_write_byte(0x20, OLED_CMD); //0x20,0.77xVcc + oled_write_byte(0x8d, OLED_CMD); //--set DC-DC enable + oled_write_byte(0x14, OLED_CMD); // + oled_write_byte(0xaf, OLED_CMD); //--turn on oled panel +} + + +/** + * @brief 打开OLED显示 + * @param[in] none + * @retval none + */ +void OLED_display_on(void) +{ + oled_write_byte(0x8d, OLED_CMD); + oled_write_byte(0x14, OLED_CMD); + oled_write_byte(0xaf, OLED_CMD); +} + + +/** + * @brief 关闭OLED显示 + * @param[in] none + * @retval none + */ +void OLED_display_off(void) +{ + oled_write_byte(0x8d, OLED_CMD); + oled_write_byte(0x10, OLED_CMD); + oled_write_byte(0xae, OLED_CMD); +} + + +/** + * @brief 操作GRAM内存(128*8char数组) + * @param[in] pen: 操作类型. + PEN_CLEAR: 设置为0x00 + PEN_WRITE: 设置为0xff + PEN_INVERSION: 按位取反 + * @retval none + */ +void OLED_operate_gram(pen_typedef pen) +{ + uint8_t i, n; + + for (i = 0; i < 8; i++) + { + for (n = 0; n < 128; n++) + { + if (pen == PEN_WRITE) + { + OLED_GRAM[n][i] = 0xff; + } + else if (pen == PEN_CLEAR) + { + OLED_GRAM[n][i] = 0x00; + } + else + { + OLED_GRAM[n][i] = 0xff - OLED_GRAM[n][i]; + } + } + } +} + +/** + * @brief 设置光标起点(x,y) + * @param[in] x:x轴, 从 0 到 127 + * @param[in] y:y轴, 从 0 到 7 + * @retval none + */ +void OLED_set_pos(uint8_t x, uint8_t y) +{ + oled_write_byte((0xb0 + y), OLED_CMD); //set page address y + oled_write_byte(((x&0xf0)>>4)|0x10, OLED_CMD); //set column high address + oled_write_byte((x&0x0f), OLED_CMD); //set column low address +} + +/** + * @brief 操作GRAM中的一个位,相当于操作屏幕的一个点 + * @param[in] x:x轴, [0,X_WIDTH-1] + * @param[in] y:y轴, [0,Y_WIDTH-1] + * @param[in] pen: 操作类型, + PEN_CLEAR: 设置 (x,y) 点为 0 + PEN_WRITE: 设置 (x,y) 点为 1 + PEN_INVERSION: (x,y) 值反转 + * @retval none + */ +void OLED_draw_point(int8_t x, int8_t y, pen_typedef pen) +{ + uint8_t page = 0, row = 0; + + /* check the corrdinate */ + if ((x < 0) || (x > (X_WIDTH - 1)) || (y < 0) || (y > (Y_WIDTH - 1))) + { + return; + } + page = y / 8; + row = y % 8; + + if (pen == PEN_WRITE) + { + OLED_GRAM[x][page] |= 1 << row; + } + else if (pen == PEN_INVERSION) + { + OLED_GRAM[x][page] ^= 1 << row; + } + else + { + OLED_GRAM[x][page] &= ~(1 << row); + } +} + + +/** + * @brief 画一条直线,从(x1,y1)到(x2,y2) + * @param[in] x1: 起点 + * @param[in] y1: 起点 + * @param[in] x2: 终点 + * @param[in] y2: 终点 + * @param[in] pen: 操作类型,PEN_CLEAR,PEN_WRITE,PEN_INVERSION. + * @retval none + */ + +void OLED_draw_line(uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, pen_typedef pen) +{ + uint8_t col = 0, row = 0; + uint8_t x_st = 0, x_ed = 0, y_st = 0, y_ed = 0; + float k = 0.0f, b = 0.0f; + + if (y1 == y2) + { + (x1 <= x2) ? (x_st = x1):(x_st = x2); + (x1 <= x2) ? (x_ed = x2):(x_ed = x1); + + for (col = x_st; col <= x_ed; col++) + { + OLED_draw_point(col, y1, pen); + } + } + else if (x1 == x2) + { + (y1 <= y2) ? (y_st = y1):(y_st = y2); + (y1 <= y2) ? (y_ed = y2):(y_ed = y1); + + for (row = y_st; row <= y_ed; row++) + { + OLED_draw_point(x1, row, pen); + } + } + else + { + k = ((float)(y2 - y1)) / (x2 - x1); + b = (float)y1 - k * x1; + + (x1 <= x2) ? (x_st = x1):(x_st = x2); + (x1 <= x2) ? (x_ed = x2):(x_ed = x2); + + for (col = x_st; col <= x_ed; col++) + { + OLED_draw_point(col, (uint8_t)(col * k + b), pen); + } + } +} + +/** + * @brief 显示一个字符 + * @param[in] row: 字符的开始行 + * @param[in] col: 字符的开始列 + * @param[in] chr: 字符 + * @retval none + */ +void OLED_show_char(uint8_t row, uint8_t col, uint8_t chr) +{ + uint8_t x = col * 6; + uint8_t y = row * 12; + uint8_t temp, t, t1; + uint8_t y0 = y; + chr = chr - ' '; + + for (t = 0; t < 12; t++) + { + temp = asc2_1206[chr][t]; + + for (t1 = 0; t1 < 8; t1++) + { + if (temp&0x80) + OLED_draw_point(x, y, PEN_WRITE); + else + OLED_draw_point(x, y, PEN_CLEAR); + + temp <<= 1; + y++; + if ((y - y0) == 12) + { + y = y0; + x++; + break; + } + } + } +} + +/** + * @brief 显示一个字符串 + * @param[in] row: 字符串的开始行 + * @param[in] col: 字符串的开始列 + * @param[in] chr: 字符串 + * @retval none + */ +void OLED_show_string(uint8_t row, uint8_t col, uint8_t *chr) +{ + uint8_t n =0; + + while (chr[n] != '\0') + { + OLED_show_char(row, col, chr[n]); + col++; + + if (col > 20) + { + col = 0; + row += 1; + } + n++; + } +} + + +/** + * @brief 格式输出 + * @param[in] row: 开始列,0 <= row <= 4; + * @param[in] col: 开始行, 0 <= col <= 20; + * @param[in] *fmt:格式化输出字符串 + * @note 如果字符串长度大于一行,额外的字符会换行 + * @retval none + */ +void OLED_printf(uint8_t row, uint8_t col, const char *fmt,...) +{ + static uint8_t LCD_BUF[128] = {0}; + static va_list ap; + uint8_t remain_size = 0; + + if ((row > 4) || (col > 20) ) + { + return; + } + va_start(ap, fmt); + + vsprintf((char *)LCD_BUF, fmt, ap); + + va_end(ap); + + remain_size = 21 - col; + + LCD_BUF[remain_size] = '\0'; + + OLED_show_string(row, col, LCD_BUF); +} + +/** + * @brief 发送数据到OLED的GRAM + * @param[in] none + * @retval none + */ +void OLED_refresh_gram(void) +{ + uint8_t i, n; + + for (i = 0; i < 8; i++) + { + OLED_set_pos(0, i); + for (n = 0; n < 128; n++) + { + oled_write_byte(OLED_GRAM[n][i], OLED_DATA); + } + } +} + + + +/** + * @brief 显示RM的LOGO + * @param[in] none + * @retval none + */ +void OLED_LOGO(void) +{ + uint8_t temp_char = 0; + uint8_t x = 0, y = 0; + uint8_t i = 0; + OLED_operate_gram(PEN_CLEAR); + + + for(; y < 64; y += 8) + { + for(x = 0; x < 128; x++) + { + temp_char = LOGO_BMP[x][y/8]; + for(i = 0; i < 8; i++) + { + if(temp_char & 0x80) + { + OLED_draw_point(x, y + i,PEN_WRITE); + } + else + { + OLED_draw_point(x,y + i,PEN_CLEAR); + } + temp_char <<= 1; + } + } + } + OLED_refresh_gram(); +} \ No newline at end of file diff --git a/modules/oled/oled.h b/modules/oled/oled.h new file mode 100644 index 0000000..f1bb53d --- /dev/null +++ b/modules/oled/oled.h @@ -0,0 +1,145 @@ +/** + * @file oled.h + * @author your name (you@domain.com) + * @brief 待重构实现 + * @version 0.1 + * @date 2023-02-14 + * @todo 请重构show string/init/clean/update buffer等的实现 + * + * @copyright Copyright (c) 2023 + * + */ + +#ifndef OLED_H +#define OLED_H +#include + +// the I2C address of oled +#define OLED_I2C_ADDRESS 0x78 + +// the resolution of oled 128*64 +#define MAX_COLUMN 128 +#define MAX_ROW 64 + +#define X_WIDTH MAX_COLUMN +#define Y_WIDTH MAX_ROW + +#define OLED_CMD 0x00 +#define OLED_DATA 0x01 + +#define CHAR_SIZE_WIDTH 6 +#define CHAR_SIZE_HIGHT 12 + +typedef enum +{ + PEN_CLEAR = 0x00, + PEN_WRITE = 0x01, + PEN_INVERSION = 0x02, +} pen_typedef; + +/** + * @brief 初始化OLED模块, + * @param[in] none + * @retval none + */ +extern void OLED_init(void); + +/** + * @brief 打开OLED显示 + * @param[in] none + * @retval none + */ +extern void OLED_display_on(void); + +/** + * @brief 关闭OLED显示 + * @param[in] none + * @retval none + */ +extern void OLED_display_off(void); + +/** + * @brief 操作GRAM内存(128*8char数组) + * @param[in] pen: 操作类型. + PEN_CLEAR: 设置为0x00 + PEN_WRITE: 设置为0xff + PEN_INVERSION: 按位取反 + * @retval none + */ +extern void OLED_operate_gram(pen_typedef pen); + +/** + * @brief 设置光标起点(x,y) + * @param[in] x:x轴, 从 0 到 127 + * @param[in] y:y轴, 从 0 到 7 + * @retval none + */ +extern void OLED_set_pos(uint8_t x, uint8_t y); + +/** + * @brief 操作GRAM中的一个位,相当于操作屏幕的一个点 + * @param[in] x:x轴, [0,X_WIDTH-1] + * @param[in] y:y轴, [0,Y_WIDTH-1] + * @param[in] pen: 操作类型, + PEN_CLEAR: 设置 (x,y) 点为 0 + PEN_WRITE: 设置 (x,y) 点为 1 + PEN_INVERSION: (x,y) 值反转 + * @retval none + */ +extern void OLED_draw_point(int8_t x, int8_t y, pen_typedef pen); + +/** + * @brief 画一条直线,从(x1,y1)到(x2,y2) + * @param[in] x1: 起点 + * @param[in] y1: 起点 + * @param[in] x2: 终点 + * @param[in] y2: 终点 + * @param[in] pen: 操作类型,PEN_CLEAR,PEN_WRITE,PEN_INVERSION. + * @retval none + */ +extern void OLED_draw_line(uint8_t x1, uint8_t y1, uint8_t x2, uint8_t y2, pen_typedef pen); + +/** + * @brief 显示一个字符 + * @param[in] row: 字符的开始行 + * @param[in] col: 字符的开始列 + * @param[in] chr: 字符 + * @retval none + */ +extern void OLED_show_char(uint8_t row, uint8_t col, uint8_t chr); + +/** + * @brief 显示一个字符串 + * @param[in] row: 字符串的开始行 + * @param[in] col: 字符串的开始列 + * @param[in] chr: 字符串 + * @retval none + */ +extern void OLED_show_string(uint8_t row, uint8_t col, uint8_t *chr); + +/** + * @brief 格式输出 + * @param[in] row: 开始列,0 <= row <= 4; + * @param[in] col: 开始行, 0 <= col <= 20; + * @param[in] *fmt:格式化输出字符串 + * @note 如果字符串长度大于一行,额外的字符会换行 + * @retval none + */ +extern void OLED_printf(uint8_t row, uint8_t col, const char *fmt, ...); + + +/** + * @brief 发送数据到OLED的GRAM + * @param[in] none + * @retval none + */ +extern void OLED_refresh_gram(void); + + +/** + * @brief 显示RM的LOGO + * @param[in] none + * @retval none + */ +extern void OLED_LOGO(void); +#endif diff --git a/modules/oled/oled.md b/modules/oled/oled.md new file mode 100644 index 0000000..f7610e7 --- /dev/null +++ b/modules/oled/oled.md @@ -0,0 +1,11 @@ +# oled + +当前oled支持不完整,api较为混乱. 需要使用bsp_iic进行实现的重构,并提供统一方便的接口 + +请使用字库软件制作自己的图标和不同大小的ascii码. + +> 后续尝试移植一些图形库使得功能更加丰富 +> oled主要作调试和log/错误显示等使用 +> 可以提供给视觉和机械的同学调试接口,方便他们通过显示屏进行简单的设置 + +*可以引入RoboMaster oled,或额外增加一个编码器用于控制oled界面并设定一些功能.* \ No newline at end of file diff --git a/modules/oled/oledfont.h b/modules/oled/oledfont.h new file mode 100644 index 0000000..f2ee51e --- /dev/null +++ b/modules/oled/oledfont.h @@ -0,0 +1,247 @@ +/** + ***************************************(C) COPYRIGHT 2019 DJI*************************************** + * @file oledfont.h + * @brief character lib of oled + * @note + * @Version V1.0.0 + * @Date Oct-7-2019 + ***************************************(C) COPYRIGHT 2019 DJI*************************************** + */ + +#ifndef __OLED__FONT__H +#define __OLED__FONT__H + +//the common ascii character +const unsigned char asc2_1206[95][12]={ +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*" ",0*/ +{0x00,0x00,0x00,0x00,0x3F,0x40,0x00,0x00,0x00,0x00,0x00,0x00},/*"!",1*/ +{0x00,0x00,0x30,0x00,0x40,0x00,0x30,0x00,0x40,0x00,0x00,0x00},/*""",2*/ +{0x09,0x00,0x0B,0xC0,0x3D,0x00,0x0B,0xC0,0x3D,0x00,0x09,0x00},/*"#",3*/ +{0x18,0xC0,0x24,0x40,0x7F,0xE0,0x22,0x40,0x31,0x80,0x00,0x00},/*"$",4*/ +{0x18,0x00,0x24,0xC0,0x1B,0x00,0x0D,0x80,0x32,0x40,0x01,0x80},/*"%",5*/ +{0x03,0x80,0x1C,0x40,0x27,0x40,0x1C,0x80,0x07,0x40,0x00,0x40},/*"&",6*/ +{0x10,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"'",7*/ +{0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x80,0x20,0x40,0x40,0x20},/*"(",8*/ +{0x00,0x00,0x40,0x20,0x20,0x40,0x1F,0x80,0x00,0x00,0x00,0x00},/*")",9*/ +{0x09,0x00,0x06,0x00,0x1F,0x80,0x06,0x00,0x09,0x00,0x00,0x00},/*"*",10*/ +{0x04,0x00,0x04,0x00,0x3F,0x80,0x04,0x00,0x04,0x00,0x00,0x00},/*"+",11*/ +{0x00,0x10,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*",",12*/ +{0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x00,0x00},/*"-",13*/ +{0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*".",14*/ +{0x00,0x20,0x01,0xC0,0x06,0x00,0x38,0x00,0x40,0x00,0x00,0x00},/*"/",15*/ +{0x1F,0x80,0x20,0x40,0x20,0x40,0x20,0x40,0x1F,0x80,0x00,0x00},/*"0",16*/ +{0x00,0x00,0x10,0x40,0x3F,0xC0,0x00,0x40,0x00,0x00,0x00,0x00},/*"1",17*/ +{0x18,0xC0,0x21,0x40,0x22,0x40,0x24,0x40,0x18,0x40,0x00,0x00},/*"2",18*/ +{0x10,0x80,0x20,0x40,0x24,0x40,0x24,0x40,0x1B,0x80,0x00,0x00},/*"3",19*/ +{0x02,0x00,0x0D,0x00,0x11,0x00,0x3F,0xC0,0x01,0x40,0x00,0x00},/*"4",20*/ +{0x3C,0x80,0x24,0x40,0x24,0x40,0x24,0x40,0x23,0x80,0x00,0x00},/*"5",21*/ +{0x1F,0x80,0x24,0x40,0x24,0x40,0x34,0x40,0x03,0x80,0x00,0x00},/*"6",22*/ +{0x30,0x00,0x20,0x00,0x27,0xC0,0x38,0x00,0x20,0x00,0x00,0x00},/*"7",23*/ +{0x1B,0x80,0x24,0x40,0x24,0x40,0x24,0x40,0x1B,0x80,0x00,0x00},/*"8",24*/ +{0x1C,0x00,0x22,0xC0,0x22,0x40,0x22,0x40,0x1F,0x80,0x00,0x00},/*"9",25*/ +{0x00,0x00,0x00,0x00,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00},/*":",26*/ +{0x00,0x00,0x00,0x00,0x04,0x60,0x00,0x00,0x00,0x00,0x00,0x00},/*";",27*/ +{0x00,0x00,0x04,0x00,0x0A,0x00,0x11,0x00,0x20,0x80,0x40,0x40},/*"<",28*/ +{0x09,0x00,0x09,0x00,0x09,0x00,0x09,0x00,0x09,0x00,0x00,0x00},/*"=",29*/ +{0x00,0x00,0x40,0x40,0x20,0x80,0x11,0x00,0x0A,0x00,0x04,0x00},/*">",30*/ +{0x18,0x00,0x20,0x00,0x23,0x40,0x24,0x00,0x18,0x00,0x00,0x00},/*"?",31*/ +{0x1F,0x80,0x20,0x40,0x27,0x40,0x29,0x40,0x1F,0x40,0x00,0x00},/*"@",32*/ +{0x00,0x40,0x07,0xC0,0x39,0x00,0x0F,0x00,0x01,0xC0,0x00,0x40},/*"A",33*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x24,0x40,0x1B,0x80,0x00,0x00},/*"B",34*/ +{0x1F,0x80,0x20,0x40,0x20,0x40,0x20,0x40,0x30,0x80,0x00,0x00},/*"C",35*/ +{0x20,0x40,0x3F,0xC0,0x20,0x40,0x20,0x40,0x1F,0x80,0x00,0x00},/*"D",36*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x2E,0x40,0x30,0xC0,0x00,0x00},/*"E",37*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x2E,0x00,0x30,0x00,0x00,0x00},/*"F",38*/ +{0x0F,0x00,0x10,0x80,0x20,0x40,0x22,0x40,0x33,0x80,0x02,0x00},/*"G",39*/ +{0x20,0x40,0x3F,0xC0,0x04,0x00,0x04,0x00,0x3F,0xC0,0x20,0x40},/*"H",40*/ +{0x20,0x40,0x20,0x40,0x3F,0xC0,0x20,0x40,0x20,0x40,0x00,0x00},/*"I",41*/ +{0x00,0x60,0x20,0x20,0x20,0x20,0x3F,0xC0,0x20,0x00,0x20,0x00},/*"J",42*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x0B,0x00,0x30,0xC0,0x20,0x40},/*"K",43*/ +{0x20,0x40,0x3F,0xC0,0x20,0x40,0x00,0x40,0x00,0x40,0x00,0xC0},/*"L",44*/ +{0x3F,0xC0,0x3C,0x00,0x03,0xC0,0x3C,0x00,0x3F,0xC0,0x00,0x00},/*"M",45*/ +{0x20,0x40,0x3F,0xC0,0x0C,0x40,0x23,0x00,0x3F,0xC0,0x20,0x00},/*"N",46*/ +{0x1F,0x80,0x20,0x40,0x20,0x40,0x20,0x40,0x1F,0x80,0x00,0x00},/*"O",47*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x24,0x00,0x18,0x00,0x00,0x00},/*"P",48*/ +{0x1F,0x80,0x21,0x40,0x21,0x40,0x20,0xE0,0x1F,0xA0,0x00,0x00},/*"Q",49*/ +{0x20,0x40,0x3F,0xC0,0x24,0x40,0x26,0x00,0x19,0xC0,0x00,0x40},/*"R",50*/ +{0x18,0xC0,0x24,0x40,0x24,0x40,0x22,0x40,0x31,0x80,0x00,0x00},/*"S",51*/ +{0x30,0x00,0x20,0x40,0x3F,0xC0,0x20,0x40,0x30,0x00,0x00,0x00},/*"T",52*/ +{0x20,0x00,0x3F,0x80,0x00,0x40,0x00,0x40,0x3F,0x80,0x20,0x00},/*"U",53*/ +{0x20,0x00,0x3E,0x00,0x01,0xC0,0x07,0x00,0x38,0x00,0x20,0x00},/*"V",54*/ +{0x38,0x00,0x07,0xC0,0x3C,0x00,0x07,0xC0,0x38,0x00,0x00,0x00},/*"W",55*/ +{0x20,0x40,0x39,0xC0,0x06,0x00,0x39,0xC0,0x20,0x40,0x00,0x00},/*"X",56*/ +{0x20,0x00,0x38,0x40,0x07,0xC0,0x38,0x40,0x20,0x00,0x00,0x00},/*"Y",57*/ +{0x30,0x40,0x21,0xC0,0x26,0x40,0x38,0x40,0x20,0xC0,0x00,0x00},/*"Z",58*/ +{0x00,0x00,0x00,0x00,0x7F,0xE0,0x40,0x20,0x40,0x20,0x00,0x00},/*"[",59*/ +{0x00,0x00,0x70,0x00,0x0C,0x00,0x03,0x80,0x00,0x40,0x00,0x00},/*"\",60*/ +{0x00,0x00,0x40,0x20,0x40,0x20,0x7F,0xE0,0x00,0x00,0x00,0x00},/*"]",61*/ +{0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00},/*"^",62*/ +{0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10},/*"_",63*/ +{0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00},/*"`",64*/ +{0x00,0x00,0x02,0x80,0x05,0x40,0x05,0x40,0x03,0xC0,0x00,0x40},/*"a",65*/ +{0x20,0x00,0x3F,0xC0,0x04,0x40,0x04,0x40,0x03,0x80,0x00,0x00},/*"b",66*/ +{0x00,0x00,0x03,0x80,0x04,0x40,0x04,0x40,0x06,0x40,0x00,0x00},/*"c",67*/ +{0x00,0x00,0x03,0x80,0x04,0x40,0x24,0x40,0x3F,0xC0,0x00,0x40},/*"d",68*/ +{0x00,0x00,0x03,0x80,0x05,0x40,0x05,0x40,0x03,0x40,0x00,0x00},/*"e",69*/ +{0x00,0x00,0x04,0x40,0x1F,0xC0,0x24,0x40,0x24,0x40,0x20,0x00},/*"f",70*/ +{0x00,0x00,0x02,0xE0,0x05,0x50,0x05,0x50,0x06,0x50,0x04,0x20},/*"g",71*/ +{0x20,0x40,0x3F,0xC0,0x04,0x40,0x04,0x00,0x03,0xC0,0x00,0x40},/*"h",72*/ +{0x00,0x00,0x04,0x40,0x27,0xC0,0x00,0x40,0x00,0x00,0x00,0x00},/*"i",73*/ +{0x00,0x10,0x00,0x10,0x04,0x10,0x27,0xE0,0x00,0x00,0x00,0x00},/*"j",74*/ +{0x20,0x40,0x3F,0xC0,0x01,0x40,0x07,0x00,0x04,0xC0,0x04,0x40},/*"k",75*/ +{0x20,0x40,0x20,0x40,0x3F,0xC0,0x00,0x40,0x00,0x40,0x00,0x00},/*"l",76*/ +{0x07,0xC0,0x04,0x00,0x07,0xC0,0x04,0x00,0x03,0xC0,0x00,0x00},/*"m",77*/ +{0x04,0x40,0x07,0xC0,0x04,0x40,0x04,0x00,0x03,0xC0,0x00,0x40},/*"n",78*/ +{0x00,0x00,0x03,0x80,0x04,0x40,0x04,0x40,0x03,0x80,0x00,0x00},/*"o",79*/ +{0x04,0x10,0x07,0xF0,0x04,0x50,0x04,0x40,0x03,0x80,0x00,0x00},/*"p",80*/ +{0x00,0x00,0x03,0x80,0x04,0x40,0x04,0x50,0x07,0xF0,0x00,0x10},/*"q",81*/ +{0x04,0x40,0x07,0xC0,0x02,0x40,0x04,0x00,0x04,0x00,0x00,0x00},/*"r",82*/ +{0x00,0x00,0x06,0x40,0x05,0x40,0x05,0x40,0x04,0xC0,0x00,0x00},/*"s",83*/ +{0x00,0x00,0x04,0x00,0x1F,0x80,0x04,0x40,0x00,0x40,0x00,0x00},/*"t",84*/ +{0x04,0x00,0x07,0x80,0x00,0x40,0x04,0x40,0x07,0xC0,0x00,0x40},/*"u",85*/ +{0x04,0x00,0x07,0x00,0x04,0xC0,0x01,0x80,0x06,0x00,0x04,0x00},/*"v",86*/ +{0x06,0x00,0x01,0xC0,0x07,0x00,0x01,0xC0,0x06,0x00,0x00,0x00},/*"w",87*/ +{0x04,0x40,0x06,0xC0,0x01,0x00,0x06,0xC0,0x04,0x40,0x00,0x00},/*"x",88*/ +{0x04,0x10,0x07,0x10,0x04,0xE0,0x01,0x80,0x06,0x00,0x04,0x00},/*"y",89*/ +{0x00,0x00,0x04,0x40,0x05,0xC0,0x06,0x40,0x04,0x40,0x00,0x00},/*"z",90*/ +{0x00,0x00,0x00,0x00,0x04,0x00,0x7B,0xE0,0x40,0x20,0x00,0x00},/*"{",91*/ +{0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xF0,0x00,0x00,0x00,0x00},/*"|",92*/ +{0x00,0x00,0x40,0x20,0x7B,0xE0,0x04,0x00,0x00,0x00,0x00,0x00},/*"}",93*/ +{0x40,0x00,0x80,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00},/*"~",94*/ +}; + +// 你可以使用图标字库软件生成自己的pattern,软件会输出一个数组,将数组复制到这里即可. + +//the logo of robomaster +const unsigned char LOGO_BMP[128][8] = { +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1E}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x72}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1E}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFE}, +{0x60,0x00,0x00,0x00,0x00,0x10,0x00,0x6C}, +{0x70,0x00,0x00,0x00,0x00,0x30,0x00,0x00}, +{0x78,0x00,0x00,0x00,0x00,0xF0,0x00,0x7C}, +{0x7C,0x00,0x00,0x00,0x07,0xF0,0x00,0xFE}, +{0x7E,0x00,0x00,0x00,0x3F,0xF0,0x00,0xC6}, +{0x7F,0x00,0x00,0x01,0xFF,0xF0,0x00,0xC6}, +{0x7F,0x80,0x00,0x0F,0xFF,0xF0,0x00,0xC6}, +{0x7F,0xC0,0x00,0x7F,0xFF,0xF0,0x00,0xFE}, +{0x7F,0xE0,0x03,0xFF,0xFF,0xF0,0x00,0x7C}, +{0x7F,0xF0,0x3F,0xFF,0xFF,0xF0,0x00,0x02}, +{0x7F,0xF8,0x3F,0xFF,0xFF,0xF0,0x00,0x06}, +{0x7F,0xFC,0x3F,0xFF,0xFF,0xF0,0x00,0x1E}, +{0x7F,0xFE,0x3F,0xFF,0xFF,0xF0,0x00,0xBC}, +{0x7F,0xFF,0x3F,0xFF,0xFF,0xF0,0x00,0xE0}, +{0x7F,0xFF,0xBF,0xFF,0xFF,0x80,0x00,0xF8}, +{0x7F,0xFF,0xFF,0xFF,0xFC,0x00,0x00,0x3E}, +{0x7F,0xFF,0xFF,0xFF,0xE0,0x00,0x00,0x0E}, +{0x7F,0xFF,0xFF,0xFF,0x00,0x00,0x00,0xB8}, +{0x7F,0xFF,0xFF,0xF8,0x00,0x00,0x00,0xE0}, +{0x7F,0xFF,0xFF,0xF0,0x00,0x00,0x00,0xFE}, +{0x7F,0xFF,0xFF,0xF0,0x00,0x00,0x00,0x1E}, +{0x7F,0xFF,0xFF,0xF0,0x00,0x00,0x00,0x02}, +{0x7F,0xFF,0xFF,0xF0,0x00,0x00,0x00,0x00}, +{0x7F,0xEF,0xFF,0xF0,0x02,0x00,0x00,0x06}, +{0x7F,0xE7,0xFF,0xF0,0x02,0x00,0x00,0x0E}, +{0x7F,0xE3,0xFF,0xF0,0x02,0x00,0x00,0x1C}, +{0x7F,0xE1,0xFF,0xF8,0x03,0x00,0x00,0xBA}, +{0x7F,0xE0,0xFF,0xFC,0x03,0x00,0x00,0xF6}, +{0x7F,0xE0,0x7F,0xFE,0x03,0x80,0x00,0xE6}, +{0x7F,0xE0,0x3F,0xFF,0x03,0x80,0x00,0xF6}, +{0x7F,0xE0,0x3F,0xFF,0x83,0xC0,0x00,0x3E}, +{0x7F,0xE0,0x3F,0xFF,0xC3,0xC0,0x00,0x0E}, +{0x7F,0xE0,0x3F,0xFF,0xE3,0xE0,0x00,0x02}, +{0x7F,0xE0,0x3F,0xFF,0xF3,0xE0,0x00,0x00}, +{0x7F,0xE0,0x3F,0xFF,0xFB,0xF0,0x00,0x02}, +{0x7F,0xE0,0x3F,0xFF,0xFF,0xF0,0x00,0x66}, +{0x7F,0xE0,0x3F,0xFF,0xFF,0xF8,0x00,0xF6}, +{0x7F,0xE0,0x3F,0xFF,0xFF,0xF8,0x00,0xD6}, +{0x7F,0xE0,0x3F,0xFF,0xFF,0xFC,0x00,0xD6}, +{0x7F,0xF0,0x7F,0xFF,0xFF,0xFC,0x00,0xD6}, +{0x7F,0xF8,0xFF,0xF7,0xFF,0xFE,0x00,0xD6}, +{0x7F,0xFF,0xFF,0xF3,0xFF,0xFE,0x00,0xDE}, +{0x3F,0xFF,0xFF,0xE1,0xFF,0xFF,0x00,0x8C}, +{0x3F,0xFF,0xFF,0xE0,0xFF,0xCF,0x00,0x40}, +{0x1F,0xFF,0xFF,0xC0,0x7F,0xC7,0x80,0xC0}, +{0x1F,0xFF,0xFF,0xC0,0x3F,0xC3,0x80,0xC0}, +{0x0F,0xFF,0xFF,0x80,0x1F,0xC1,0xC0,0xFE}, +{0x07,0xFF,0xFF,0x00,0x0F,0xC0,0xC0,0xFE}, +{0x03,0xFF,0xFE,0x00,0x07,0xC0,0x60,0xC0}, +{0x01,0xFF,0xFC,0x00,0x03,0xC0,0x20,0xC0}, +{0x00,0x7F,0xF0,0x00,0x01,0xC0,0x00,0x86}, +{0x00,0x0F,0x80,0x00,0x00,0xC0,0x00,0x16}, +{0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD0}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1E}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD8}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x72}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x62}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD6}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDE}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8C}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, +}; + +#endif diff --git a/modules/referee/crc_ref.c b/modules/referee/crc_ref.c new file mode 100644 index 0000000..b22b6ac --- /dev/null +++ b/modules/referee/crc_ref.c @@ -0,0 +1,192 @@ +#include "crc_ref.h" +#include + + +const uint8_t CRC8_INIT = 0xff; +const uint8_t CRC8_TAB[256] = +{ + 0x00, 0x5e, 0xbc, 0xe2, 0x61, 0x3f, 0xdd, 0x83, 0xc2, 0x9c, 0x7e, 0x20, 0xa3, 0xfd, 0x1f, 0x41, + 0x9d, 0xc3, 0x21, 0x7f, 0xfc, 0xa2, 0x40, 0x1e, 0x5f, 0x01, 0xe3, 0xbd, 0x3e, 0x60, 0x82, 0xdc, + 0x23, 0x7d, 0x9f, 0xc1, 0x42, 0x1c, 0xfe, 0xa0, 0xe1, 0xbf, 0x5d, 0x03, 0x80, 0xde, 0x3c, 0x62, + 0xbe, 0xe0, 0x02, 0x5c, 0xdf, 0x81, 0x63, 0x3d, 0x7c, 0x22, 0xc0, 0x9e, 0x1d, 0x43, 0xa1, 0xff, + 0x46, 0x18, 0xfa, 0xa4, 0x27, 0x79, 0x9b, 0xc5, 0x84, 0xda, 0x38, 0x66, 0xe5, 0xbb, 0x59, 0x07, + 0xdb, 0x85, 0x67, 0x39, 0xba, 0xe4, 0x06, 0x58, 0x19, 0x47, 0xa5, 0xfb, 0x78, 0x26, 0xc4, 0x9a, + 0x65, 0x3b, 0xd9, 0x87, 0x04, 0x5a, 0xb8, 0xe6, 0xa7, 0xf9, 0x1b, 0x45, 0xc6, 0x98, 0x7a, 0x24, + 0xf8, 0xa6, 0x44, 0x1a, 0x99, 0xc7, 0x25, 0x7b, 0x3a, 0x64, 0x86, 0xd8, 0x5b, 0x05, 0xe7, 0xb9, + 0x8c, 0xd2, 0x30, 0x6e, 0xed, 0xb3, 0x51, 0x0f, 0x4e, 0x10, 0xf2, 0xac, 0x2f, 0x71, 0x93, 0xcd, + 0x11, 0x4f, 0xad, 0xf3, 0x70, 0x2e, 0xcc, 0x92, 0xd3, 0x8d, 0x6f, 0x31, 0xb2, 0xec, 0x0e, 0x50, + 0xaf, 0xf1, 0x13, 0x4d, 0xce, 0x90, 0x72, 0x2c, 0x6d, 0x33, 0xd1, 0x8f, 0x0c, 0x52, 0xb0, 0xee, + 0x32, 0x6c, 0x8e, 0xd0, 0x53, 0x0d, 0xef, 0xb1, 0xf0, 0xae, 0x4c, 0x12, 0x91, 0xcf, 0x2d, 0x73, + 0xca, 0x94, 0x76, 0x28, 0xab, 0xf5, 0x17, 0x49, 0x08, 0x56, 0xb4, 0xea, 0x69, 0x37, 0xd5, 0x8b, + 0x57, 0x09, 0xeb, 0xb5, 0x36, 0x68, 0x8a, 0xd4, 0x95, 0xcb, 0x29, 0x77, 0xf4, 0xaa, 0x48, 0x16, + 0xe9, 0xb7, 0x55, 0x0b, 0x88, 0xd6, 0x34, 0x6a, 0x2b, 0x75, 0x97, 0xc9, 0x4a, 0x14, 0xf6, 0xa8, + 0x74, 0x2a, 0xc8, 0x96, 0x15, 0x4b, 0xa9, 0xf7, 0xb6, 0xe8, 0x0a, 0x54, 0xd7, 0x89, 0x6b, 0x35, +}; + + +uint16_t CRC_INIT = 0xffff; +const uint16_t wCRC_Table[256] = +{ + 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf, + 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7, + 0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e, + 0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876, + 0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd, + 0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5, + 0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c, + 0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974, + 0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb, + 0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3, + 0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a, + 0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72, + 0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9, + 0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1, + 0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738, + 0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70, + 0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7, + 0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff, + 0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036, + 0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e, + 0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5, + 0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd, + 0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134, + 0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c, + 0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3, + 0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb, + 0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232, + 0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a, + 0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1, + 0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9, + 0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330, + 0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78 +}; + +// CRC8 +void Append_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength); +uint32_t Verify_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength); +uint8_t Get_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength, uint8_t ucCRC8 ); + +// CRC16 +void Append_CRC16_Check_Sum(uint8_t * pchMessage,uint32_t dwLength); +uint32_t Verify_CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength); +uint16_t Get_CRC16_Check_Sum(uint8_t *pchMessage,uint32_t dwLength,uint16_t wCRC); + + + + +/* CRC校验 */ + +uint8_t Get_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength, uint8_t ucCRC8 ) +{ + uint8_t ucIndex; + + while (dwLength--) + { + ucIndex = ucCRC8^(*pchMessage++); + ucCRC8 = CRC8_TAB[ucIndex]; + } + return ucCRC8; +} + + +/* +** Descriptions: CRC8 Verify function +** Input: Data to Verify,Stream length = Data + checksum +** Output: True or False (CRC Verify Result) +*/ +uint32_t Verify_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength) +{ + uint8_t ucExpected = 0; + + if (pchMessage == 0 || dwLength <= 2) + { + return 0; + } + + ucExpected = Get_CRC8_Check_Sum( pchMessage, dwLength-1, CRC8_INIT); + + return ( ucExpected == pchMessage[dwLength-1] ); +} + + +/* +** Descriptions: append CRC8 to the end of data +** Input: Data to CRC and append,Stream length = Data + checksum +** Output: True or False (CRC Verify Result) +*/ +void Append_CRC8_Check_Sum( uint8_t *pchMessage, uint16_t dwLength) +{ + uint8_t ucCRC = 0; + + if (pchMessage == 0 || dwLength <= 2) + { + return; + } + + ucCRC = Get_CRC8_Check_Sum( (uint8_t *)pchMessage, dwLength-1, CRC8_INIT); + + pchMessage[dwLength-1] = ucCRC; +} + + +/* +** Descriptions: CRC16 checksum function +** Input: Data to check,Stream length, initialized checksum +** Output: CRC checksum +*/ +uint16_t Get_CRC16_Check_Sum(uint8_t *pchMessage,uint32_t dwLength,uint16_t wCRC) +{ + uint8_t chData; + if (pchMessage == NULL) + { + return 0xFFFF; + } + while(dwLength--) + { + chData = *pchMessage++; + (wCRC) = ((uint16_t)(wCRC) >> 8) ^ + wCRC_Table[((uint16_t)(wCRC) ^ (uint16_t)(chData)) & 0x00ff]; + } + return wCRC; +} + + +/* +** Descriptions: CRC16 Verify function +** Input: Data to Verify,Stream length = Data + checksum +** Output: True or False (CRC Verify Result) +*/ +uint32_t Verify_CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength) +{ + uint16_t wExpected = 0; + + if ((pchMessage == NULL) || (dwLength <= 2)) + { + return FALSE; + } + + wExpected = Get_CRC16_Check_Sum ( pchMessage, dwLength - 2, CRC_INIT); + return ( (wExpected & 0xff) == pchMessage[dwLength - 2] + && ((wExpected >> 8) & 0xff) == pchMessage[dwLength - 1]); +} + + +/* +** Descriptions: append CRC16 to the end of data +** Input: Data to CRC and append,Stream length = Data + checksum +** Output: True or False (CRC Verify Result) +*/ +void Append_CRC16_Check_Sum(uint8_t * pchMessage,uint32_t dwLength) +{ + uint16_t wCRC = 0; + + if ((pchMessage == NULL) || (dwLength <= 2)) + { + return; + } + + wCRC = Get_CRC16_Check_Sum ( (uint8_t *)pchMessage, dwLength-2, CRC_INIT ); + + pchMessage[dwLength-2] = (uint8_t)(wCRC & 0x00ff); + pchMessage[dwLength-1] = (uint8_t)((wCRC >> 8)& 0x00ff); +} diff --git a/modules/referee/crc_ref.h b/modules/referee/crc_ref.h new file mode 100644 index 0000000..7ad1297 --- /dev/null +++ b/modules/referee/crc_ref.h @@ -0,0 +1,20 @@ +#ifndef __CRC_H_ +#define __CRC_H_ + +// 裁判系统官方CRC校验,LUT和module/algorithms中的不同,后续需要统一实现crc,提供8/16/32的支持 + +#include + +#define TRUE 1 +#define FALSE 0 +// CRC8 +void Append_CRC8_Check_Sum(uint8_t *pchMessage, uint16_t dwLength); +uint32_t Verify_CRC8_Check_Sum(uint8_t *pchMessage, uint16_t dwLength); +uint8_t Get_CRC8_Check_Sum(uint8_t *pchMessage, uint16_t dwLength, uint8_t ucCRC8); + +// CRC16 +void Append_CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength); +uint32_t Verify_CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength); +uint16_t Get_CRC16_Check_Sum(uint8_t *pchMessage, uint32_t dwLength, uint16_t wCRC); + +#endif diff --git a/modules/referee/referee.md b/modules/referee/referee.md new file mode 100644 index 0000000..e245a7c --- /dev/null +++ b/modules/referee/referee.md @@ -0,0 +1,196 @@ +# referee + +## referee运行流程 + +首先在chassis的初始化中调用裁判系统初始化函数,将要绘制的uidata的指针传递给接口,接口会返回裁判系统的反馈数据指针。然后,在refereeUItask里进行UI初始化,确定ui发送的目标并绘制初始化UI。完成后,uitask会以10hz的频率按顺序更新UI。 + +## 如何绘制你的自定义UI?以绘制超级电容能量条为例 + +UI的绘制包含初始化和TASK两个部分,初始化部分在`MyUIInit`函数中,TASK部分在`MyUIRefresh`函数中。 + +### 初始化部分 + +初始化部分的UI主要有两个目的:静态UI的绘制、为动态UI的绘制做准备。 + +分析超级电容能量条功能可知,此UI包含如下: +Power:xxx Power为静态不变的,冒号后的xxx为变化的量。 +方框以及方框内的能量条:方框为静态不变的,能量条为变化的量。(参考游戏血条) + +因而,静态UI的绘制包含如下: +绘制字符“Power:”、绘制矩形方框。 +为动态UI的准备如下: +绘制矩形方框内的初始能量条、绘制Power的初始值。 + +### 绘制字符“Power:” + +设置绘制用结构体,此处使用数组是因为需要绘制多个字符。本次绘制的字符为“Power:”,只是用到了第6个,即xxx[5]: + +```c +static String_Data_t UI_State_sta[6]; // 静态 +``` + +字符格式以及内容设置: + +```c +UICharDraw(&UI_State_sta[5], "ss5", UI_Graph_ADD, 7, UI_Color_Green, 18, 2, 620, 230, "Power:"); + +//各参数意义如下,函数定义中有详细注释: + string String_Data类型变量指针,用于存放字符串数据 + stringname[3] 字符串名称,用于标识更改 + String_Operate 字符串操作,初始化时一般使用"UI_Graph_ADD" + String_Layer 图层0-9 + String_Color 字符串颜色 + String_Size 字号 + String_Width 字符串线宽 + Start_x、Start_y 开始坐标 + *stringdata 字符串数据 + +//设置完毕后,使用“Char_ReFresh”发送即可: +UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[5]); +``` + +### 绘制能量框 + +定义一个图形类结构体,用于绘制能量框: + +```c +static Graph_Data_t UI_energy_line[3]; // 电容能量条 +``` + +能量框参数设置以及发送函数: + +```c +UIRectangleDraw(&UI_energy_line[0],"ss6", UI_Graph_ADD, 7, UI_Color_Green,20, 720, 220, 820, 240) +UIRefresh(&referee_recv_info->referee_id, 1,UI_energy_line[0]); +``` + +### 绘制power的初始值 + +```c +UIFloatDraw(&UI_Energy[1], "sd5", UI_Graph_ADD, 8, UI_Color_Green, 18, 2, 2, 750, 230, 24000); +``` + +### 绘制能量条的初始值 + +```c +UILineDraw(&UI_Energy[2], "sd6", UI_Graph_ADD, 8, UI_Color_Pink, 30, 720, 160, 1020, 160); +``` + +将两个图形打包发送 + +``` +UIRefresh(&referee_recv_info->referee_id, 2, UI_Energy[1], UI_Energy[2]); +``` + +## TASK部分 + +task中UI处于动态变化,此时需要检测所画的UI是否发生变化,若发生变化,则刷新对应UI。 + +### 添加变化检测 + +绘制功率部分UI,我们需要的是`Chassis_Power_Data_s`中的数据,我们定义`Chassis_Power_Data_s Chassis_Power_Data;`和`Chassis_Power_Data_s Chassis_last_Power_Data;`分别存储此次和上次的对应数据,本次和上次对应检测变化的需求。 + +```c +typedef struct +{ + Referee_Interactive_Flag_t Referee_Interactive_Flag; + // 为UI绘制以及交互数据所用 + chassis_mode_e chassis_mode; // 底盘模式 + gimbal_mode_e gimbal_mode; // 云台模式 + shoot_mode_e shoot_mode; // 发射模式设置 + friction_mode_e friction_mode; // 摩擦轮关闭 + lid_mode_e lid_mode; // 弹舱盖打开 + Chassis_Power_Data_s Chassis_Power_Data; // 功率控制 + + // 上一次的模式,用于flag判断 + chassis_mode_e chassis_last_mode; + gimbal_mode_e gimbal_last_mode; + shoot_mode_e shoot_last_mode; + friction_mode_e friction_last_mode; + lid_mode_e lid_last_mode; + Chassis_Power_Data_s Chassis_last_Power_Data; + +} Referee_Interactive_info_t; +``` + +添加功率变化标志位,`uint32_t Power_flag : 1;`,1为检测到变化,0为未检测到变换 + +``` +typedef struct +{ + uint32_t chassis_flag : 1; + uint32_t gimbal_flag : 1; + uint32_t shoot_flag : 1; + uint32_t lid_flag : 1; + uint32_t friction_flag : 1; + uint32_t Power_flag : 1; +} Referee_Interactive_Flag_t; +``` + +在变化检测函数中增加对应判断,由于voltage和能量条的变化对应同一个参数`Chassis_last_Power_Data.chassis_power_mx`的变化,所以只需要一个参数即可: + +``` +static void UIChangeCheck(Referee_Interactive_info_t *_Interactive_data) +{ + if (_Interactive_data->chassis_mode != _Interactive_data->chassis_last_mode) + ...... + ...... + if (_Interactive_data->lid_mode != _Interactive_data->lid_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.lid_flag = 1; + _Interactive_data->lid_last_mode = _Interactive_data->lid_mode; + } + + if (_Interactive_data->Chassis_Power_Data.chassis_power_mx != _Interactive_data->Chassis_last_Power_Data.chassis_power_mx) + { + _Interactive_data->Referee_Interactive_Flag.Power_flag = 1; + _Interactive_data->Chassis_last_Power_Data.chassis_power_mx = _Interactive_data->Chassis_Power_Data.chassis_power_mx; + } +} +``` + +### 根据功率的变化绘制UI + +在绘制变化的UI时,由于初始化时已经使用`UI_Graph_ADD`操作添加了UI,所以在绘制时,需要使用`UI_Graph_Change`操作,以便于刷新UI。 + +同时,完成UI刷新后,需要将对应的flag置0,以便于下次检测变化 + +``` +if (_Interactive_data->Referee_Interactive_Flag.Power_flag == 1) +{ + UIFloatDraw(&UI_Energy[1], "sd5", UI_Graph_Change, 8, UI_Color_Green, 18, 2, 2, 750, 230, _Interactive_data->Chassis_Power_Data.chassis_power_mx * 1000); + UILineDraw(&UI_Energy[2], "sd6", UI_Graph_Change, 8, UI_Color_Pink, 30, 720, 160, (uint32_t)750 + _Interactive_data->Chassis_Power_Data.chassis_power_mx * 30, 160); + UIRefresh(&referee_recv_info->referee_id, 2, UI_Energy[1], UI_Energy[2]); + _Interactive_data->Referee_Interactive_Flag.Power_flag = 0; +} +``` + +--- + +若需要进行多机交互,可增加此函数: + +```c +void CommBetweenRobotSend(referee_id_t *_id, robot_interactive_data_t *_data) +{ + Communicate_SendData_t SendData; + uint8_t temp_datalength = Interactive_Data_LEN_Head + Communicate_Data_LEN; // 计算交互数据长度 6+n,n为交互数据长度 + + SendData.FrameHeader.SOF = REFEREE_SOF; + SendData.FrameHeader.DataLength = temp_datalength; + SendData.FrameHeader.Seq = UI_Seq; + SendData.FrameHeader.CRC8 = Get_CRC8_Check_Sum((uint8_t *)&SendData, LEN_CRC8, 0xFF); + + SendData.CmdID = ID_student_interactive; + + SendData.datahead.data_cmd_id = Communicate_Data_ID; + SendData.datahead.sender_ID = _id->Robot_ID; + SendData.datahead.receiver_ID = _id->Receiver_Robot_ID; + + SendData.Data = *_data; + + SendData.frametail = Get_CRC16_Check_Sum((uint8_t *)&SendData, LEN_HEADER + LEN_CMDID + temp_datalength, 0xFFFF); + + RefereeSend((uint8_t *)&SendData, LEN_HEADER + LEN_CMDID + temp_datalength + LEN_TAIL); // 发送 + UI_Seq++; // 包序号+1 +} +``` diff --git a/modules/referee/referee_UI.c b/modules/referee/referee_UI.c new file mode 100644 index 0000000..55ce3c6 --- /dev/null +++ b/modules/referee/referee_UI.c @@ -0,0 +1,424 @@ +/** + * @file referee_UI.C + * @author kidneygood (you@domain.com) + * @brief + * @version 0.1 + * @date 2023-1-18 + * + * @copyright Copyright (c) 2022 + * + */ +#include "referee_UI.h" +#include "string.h" +#include "crc_ref.h" +#include "stdio.h" +#include "rm_referee.h" + +// 包序号 +/********************************************删除操作************************************* +**参数:_id 对应的id结构体 + Del_Operate 对应头文件删除操作 + Del_Layer 要删除的层 取值0-9 +*****************************************************************************************/ +void UIDelete(referee_id_t *_id, uint8_t Del_Operate, uint8_t Del_Layer) +{ + static UI_delete_t UI_delete_data; + uint8_t temp_datalength = Interactive_Data_LEN_Head + UI_Operate_LEN_Del; // 计算交互数据长度 + + UI_delete_data.FrameHeader.SOF = REFEREE_SOF; + UI_delete_data.FrameHeader.DataLength = temp_datalength; + UI_delete_data.FrameHeader.Seq = UI_Seq; + UI_delete_data.FrameHeader.CRC8 = Get_CRC8_Check_Sum((uint8_t *)&UI_delete_data, LEN_CRC8, 0xFF); + + UI_delete_data.CmdID = ID_student_interactive; + + UI_delete_data.datahead.data_cmd_id = UI_Data_ID_Del; + UI_delete_data.datahead.receiver_ID = _id->Cilent_ID; + UI_delete_data.datahead.sender_ID = _id->Robot_ID; + + UI_delete_data.Delete_Operate = Del_Operate; // 删除操作 + UI_delete_data.Layer = Del_Layer; + + UI_delete_data.frametail = Get_CRC16_Check_Sum((uint8_t *)&UI_delete_data, LEN_HEADER + LEN_CMDID + temp_datalength, 0xFFFF); + /* 填入0xFFFF,关于crc校验 */ + + RefereeSend((uint8_t *)&UI_delete_data, LEN_HEADER + LEN_CMDID + temp_datalength + LEN_TAIL); // 发送 + + UI_Seq++; // 包序号+1 +} +/************************************************绘制直线************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Width 图形线宽 + Start_x、Start_y 起点xy坐标 + End_x、End_y 终点xy坐标 +**********************************************************************************************************/ + +void UILineDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t End_x, uint32_t End_y) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) // 填充至‘0’为止 + { + graph->graphic_name[2 - i] = graphname[i]; // 按内存地址增大方向填充,所以会有i与2-i + } + + graph->operate_tpye = Graph_Operate; + graph->graphic_tpye = UI_Graph_Line; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->start_angle = 0; + graph->end_angle = 0; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = 0; + graph->end_x = End_x; + graph->end_y = End_y; +} + +/************************************************绘制矩形************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Width 图形线宽 + Start_x、Start_y 起点xy坐标 + End_x、End_y 对角顶点xy坐标 +**********************************************************************************************************/ +void UIRectangleDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t End_x, uint32_t End_y) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + + graph->graphic_tpye = UI_Graph_Rectangle; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->start_angle = 0; + graph->end_angle = 0; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = 0; + graph->end_x = End_x; + graph->end_y = End_y; +} + +/************************************************绘制整圆************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Width 图形线宽 + Start_x、Start_y 圆心xy坐标 + Graph_Radius 圆形半径 +**********************************************************************************************************/ + +void UICircleDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t Graph_Radius) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + + graph->graphic_tpye = UI_Graph_Circle; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->start_angle = 0; + graph->end_angle = 0; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = Graph_Radius; + graph->end_x = 0; + graph->end_y = 0; +} +/************************************************绘制椭圆************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Width 图形线宽 + Start_x、Start_y 圆心xy坐标 + End_x、End_y xy半轴长度 +**********************************************************************************************************/ +void UIOvalDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t end_x, uint32_t end_y) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + + graph->graphic_tpye = UI_Graph_Ellipse; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + graph->width = Graph_Width; + + graph->start_angle = 0; + graph->end_angle = 0; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = 0; + graph->end_x = end_x; + graph->end_y = end_y; +} + +/************************************************绘制圆弧************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_StartAngle,Graph_EndAngle 起始终止角度 + Graph_Width 图形线宽 + Start_y,Start_y 圆心xy坐标 + x_Length,y_Length xy半轴长度 +**********************************************************************************************************/ + +void UIArcDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_StartAngle, uint32_t Graph_EndAngle, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, + uint32_t end_x, uint32_t end_y) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + + graph->graphic_tpye = UI_Graph_Arc; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->start_angle = Graph_StartAngle; + graph->end_angle = Graph_EndAngle; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = 0; + graph->end_x = end_x; + graph->end_y = end_y; +} + +/************************************************绘制浮点型数据************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Size 字号 + Graph_Digit 小数位数 + Graph_Width 图形线宽 + Start_x、Start_y 开始坐标 + radius=a&0x3FF; a为浮点数乘以1000后的32位整型数 + end_x=(a>>10)&0x7FF; + end_y=(a>>21)&0x7FF; +**********************************************************************************************************/ + +void UIFloatDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Digit, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, int32_t Graph_Float) +{ + + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + graph->graphic_tpye = UI_Graph_Float; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->start_angle = Graph_Size; + graph->end_angle = Graph_Digit; + + graph->radius = Graph_Float & 0x3FF; + graph->end_x = (Graph_Float >> 10) & 0x7FF; + graph->end_y = (Graph_Float >> 21) & 0x7FF; +} + +/************************************************绘制整型数据************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Size 字号 + Graph_Width 图形线宽 + Start_x、Start_y 开始坐标 + radius=a&0x3FF; a为32位整型数 + end_x=(a>>10)&0x7FF; + end_y=(a>>21)&0x7FF; +**********************************************************************************************************/ +void UIIntDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, int32_t Graph_Integer) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->graphic_name[2 - i] = graphname[i]; + } + graph->graphic_tpye = UI_Graph_Int; + graph->operate_tpye = Graph_Operate; + graph->layer = Graph_Layer; + graph->color = Graph_Color; + + graph->start_angle = Graph_Size; + graph->end_angle = 0; + graph->width = Graph_Width; + graph->start_x = Start_x; + graph->start_y = Start_y; + graph->radius = Graph_Integer & 0x3FF; + graph->end_x = (Graph_Integer >> 10) & 0x7FF; + graph->end_y = (Graph_Integer >> 21) & 0x7FF; +} + +/************************************************绘制字符型数据************************************************* +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + graphname[3] 图片名称,用于标识更改 + Graph_Operate 图片操作,见头文件 + Graph_Layer 图层0-9 + Graph_Color 图形颜色 + Graph_Size 字号 + Graph_Width 图形线宽 + Start_x、Start_y 开始坐标 + +**参数:*graph Graph_Data类型变量指针,用于存放图形数据 + fmt需要显示的字符串 + 此函数的实现和具体使用类似于printf函数 +**********************************************************************************************************/ +void UICharDraw(String_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, char *fmt, ...) +{ + int i; + for (i = 0; i < 3 && graphname[i] != '\0'; i++) + { + graph->Graph_Control.graphic_name[2 - i] = graphname[i]; + } + + graph->Graph_Control.graphic_tpye = UI_Graph_Char; + graph->Graph_Control.operate_tpye = Graph_Operate; + graph->Graph_Control.layer = Graph_Layer; + graph->Graph_Control.color = Graph_Color; + + graph->Graph_Control.width = Graph_Width; + graph->Graph_Control.start_x = Start_x; + graph->Graph_Control.start_y = Start_y; + graph->Graph_Control.start_angle = Graph_Size; + graph->Graph_Control.radius = 0; + graph->Graph_Control.end_x = 0; + graph->Graph_Control.end_y = 0; + + va_list ap; + va_start(ap, fmt); + vsprintf((char *)graph->show_Data, fmt, ap); // 使用参数列表进行格式化并输出到字符串 + va_end(ap); + graph->Graph_Control.end_angle = strlen((const char *)graph->show_Data); +} + +/* UI推送函数(使更改生效) + 参数: cnt 图形个数 + ... 图形变量参数 + Tips::该函数只能推送1,2,5,7个图形,其他数目协议未涉及 + */ +void UIGraphRefresh(referee_id_t *_id, int cnt, ...) +{ + UI_GraphReFresh_t UI_GraphReFresh_data; + Graph_Data_t graphData; + + uint8_t temp_datalength = LEN_HEADER + LEN_CMDID + Interactive_Data_LEN_Head + UI_Operate_LEN_PerDraw * cnt + LEN_TAIL; // 计算交互数据长度 + + static uint8_t buffer[512]; // 交互数据缓存 + + va_list ap; // 创建一个 va_list 类型变量 + va_start(ap, cnt); // 初始化 va_list 变量为一个参数列表 + + UI_GraphReFresh_data.FrameHeader.SOF = REFEREE_SOF; + UI_GraphReFresh_data.FrameHeader.DataLength = Interactive_Data_LEN_Head + cnt * UI_Operate_LEN_PerDraw; + UI_GraphReFresh_data.FrameHeader.Seq = UI_Seq; + UI_GraphReFresh_data.FrameHeader.CRC8 = Get_CRC8_Check_Sum((uint8_t *)&UI_GraphReFresh_data, LEN_CRC8, 0xFF); + + UI_GraphReFresh_data.CmdID = ID_student_interactive; + + switch (cnt) + { + case 1: + UI_GraphReFresh_data.datahead.data_cmd_id = UI_Data_ID_Draw1; + break; + case 2: + UI_GraphReFresh_data.datahead.data_cmd_id = UI_Data_ID_Draw2; + break; + case 5: + UI_GraphReFresh_data.datahead.data_cmd_id = UI_Data_ID_Draw5; + break; + case 7: + UI_GraphReFresh_data.datahead.data_cmd_id = UI_Data_ID_Draw7; + break; + } + + UI_GraphReFresh_data.datahead.receiver_ID = _id->Cilent_ID; + UI_GraphReFresh_data.datahead.sender_ID = _id->Robot_ID; + memcpy(buffer, (uint8_t *)&UI_GraphReFresh_data, LEN_HEADER + LEN_CMDID + Interactive_Data_LEN_Head); // 将帧头、命令码、交互数据帧头三部分复制到缓存中 + + for (uint8_t i = 0; i < cnt; i++) // 发送交互数据的数据帧,并计算CRC16校验值 + { + graphData = va_arg(ap, Graph_Data_t); // 访问参数列表中的每个项,第二个参数是你要返回的参数的类型,在取值时需要将其强制转化为指定类型的变量 + memcpy(buffer + (LEN_HEADER + LEN_CMDID + Interactive_Data_LEN_Head + UI_Operate_LEN_PerDraw * i), (uint8_t *)&graphData, UI_Operate_LEN_PerDraw); + } + Append_CRC16_Check_Sum(buffer, temp_datalength); + RefereeSend(buffer, temp_datalength); + + va_end(ap); // 结束可变参数的获取 +} + +/************************************************UI推送字符(使更改生效)*********************************/ +void UICharRefresh(referee_id_t *_id, String_Data_t string_Data) +{ + static UI_CharReFresh_t UI_CharReFresh_data; + + uint8_t temp_datalength = Interactive_Data_LEN_Head + UI_Operate_LEN_DrawChar; // 计算交互数据长度 + + UI_CharReFresh_data.FrameHeader.SOF = REFEREE_SOF; + UI_CharReFresh_data.FrameHeader.DataLength = temp_datalength; + UI_CharReFresh_data.FrameHeader.Seq = UI_Seq; + UI_CharReFresh_data.FrameHeader.CRC8 = Get_CRC8_Check_Sum((uint8_t *)&UI_CharReFresh_data, LEN_CRC8, 0xFF); + + UI_CharReFresh_data.CmdID = ID_student_interactive; + + UI_CharReFresh_data.datahead.data_cmd_id = UI_Data_ID_DrawChar; + + UI_CharReFresh_data.datahead.receiver_ID = _id->Cilent_ID; + UI_CharReFresh_data.datahead.sender_ID = _id->Robot_ID; + + UI_CharReFresh_data.String_Data = string_Data; + + UI_CharReFresh_data.frametail = Get_CRC16_Check_Sum((uint8_t *)&UI_CharReFresh_data, LEN_HEADER + LEN_CMDID + temp_datalength, 0xFFFF); + + RefereeSend((uint8_t *)&UI_CharReFresh_data, LEN_HEADER + LEN_CMDID + temp_datalength + LEN_TAIL); // 发送 + + UI_Seq++; // 包序号+1 +} diff --git a/modules/referee/referee_UI.h b/modules/referee/referee_UI.h new file mode 100644 index 0000000..4fba98b --- /dev/null +++ b/modules/referee/referee_UI.h @@ -0,0 +1,72 @@ +#ifndef REFEREE_UI_H +#define REFEREE_UI_H + +#include "stdarg.h" +#include "stdint.h" +#include "referee_protocol.h" +#include "rm_referee.h" + +#pragma pack(1) // 按1字节对齐 + +/* 此处的定义只与UI绘制有关 */ +typedef struct +{ + xFrameHeader FrameHeader; + uint16_t CmdID; + ext_student_interactive_header_data_t datahead; + uint8_t Delete_Operate; // 删除操作 + uint8_t Layer; + uint16_t frametail; +} UI_delete_t; + +typedef struct +{ + xFrameHeader FrameHeader; + uint16_t CmdID; + ext_student_interactive_header_data_t datahead; + uint16_t frametail; +} UI_GraphReFresh_t; + +typedef struct +{ + xFrameHeader FrameHeader; + uint16_t CmdID; + ext_student_interactive_header_data_t datahead; + String_Data_t String_Data; + uint16_t frametail; +} UI_CharReFresh_t; // 打印字符串数据 + +#pragma pack() + +void UIDelete(referee_id_t *_id, uint8_t Del_Operate, uint8_t Del_Layer); + +void UILineDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t End_x, uint32_t End_y); + +void UIRectangleDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t End_x, uint32_t End_y); + +void UICircleDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t Graph_Radius); + +void UIOvalDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, uint32_t end_x, uint32_t end_y); + +void UIArcDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_StartAngle, uint32_t Graph_EndAngle, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, + uint32_t end_x, uint32_t end_y); + +void UIFloatDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Digit, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, int32_t Graph_Float); + +void UIIntDraw(Graph_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, int32_t Graph_Integer); + +void UICharDraw(String_Data_t *graph, char graphname[3], uint32_t Graph_Operate, uint32_t Graph_Layer, uint32_t Graph_Color, + uint32_t Graph_Size, uint32_t Graph_Width, uint32_t Start_x, uint32_t Start_y, char *fmt, ...); + +void UIGraphRefresh(referee_id_t *_id, int cnt, ...); + +void UICharRefresh(referee_id_t *_id, String_Data_t string_Data); + +#endif diff --git a/modules/referee/referee_protocol.h b/modules/referee/referee_protocol.h new file mode 100644 index 0000000..669a712 --- /dev/null +++ b/modules/referee/referee_protocol.h @@ -0,0 +1,387 @@ +/** + * @file referee_protocol.h + * @author kidneygood (you@domain.com) + * @version 0.1 + * @date 2022-12-02 + * + * @copyright Copyright (c) HNU YueLu EC 2022 all rights reserved + * + */ + +#ifndef referee_protocol_H +#define referee_protocol_H + +#include "stdint.h" + +/****************************宏定义部分****************************/ + +#define REFEREE_SOF 0xA5 // 起始字节,协议固定为0xA5 +#define Robot_Red 0 +#define Robot_Blue 1 +#define Communicate_Data_LEN 5 // 自定义交互数据长度,该长度决定了我方发送和他方接收,自定义交互数据协议更改时只需要更改此宏定义即可 + +#pragma pack(1) + +/****************************通信协议格式****************************/ + +/* 通信协议格式偏移,枚举类型,代替#define声明 */ +typedef enum +{ + FRAME_HEADER_Offset = 0, + CMD_ID_Offset = 5, + DATA_Offset = 7, +} JudgeFrameOffset_e; + +/* 通信协议长度 */ +typedef enum +{ + LEN_HEADER = 5, // 帧头长 + LEN_CMDID = 2, // 命令码长度 + LEN_TAIL = 2, // 帧尾CRC16 + + LEN_CRC8 = 4, // 帧头CRC8校验长度=帧头+数据长+包序号 +} JudgeFrameLength_e; + +/****************************帧头****************************/ +/****************************帧头****************************/ + +/* 帧头偏移 */ +typedef enum +{ + SOF = 0, // 起始位 + DATA_LENGTH = 1, // 帧内数据长度,根据这个来获取数据长度 + SEQ = 3, // 包序号 + CRC8 = 4 // CRC8 +} FrameHeaderOffset_e; + +/* 帧头定义 */ +typedef struct +{ + uint8_t SOF; + uint16_t DataLength; + uint8_t Seq; + uint8_t CRC8; +} xFrameHeader; + +/****************************cmd_id命令码说明****************************/ +/****************************cmd_id命令码说明****************************/ + +/* 命令码ID,用来判断接收的是什么数据 */ +typedef enum +{ + ID_game_state = 0x0001, // 比赛状态数据 + ID_game_result = 0x0002, // 比赛结果数据 + ID_game_robot_survivors = 0x0003, // 比赛机器人血量数据 + ID_event_data = 0x0101, // 场地事件数据 + ID_supply_projectile_action = 0x0102, // 场地补给站动作标识数据 + ID_supply_projectile_booking = 0x0103, // 场地补给站预约子弹数据 + ID_game_robot_state = 0x0201, // 机器人状态数据 + ID_power_heat_data = 0x0202, // 实时功率热量数据 + ID_game_robot_pos = 0x0203, // 机器人位置数据 + ID_buff_musk = 0x0204, // 机器人增益数据 + ID_aerial_robot_energy = 0x0205, // 空中机器人能量状态数据 + ID_robot_hurt = 0x0206, // 伤害状态数据 + ID_shoot_data = 0x0207, // 实时射击数据 + ID_student_interactive = 0x0301, // 机器人间交互数据 +} CmdID_e; + +/* 命令码数据段长,根据官方协议来定义长度,还有自定义数据长度 */ +typedef enum +{ + LEN_game_state = 3, // 0x0001 + LEN_game_result = 1, // 0x0002 + LEN_game_robot_HP = 2, // 0x0003 + LEN_event_data = 4, // 0x0101 + LEN_supply_projectile_action = 4, // 0x0102 + LEN_game_robot_state = 27, // 0x0201 + LEN_power_heat_data = 14, // 0x0202 + LEN_game_robot_pos = 16, // 0x0203 + LEN_buff_musk = 1, // 0x0204 + LEN_aerial_robot_energy = 1, // 0x0205 + LEN_robot_hurt = 1, // 0x0206 + LEN_shoot_data = 7, // 0x0207 + LEN_receive_data = 6 + Communicate_Data_LEN, // 0x0301 + +} JudgeDataLength_e; + +/****************************接收数据的详细说明****************************/ +/****************************接收数据的详细说明****************************/ + +/* ID: 0x0001 Byte: 3 比赛状态数据 */ +typedef struct +{ + uint8_t game_type : 4; + uint8_t game_progress : 4; + uint16_t stage_remain_time; +} ext_game_state_t; + +/* ID: 0x0002 Byte: 1 比赛结果数据 */ +typedef struct +{ + uint8_t winner; +} ext_game_result_t; + +/* ID: 0x0003 Byte: 32 比赛机器人血量数据 */ +typedef struct +{ + uint16_t red_1_robot_HP; + uint16_t red_2_robot_HP; + uint16_t red_3_robot_HP; + uint16_t red_4_robot_HP; + uint16_t red_5_robot_HP; + uint16_t red_7_robot_HP; + uint16_t red_outpost_HP; + uint16_t red_base_HP; + uint16_t blue_1_robot_HP; + uint16_t blue_2_robot_HP; + uint16_t blue_3_robot_HP; + uint16_t blue_4_robot_HP; + uint16_t blue_5_robot_HP; + uint16_t blue_7_robot_HP; + uint16_t blue_outpost_HP; + uint16_t blue_base_HP; +} ext_game_robot_HP_t; + +/* ID: 0x0101 Byte: 4 场地事件数据 */ +typedef struct +{ + uint32_t event_type; +} ext_event_data_t; + +/* ID: 0x0102 Byte: 3 场地补给站动作标识数据 */ +typedef struct +{ + uint8_t supply_projectile_id; + uint8_t supply_robot_id; + uint8_t supply_projectile_step; + uint8_t supply_projectile_num; +} ext_supply_projectile_action_t; + +/* ID: 0X0201 Byte: 13 V1.6.1 机器人性能体系数据 */ +typedef struct +{ + uint8_t robot_id; + uint8_t robot_level; + uint16_t current_HP; + uint16_t maximum_HP; + uint16_t shooter_barrel_cooling_value; + uint16_t shooter_barrel_heat_limit; + uint16_t chassis_power_limit; + + uint8_t power_management_gimbal_output : 1; + uint8_t power_management_chassis_output : 1; + uint8_t power_management_shooter_output : 1; +} ext_game_robot_state_t; + +/* ID: 0X0202 Byte: 14 v1.6.1 实时功率热量数据 */ +typedef struct +{ + uint16_t chassis_voltage; + uint16_t chassis_current; + float chassis_power; + uint16_t buffer_energy; + uint16_t shooter_17mm_1_barrel_heat; + uint16_t shooter_17mm_2_barrel_heat; + uint16_t shooter_42mm_barrel_heat; +} ext_power_heat_data_t; + +/* ID: 0x0203 Byte: 16 机器人位置数据 */ +typedef struct +{ + float x; + float y; + float z; + float yaw; +} ext_game_robot_pos_t; + +/* ID: 0x0204 Byte: 1 机器人增益数据 */ +typedef struct +{ + uint8_t power_rune_buff; +} ext_buff_musk_t; + +/* ID: 0x0205 Byte: 1 空中机器人能量状态数据 */ +typedef struct +{ + uint8_t attack_time; +} aerial_robot_energy_t; + +/* ID: 0x0206 Byte: 1 伤害状态数据 */ +typedef struct +{ + uint8_t armor_id : 4; + uint8_t hurt_type : 4; +} ext_robot_hurt_t; + +/* ID: 0x0207 Byte: 7 实时射击数据 */ +typedef struct +{ + uint8_t bullet_type; + uint8_t shooter_id; + uint8_t bullet_freq; + float bullet_speed; +} ext_shoot_data_t; + +/****************************机器人交互数据****************************/ +/****************************机器人交互数据****************************/ +/* 发送的内容数据段最大为 113 检测是否超出大小限制?实际上图形段不会超,数据段最多30个,也不会超*/ +/* 交互数据头结构 */ +typedef struct +{ + uint16_t data_cmd_id; // 由于存在多个内容 ID,但整个cmd_id 上行频率最大为 10Hz,请合理安排带宽。注意交互部分的上行频率 + uint16_t sender_ID; + uint16_t receiver_ID; +} ext_student_interactive_header_data_t; + +/* 机器人id */ +typedef enum +{ + // 红方机器人ID + RobotID_RHero = 1, + RobotID_REngineer = 2, + RobotID_RStandard1 = 3, + RobotID_RStandard2 = 4, + RobotID_RStandard3 = 5, + RobotID_RAerial = 6, + RobotID_RSentry = 7, + RobotID_RRadar = 9, + // 蓝方机器人ID + RobotID_BHero = 101, + RobotID_BEngineer = 102, + RobotID_BStandard1 = 103, + RobotID_BStandard2 = 104, + RobotID_BStandard3 = 105, + RobotID_BAerial = 106, + RobotID_BSentry = 107, + RobotID_BRadar = 109, +} Robot_ID_e; + +/* 交互数据ID */ +typedef enum +{ + UI_Data_ID_Del = 0x100, + UI_Data_ID_Draw1 = 0x101, + UI_Data_ID_Draw2 = 0x102, + UI_Data_ID_Draw5 = 0x103, + UI_Data_ID_Draw7 = 0x104, + UI_Data_ID_DrawChar = 0x110, + + /* 自定义交互数据部分 */ + Communicate_Data_ID = 0x0200, + +} Interactive_Data_ID_e; +/* 交互数据长度 */ +typedef enum +{ + Interactive_Data_LEN_Head = 6, + UI_Operate_LEN_Del = 2, + UI_Operate_LEN_PerDraw = 15, + UI_Operate_LEN_DrawChar = 15 + 30, + + /* 自定义交互数据部分 */ + // Communicate_Data_LEN = 5, + +} Interactive_Data_Length_e; + +/****************************自定义交互数据****************************/ +/* + 学生机器人间通信 cmd_id 0x0301,内容 ID:0x0200~0x02FF + 自定义交互数据 机器人间通信:0x0301。 + 发送频率:上限 10Hz +*/ +// 自定义交互数据协议,可更改,更改后需要修改最上方宏定义数据长度的值 +typedef struct +{ + uint8_t data[Communicate_Data_LEN]; // 数据段,n需要小于113 +} robot_interactive_data_t; + +// 机器人交互信息_发送 +typedef struct +{ + xFrameHeader FrameHeader; + uint16_t CmdID; + ext_student_interactive_header_data_t datahead; + robot_interactive_data_t Data; // 数据段 + uint16_t frametail; +} Communicate_SendData_t; +// 机器人交互信息_接收 +typedef struct +{ + ext_student_interactive_header_data_t datahead; + robot_interactive_data_t Data; // 数据段 +} Communicate_ReceiveData_t; + +/****************************UI交互数据****************************/ + +/* 图形数据 */ +typedef struct +{ + uint8_t graphic_name[3]; + uint32_t operate_tpye : 3; + uint32_t graphic_tpye : 3; + uint32_t layer : 4; + uint32_t color : 4; + uint32_t start_angle : 9; + uint32_t end_angle : 9; + uint32_t width : 10; + uint32_t start_x : 11; + uint32_t start_y : 11; + uint32_t radius : 10; + uint32_t end_x : 11; + uint32_t end_y : 11; +} Graph_Data_t; + +typedef struct +{ + Graph_Data_t Graph_Control; + uint8_t show_Data[30]; +} String_Data_t; // 打印字符串数据 + +/* 删除操作 */ +typedef enum +{ + UI_Data_Del_NoOperate = 0, + UI_Data_Del_Layer = 1, + UI_Data_Del_ALL = 2, // 删除全部图层,后面的参数已经不重要了。 +} UI_Delete_Operate_e; + +/* 图形配置参数__图形操作 */ +typedef enum +{ + UI_Graph_ADD = 1, + UI_Graph_Change = 2, + UI_Graph_Del = 3, +} UI_Graph_Operate_e; + +/* 图形配置参数__图形类型 */ +typedef enum +{ + UI_Graph_Line = 0, // 直线 + UI_Graph_Rectangle = 1, // 矩形 + UI_Graph_Circle = 2, // 整圆 + UI_Graph_Ellipse = 3, // 椭圆 + UI_Graph_Arc = 4, // 圆弧 + UI_Graph_Float = 5, // 浮点型 + UI_Graph_Int = 6, // 整形 + UI_Graph_Char = 7, // 字符型 + +} UI_Graph_Type_e; + +/* 图形配置参数__图形颜色 */ +typedef enum +{ + UI_Color_Main = 0, // 红蓝主色 + UI_Color_Yellow = 1, + UI_Color_Green = 2, + UI_Color_Orange = 3, + UI_Color_Purplish_red = 4, // 紫红色 + UI_Color_Pink = 5, + UI_Color_Cyan = 6, // 青色 + UI_Color_Black = 7, + UI_Color_White = 8, + +} UI_Graph_Color_e; + +#pragma pack() + +#endif diff --git a/modules/referee/referee_task.c b/modules/referee/referee_task.c new file mode 100644 index 0000000..59715e8 --- /dev/null +++ b/modules/referee/referee_task.c @@ -0,0 +1,310 @@ +/** + * @file referee.C + * @author kidneygood (you@domain.com) + * @brief + * @version 0.1 + * @date 2022-11-18 + * + * @copyright Copyright (c) 2022 + * + */ +#include "referee_task.h" +#include "robot_def.h" +#include "rm_referee.h" +#include "referee_UI.h" +#include "string.h" +#include "cmsis_os.h" + +static Referee_Interactive_info_t *Interactive_data; // UI绘制需要的机器人状态数据 +static referee_info_t *referee_recv_info; // 接收到的裁判系统数据 +Referee_Interactive_info_t ui_data; +uint8_t UI_Seq; // 包序号,供整个referee文件使用 +// @todo 不应该使用全局变量 + +/** + * @brief 判断各种ID,选择客户端ID + * @param referee_info_t *referee_recv_info + * @retval none + * @attention + */ +static void DeterminRobotID() +{ + // id小于7是红色,大于7是蓝色 #define Robot_Red 0 #define Robot_Blue 1 + referee_recv_info->referee_id.Robot_Color = referee_recv_info->GameRobotState.robot_id > 7 ? Robot_Blue : Robot_Red; + referee_recv_info->referee_id.Robot_ID = referee_recv_info->GameRobotState.robot_id; + referee_recv_info->referee_id.Cilent_ID = 0x0100 + referee_recv_info->referee_id.Robot_ID; // 计算客户端ID + referee_recv_info->referee_id.Receiver_Robot_ID = 0; +} + +static void MyUIRefresh(referee_info_t *referee_recv_info, Referee_Interactive_info_t *_Interactive_data); +static void UIChangeCheck(Referee_Interactive_info_t *_Interactive_data); // 模式切换检测 +static void RobotModeTest(Referee_Interactive_info_t *_Interactive_data); // 测试用函数,实现模式自动变化 + +referee_info_t *UITaskInit(UART_HandleTypeDef *referee_usart_handle, Referee_Interactive_info_t *UI_data) +{ + referee_recv_info = RefereeInit(referee_usart_handle); // 初始化裁判系统的串口,并返回裁判系统反馈数据指针 + Interactive_data = UI_data; // 获取UI绘制需要的机器人状态数据 + referee_recv_info->init_flag = 1; + return referee_recv_info; +} + +void UITask() +{ + //RobotModeTest(Interactive_data); // 测试用函数,实现模式自动变化,用于检查该任务和裁判系统是否连接正常 + MyUIRefresh(referee_recv_info, Interactive_data); +} + +static Graph_Data_t UI_shoot_line[10]; // 射击准线 +static Graph_Data_t UI_Energy[4]; // 电容能量条 +static String_Data_t UI_State_sta[7]; // 机器人状态,静态只需画一次 +static String_Data_t UI_State_dyn[7]; // 机器人状态,动态先add才能change +static uint32_t shoot_line_location[10] = {540, 960, 490, 515, 565}; + +void MyUIInit() +{ + if (!referee_recv_info->init_flag) + vTaskDelete(NULL); // 如果没有初始化裁判系统则直接删除ui任务 + while (referee_recv_info->GameRobotState.robot_id == 0) + osDelay(100); // 若还未收到裁判系统数据,等待一段时间后再检查 + + DeterminRobotID(); // 确定ui要发送到的目标客户端 + UIDelete(&referee_recv_info->referee_id, UI_Data_Del_ALL, 0); // 清空UI + + // 绘制发射基准线 + UILineDraw(&UI_shoot_line[0], "sl0", UI_Graph_ADD, 7, UI_Color_White, 3, 710, shoot_line_location[0], 1210, shoot_line_location[0]); + UILineDraw(&UI_shoot_line[1], "sl1", UI_Graph_ADD, 7, UI_Color_White, 3, shoot_line_location[1], 340, shoot_line_location[1], 740); + UILineDraw(&UI_shoot_line[2], "sl2", UI_Graph_ADD, 7, UI_Color_Yellow, 2, 810, shoot_line_location[2], 1110, shoot_line_location[2]); + UILineDraw(&UI_shoot_line[3], "sl3", UI_Graph_ADD, 7, UI_Color_Yellow, 2, 810, shoot_line_location[3], 1110, shoot_line_location[3]); + UILineDraw(&UI_shoot_line[4], "sl4", UI_Graph_ADD, 7, UI_Color_Yellow, 2, 810, shoot_line_location[4], 1110, shoot_line_location[4]); + UIGraphRefresh(&referee_recv_info->referee_id, 5, UI_shoot_line[0], UI_shoot_line[1], UI_shoot_line[2], UI_shoot_line[3], UI_shoot_line[4]); + + // 绘制车辆状态标志指示 + UICharDraw(&UI_State_sta[0], "ss0", UI_Graph_ADD, 8, UI_Color_Main, 15, 2, 150, 750, "chassis:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[0]); + UICharDraw(&UI_State_sta[1], "ss1", UI_Graph_ADD, 8, UI_Color_Yellow, 15, 2, 150, 700, "gimbal:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[1]); + UICharDraw(&UI_State_sta[2], "ss2", UI_Graph_ADD, 8, UI_Color_Orange, 15, 2, 150, 650, "shoot:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[2]); + UICharDraw(&UI_State_sta[3], "ss3", UI_Graph_ADD, 8, UI_Color_Pink, 15, 2, 150, 600, "frict:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[3]); + UICharDraw(&UI_State_sta[4], "ss4", UI_Graph_ADD, 8, UI_Color_Pink, 15, 2, 150, 550, "lid:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[4]); + + // 绘制车辆状态标志,动态 + // 由于初始化时xxx_last_mode默认为0,所以此处对应UI也应该设为0时对应的UI,防止模式不变的情况下无法置位flag,导致UI无法刷新 + UICharDraw(&UI_State_dyn[0], "sd0", UI_Graph_ADD, 8, UI_Color_Main, 15, 2, 270, 750, "zeroforce"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[0]); + UICharDraw(&UI_State_dyn[1], "sd1", UI_Graph_ADD, 8, UI_Color_Yellow, 15, 2, 270, 700, "zeroforce"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[1]); + UICharDraw(&UI_State_dyn[2], "sd2", UI_Graph_ADD, 8, UI_Color_Orange, 15, 2, 270, 650, "off"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[2]); + UICharDraw(&UI_State_dyn[3], "sd3", UI_Graph_ADD, 8, UI_Color_Pink, 15, 2, 270, 600, "off"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[3]); + UICharDraw(&UI_State_dyn[4], "sd4", UI_Graph_ADD, 8, UI_Color_Pink, 15, 2, 270, 550, "open "); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[4]); + + + // 底盘功率显示,静态 + UICharDraw(&UI_State_sta[5], "ss5", UI_Graph_ADD, 8, UI_Color_Green, 18, 2, 620, 230, "Power_MAX:"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[5]); + + //底盘功率上限 +// UICharDraw(&UI_State_sta[6], "ss7", UI_Graph_ADD, 8, UI_Color_Pink, 18, 2, 620, 300, "Power_MAX:"); +// UICharRefresh(&referee_recv_info->referee_id, UI_State_sta[6]); + + // 能量条框 + UIRectangleDraw(&UI_Energy[0], "ss6", UI_Graph_ADD, 7, UI_Color_Green, 2, 720, 140, 1220, 180); + UIGraphRefresh(&referee_recv_info->referee_id, 1, UI_Energy[0]); + + // 底盘功率显示,动态 + UIFloatDraw(&UI_Energy[1], "sd5", UI_Graph_ADD, 8, UI_Color_Green, 18, 2, 2, 850, 230, referee_recv_info->GameRobotState.chassis_power_limit*1000); + // 能量条初始状态 + UILineDraw(&UI_Energy[2], "sd6", UI_Graph_ADD, 8, UI_Color_Pink, 30, 720, 160, 1020, 160); + + + //UIIntDraw(&UI_Energy[3],"sd7",UI_Graph_ADD,8,UI_Color_Pink,18,2,1000,300,referee_recv_info->GameRobotState.chassis_power_limit); + //UIFloatDraw(&UI_Energy[3], "sd7", UI_Graph_ADD, 8, UI_Color_Green, 18, 2, 2, 1000, 1000, referee_recv_info->GameRobotState.chassis_power_limit); + UIGraphRefresh(&referee_recv_info->referee_id, 2, UI_Energy[1], UI_Energy[2]); +} + +// 测试用函数,实现模式自动变化,用于检查该任务和裁判系统是否连接正常 +static uint8_t count = 0; +static uint16_t count1 = 0; +static void RobotModeTest(Referee_Interactive_info_t *_Interactive_data) // 测试用函数,实现模式自动变化 +{ + count++; + if (count >= 50) + { + count = 0; + count1++; + } + switch (count1 % 4) + { + case 0: + { + _Interactive_data->chassis_mode = CHASSIS_ZERO_FORCE; + _Interactive_data->gimbal_mode = GIMBAL_ZERO_FORCE; + _Interactive_data->shoot_mode = SHOOT_ON; + _Interactive_data->friction_mode = FRICTION_ON; + _Interactive_data->lid_mode = LID_OPEN; + _Interactive_data->Chassis_Power_Data.chassis_power_mx += 3.5; + if (_Interactive_data->Chassis_Power_Data.chassis_power_mx >= 18) + _Interactive_data->Chassis_Power_Data.chassis_power_mx = 0; + break; + } + case 1: + { + _Interactive_data->chassis_mode = CHASSIS_ROTATE; + _Interactive_data->gimbal_mode = GIMBAL_FREE_MODE; + _Interactive_data->shoot_mode = SHOOT_OFF; + _Interactive_data->friction_mode = FRICTION_OFF; + _Interactive_data->lid_mode = LID_CLOSE; + break; + } + case 2: + { + _Interactive_data->chassis_mode = CHASSIS_NO_FOLLOW; + _Interactive_data->gimbal_mode = GIMBAL_GYRO_MODE; + _Interactive_data->shoot_mode = SHOOT_ON; + _Interactive_data->friction_mode = FRICTION_ON; + _Interactive_data->lid_mode = LID_OPEN; + break; + } + case 3: + { + _Interactive_data->chassis_mode = CHASSIS_FOLLOW_GIMBAL_YAW; + _Interactive_data->gimbal_mode = GIMBAL_ZERO_FORCE; + _Interactive_data->shoot_mode = SHOOT_OFF; + _Interactive_data->friction_mode = FRICTION_OFF; + _Interactive_data->lid_mode = LID_CLOSE; + break; + } + default: + break; + } +} + +static void MyUIRefresh(referee_info_t *referee_recv_info, Referee_Interactive_info_t *_Interactive_data) +{ + UIChangeCheck(_Interactive_data); + // chassis + if (_Interactive_data->Referee_Interactive_Flag.chassis_flag == 1) + { + switch (_Interactive_data->chassis_mode) + { + case CHASSIS_ZERO_FORCE: + UICharDraw(&UI_State_dyn[0], "sd0", UI_Graph_Change, 8, UI_Color_Main, 15, 2, 270, 750, "zeroforce"); + break; + case CHASSIS_ROTATE: + UICharDraw(&UI_State_dyn[0], "sd0", UI_Graph_Change, 8, UI_Color_Main, 15, 2, 270, 750, "rotate "); + // 此处注意字数对齐问题,字数相同才能覆盖掉 + break; + case CHASSIS_NO_FOLLOW: + UICharDraw(&UI_State_dyn[0], "sd0", UI_Graph_Change, 8, UI_Color_Main, 15, 2, 270, 750, "nofollow "); + break; + case CHASSIS_FOLLOW_GIMBAL_YAW: + UICharDraw(&UI_State_dyn[0], "sd0", UI_Graph_Change, 8, UI_Color_Main, 15, 2, 270, 750, "follow "); + break; + } + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[0]); + _Interactive_data->Referee_Interactive_Flag.chassis_flag = 0; + } + // gimbal + if (_Interactive_data->Referee_Interactive_Flag.gimbal_flag == 1) + { + switch (_Interactive_data->gimbal_mode) + { + case GIMBAL_ZERO_FORCE: + { + UICharDraw(&UI_State_dyn[1], "sd1", UI_Graph_Change, 8, UI_Color_Yellow, 15, 2, 270, 700, "zeroforce"); + break; + } + case GIMBAL_FREE_MODE: + { + UICharDraw(&UI_State_dyn[1], "sd1", UI_Graph_Change, 8, UI_Color_Yellow, 15, 2, 270, 700, "free "); + break; + } + case GIMBAL_GYRO_MODE: + { + UICharDraw(&UI_State_dyn[1], "sd1", UI_Graph_Change, 8, UI_Color_Yellow, 15, 2, 270, 700, "gyro "); + break; + } + } + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[1]); + _Interactive_data->Referee_Interactive_Flag.gimbal_flag = 0; + } + // shoot + if (_Interactive_data->Referee_Interactive_Flag.shoot_flag == 1) + { + UICharDraw(&UI_State_dyn[2], "sd2", UI_Graph_Change, 8, UI_Color_Pink, 15, 2, 270, 650, _Interactive_data->shoot_mode == SHOOT_ON ? "on " : "off"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[2]); + _Interactive_data->Referee_Interactive_Flag.shoot_flag = 0; + } + // friction + if (_Interactive_data->Referee_Interactive_Flag.friction_flag == 1) + { + UICharDraw(&UI_State_dyn[3], "sd3", UI_Graph_Change, 8, UI_Color_Pink, 15, 2, 270, 600, _Interactive_data->friction_mode == FRICTION_ON ? "on " : "off"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[3]); + _Interactive_data->Referee_Interactive_Flag.friction_flag = 0; + } + // lid + if (_Interactive_data->Referee_Interactive_Flag.lid_flag == 1) + { + UICharDraw(&UI_State_dyn[4], "sd4", UI_Graph_Change, 8, UI_Color_Pink, 15, 2, 270, 550, _Interactive_data->lid_mode == LID_OPEN ? "open " : "close"); + UICharRefresh(&referee_recv_info->referee_id, UI_State_dyn[4]); + _Interactive_data->Referee_Interactive_Flag.lid_flag = 0; + } + // power + if (_Interactive_data->Referee_Interactive_Flag.Power_flag == 1) + { + UIFloatDraw(&UI_Energy[1], "sd5", UI_Graph_Change, 8, UI_Color_Green, 18, 2, 2, 850, 230, _Interactive_data->Chassis_Power_Data.chassis_power_mx * 1000); + //UILineDraw(&UI_Energy[2], "sd6", UI_Graph_Change, 8, UI_Color_Pink, 30, 720, 160, (uint32_t)750 + _Interactive_data->Chassis_Power_Data.chassis_power_mx * 30, 160); + UIGraphRefresh(&referee_recv_info->referee_id, 2, UI_Energy[1], UI_Energy[2]); + _Interactive_data->Referee_Interactive_Flag.Power_flag = 0; + } +} + +/** + * @brief 模式切换检测,模式发生切换时,对flag置位 + * @param Referee_Interactive_info_t *_Interactive_data + * @retval none + * @attention + */ +static void UIChangeCheck(Referee_Interactive_info_t *_Interactive_data) +{ + if (_Interactive_data->chassis_mode != _Interactive_data->chassis_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.chassis_flag = 1; + _Interactive_data->chassis_last_mode = _Interactive_data->chassis_mode; + } + + if (_Interactive_data->gimbal_mode != _Interactive_data->gimbal_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.gimbal_flag = 1; + _Interactive_data->gimbal_last_mode = _Interactive_data->gimbal_mode; + } + + if (_Interactive_data->shoot_mode != _Interactive_data->shoot_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.shoot_flag = 1; + _Interactive_data->shoot_last_mode = _Interactive_data->shoot_mode; + } + + if (_Interactive_data->friction_mode != _Interactive_data->friction_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.friction_flag = 1; + _Interactive_data->friction_last_mode = _Interactive_data->friction_mode; + } + + if (_Interactive_data->lid_mode != _Interactive_data->lid_last_mode) + { + _Interactive_data->Referee_Interactive_Flag.lid_flag = 1; + _Interactive_data->lid_last_mode = _Interactive_data->lid_mode; + } + + if (_Interactive_data->Chassis_Power_Data.chassis_power_mx != _Interactive_data->Chassis_last_Power_Data.last_power_mx) + { + _Interactive_data->Referee_Interactive_Flag.Power_flag = 1; + _Interactive_data->Chassis_last_Power_Data.last_power_mx = _Interactive_data->Chassis_Power_Data.chassis_power_mx; + } +} diff --git a/modules/referee/referee_task.h b/modules/referee/referee_task.h new file mode 100644 index 0000000..99568d5 --- /dev/null +++ b/modules/referee/referee_task.h @@ -0,0 +1,26 @@ +#ifndef REFEREE_H +#define REFEREE_H + +#include "rm_referee.h" +#include "robot_def.h" + +/** + * @brief 初始化裁判系统交互任务(UI和多机通信) + * + */ +extern Referee_Interactive_info_t ui_data; // UI数据,将底盘中的数据传入此结构体的对应变量中,UI会自动检测是否变化,对应显示UI +referee_info_t *UITaskInit(UART_HandleTypeDef *referee_usart_handle, Referee_Interactive_info_t *UI_data); + +/** + * @brief 在referee task之前调用,添加在freertos.c中 + * + */ +void MyUIInit(); + +/** + * @brief 裁判系统交互任务(UI和多机通信) + * + */ +void UITask(); + +#endif // REFEREE_H diff --git a/modules/referee/rm_referee.c b/modules/referee/rm_referee.c new file mode 100644 index 0000000..2743d7d --- /dev/null +++ b/modules/referee/rm_referee.c @@ -0,0 +1,149 @@ +/** + * @file rm_referee.C + * @author kidneygood (you@domain.com) + * @brief + * @version 0.1 + * @date 2022-11-18 + * + * @copyright Copyright (c) 2022 + * + */ + +#include "rm_referee.h" +#include "string.h" +#include "crc_ref.h" +#include "bsp_usart.h" +#include "task.h" +#include "daemon.h" +#include "bsp_log.h" +#include "cmsis_os.h" + +#define RE_RX_BUFFER_SIZE 255u // 裁判系统接收缓冲区大小 + +static USARTInstance *referee_usart_instance; // 裁判系统串口实例 +static DaemonInstance *referee_daemon; // 裁判系统守护进程 +static referee_info_t referee_info; // 裁判系统数据 + +/** + * @brief 读取裁判数据,中断中读取保证速度 + * @param buff: 读取到的裁判系统原始数据 + * @retval 是否对正误判断做处理 + * @attention 在此判断帧头和CRC校验,无误再写入数据,不重复判断帧头 + */ +static void JudgeReadData(uint8_t *buff) +{ + uint16_t judge_length; // 统计一帧数据长度 + if (buff == NULL) // 空数据包,则不作任何处理 + return; + + // 写入帧头数据(5-byte),用于判断是否开始存储裁判数据 + memcpy(&referee_info.FrameHeader, buff, LEN_HEADER); + + // 判断帧头数据(0)是否为0xA5 + if (buff[SOF] == REFEREE_SOF) + { + // 帧头CRC8校验 + if (Verify_CRC8_Check_Sum(buff, LEN_HEADER) == TRUE) + { + // 统计一帧数据长度(byte),用于CR16校验 + judge_length = buff[DATA_LENGTH] + LEN_HEADER + LEN_CMDID + LEN_TAIL; + // 帧尾CRC16校验 + if (Verify_CRC16_Check_Sum(buff, judge_length) == TRUE) + { + // 2个8位拼成16位int + referee_info.CmdID = (buff[6] << 8 | buff[5]); + // 解析数据命令码,将数据拷贝到相应结构体中(注意拷贝数据的长度) + // 第8个字节开始才是数据 data=7 + switch (referee_info.CmdID) + { + case ID_game_state: // 0x0001 + memcpy(&referee_info.GameState, (buff + DATA_Offset), LEN_game_state); + break; + case ID_game_result: // 0x0002 + memcpy(&referee_info.GameResult, (buff + DATA_Offset), LEN_game_result); + break; + case ID_game_robot_survivors: // 0x0003 + memcpy(&referee_info.GameRobotHP, (buff + DATA_Offset), LEN_game_robot_HP); + break; + case ID_event_data: // 0x0101 + memcpy(&referee_info.EventData, (buff + DATA_Offset), LEN_event_data); + break; + case ID_supply_projectile_action: // 0x0102 + memcpy(&referee_info.SupplyProjectileAction, (buff + DATA_Offset), LEN_supply_projectile_action); + break; + case ID_game_robot_state: // 0x0201 + memcpy(&referee_info.GameRobotState, (buff + DATA_Offset), LEN_game_robot_state); + break; + case ID_power_heat_data: // 0x0202 + memcpy(&referee_info.PowerHeatData, (buff + DATA_Offset), LEN_power_heat_data); + break; + case ID_game_robot_pos: // 0x0203 + memcpy(&referee_info.GameRobotPos, (buff + DATA_Offset), LEN_game_robot_pos); + break; + case ID_buff_musk: // 0x0204 + memcpy(&referee_info.BuffMusk, (buff + DATA_Offset), LEN_buff_musk); + break; + case ID_aerial_robot_energy: // 0x0205 + memcpy(&referee_info.AerialRobotEnergy, (buff + DATA_Offset), LEN_aerial_robot_energy); + break; + case ID_robot_hurt: // 0x0206 + memcpy(&referee_info.RobotHurt, (buff + DATA_Offset), LEN_robot_hurt); + break; + case ID_shoot_data: // 0x0207 + memcpy(&referee_info.ShootData, (buff + DATA_Offset), LEN_shoot_data); + break; + case ID_student_interactive: // 0x0301 syhtodo接收代码未测试 + memcpy(&referee_info.ReceiveData, (buff + DATA_Offset), LEN_receive_data); + break; + } + } + } + // 首地址加帧长度,指向CRC16下一字节,用来判断是否为0xA5,从而判断一个数据包是否有多帧数据 + if (*(buff + sizeof(xFrameHeader) + LEN_CMDID + referee_info.FrameHeader.DataLength + LEN_TAIL) == 0xA5) + { // 如果一个数据包出现了多帧数据,则再次调用解析函数,直到所有数据包解析完毕 + JudgeReadData(buff + sizeof(xFrameHeader) + LEN_CMDID + referee_info.FrameHeader.DataLength + LEN_TAIL); + } + } +} + +/*裁判系统串口接收回调函数,解析数据 */ +static void RefereeRxCallback() +{ + DaemonReload(referee_daemon); + JudgeReadData(referee_usart_instance->recv_buff); +} +// 裁判系统丢失回调函数,重新初始化裁判系统串口 +static void RefereeLostCallback(void *arg) +{ + USARTServiceInit(referee_usart_instance); + LOGWARNING("[rm_ref] lost referee data"); +} + +/* 裁判系统通信初始化 */ +referee_info_t *RefereeInit(UART_HandleTypeDef *referee_usart_handle) +{ + USART_Init_Config_s conf; + conf.module_callback = RefereeRxCallback; + conf.usart_handle = referee_usart_handle; + conf.recv_buff_size = RE_RX_BUFFER_SIZE; // mx 255(u8) + referee_usart_instance = USARTRegister(&conf); + + Daemon_Init_Config_s daemon_conf = { + .callback = RefereeLostCallback, + .owner_id = referee_usart_instance, + .reload_count = 30, // 0.3s没有收到数据,则认为丢失,重启串口接收 + }; + referee_daemon = DaemonRegister(&daemon_conf); + + return &referee_info; +} + +/** + * @brief 裁判系统数据发送函数 + * @param + */ +void RefereeSend(uint8_t *send, uint16_t tx_len) +{ + USARTSend(referee_usart_instance, send, tx_len, USART_TRANSFER_DMA); + osDelay(115); +} diff --git a/modules/referee/rm_referee.h b/modules/referee/rm_referee.h new file mode 100644 index 0000000..e935e94 --- /dev/null +++ b/modules/referee/rm_referee.h @@ -0,0 +1,100 @@ +#ifndef RM_REFEREE_H +#define RM_REFEREE_H + +#include "usart.h" +#include "referee_protocol.h" +#include "robot_def.h" +#include "bsp_usart.h" +#include "FreeRTOS.h" + +extern uint8_t UI_Seq; + +#pragma pack(1) +typedef struct +{ + uint8_t Robot_Color; // 机器人颜色 + uint16_t Robot_ID; // 本机器人ID + uint16_t Cilent_ID; // 本机器人对应的客户端ID + uint16_t Receiver_Robot_ID; // 机器人车间通信时接收者的ID,必须和本机器人同颜色 +} referee_id_t; + +// 此结构体包含裁判系统接收数据以及UI绘制与机器人车间通信的相关信息 +typedef struct +{ + referee_id_t referee_id; + + xFrameHeader FrameHeader; // 接收到的帧头信息 + uint16_t CmdID; + ext_game_state_t GameState; // 0x0001 + ext_game_result_t GameResult; // 0x0002 + ext_game_robot_HP_t GameRobotHP; // 0x0003 + ext_event_data_t EventData; // 0x0101 + ext_supply_projectile_action_t SupplyProjectileAction; // 0x0102 + ext_game_robot_state_t GameRobotState; // 0x0201 + ext_power_heat_data_t PowerHeatData; // 0x0202 + ext_game_robot_pos_t GameRobotPos; // 0x0203 + ext_buff_musk_t BuffMusk; // 0x0204 + aerial_robot_energy_t AerialRobotEnergy; // 0x0205 + ext_robot_hurt_t RobotHurt; // 0x0206 + ext_shoot_data_t ShootData; // 0x0207 + + // 自定义交互数据的接收 + Communicate_ReceiveData_t ReceiveData; + + uint8_t init_flag; + +} referee_info_t; + +// 模式是否切换标志位,0为未切换,1为切换,static定义默认为0 +typedef struct +{ + uint32_t chassis_flag : 1; + uint32_t gimbal_flag : 1; + uint32_t shoot_flag : 1; + uint32_t lid_flag : 1; + uint32_t friction_flag : 1; + uint32_t Power_flag : 1; +} Referee_Interactive_Flag_t; + +// 此结构体包含UI绘制与机器人车间通信的需要的其他非裁判系统数据 +typedef struct +{ + Referee_Interactive_Flag_t Referee_Interactive_Flag; + // 为UI绘制以及交互数据所用 + chassis_mode_e chassis_mode; // 底盘模式 + gimbal_mode_e gimbal_mode; // 云台模式 + shoot_mode_e shoot_mode; // 发射模式设置 + friction_mode_e friction_mode; // 摩擦轮关闭 + lid_mode_e lid_mode; // 弹舱盖打开 + Chassis_Power_Data_s Chassis_Power_Data; // 功率控制 + + // 上一次的模式,用于flag判断 + chassis_mode_e chassis_last_mode; + gimbal_mode_e gimbal_last_mode; + shoot_mode_e shoot_last_mode; + friction_mode_e friction_last_mode; + lid_mode_e lid_last_mode; + Chassis_Power_Data_s Chassis_last_Power_Data; + +} Referee_Interactive_info_t; + +#pragma pack() + +/** + * @brief 裁判系统通信初始化,该函数会初始化裁判系统串口,开启中断 + * + * @param referee_usart_handle 串口handle,C板一般用串口6 + * @return referee_info_t* 返回裁判系统反馈的数据,包括热量/血量/状态等 + */ +referee_info_t *RefereeInit(UART_HandleTypeDef *referee_usart_handle); + +/** + * @brief UI绘制和交互数的发送接口,由UI绘制任务和多机通信函数调用 + * @note 内部包含了一个实时系统的延时函数,这是因为裁判系统接收CMD数据至高位10Hz + * + * @param send 发送数据首地址 + * @param tx_len 发送长度 + */ +void RefereeSend(uint8_t *send, uint16_t tx_len); + +#endif // !REFEREE_H diff --git a/modules/remote/remote.md b/modules/remote/remote.md new file mode 100644 index 0000000..e6ac73a --- /dev/null +++ b/modules/remote/remote.md @@ -0,0 +1,85 @@ +remote_control + neozng1@hnu.edu.cn
+``` +/*************************发射机DT7*************************** + * * + * ----------------------------------------------------- * + * | (上-1) (上-1) | * + * |SW_L|(中-3) SW_R|(中-3) | * + * | (下-2) (下-2) | * + * | | * + * | | ^ | | ^ | | * + * | | 3 |左摇杆 右摇杆| 1 | | * + * | --- --- --- --- | * + * |< 2> < 0>| * + * | --- --- --- --- | * + * | | | | | | * + * | | | | | | * + * | | * + * ----------------------------------------------------- * + * * + **************************遥控器信息************************** + *域 通道0 通道1 通道2 通道3 S1 S2 * + *偏移 0 11 22 33 44 46 * + *长度(bit) 11 11 11 11 2 2 * + *符号位 无 无 无 无 无 无 * + *范围 ***********最大值1684********* *最大值3* * + * * 中间值1024 * *最小值1* * + * ***********最小值364********** * + *功能 1:上 1:上 * + * 2:下 2:下 * + * 3:中 3:中 * + * * + ***************************鼠标信息*************************** + *域 鼠标x轴 鼠标y轴 鼠标z轴 鼠标左键 鼠标右键* + *偏移 48 64 80 86 94 * + *长度 16 16 16 8 8 * + *符号位 有 有 有 无 无 * + *范围 ******最大值32767***** ***最大值1*** * + * * 最小值-32768 * ***最小值0*** * + * ******静止值0********* * + *功能 ***鼠标在XYZ轴的移动速度*** *鼠标左右键是否按下* + * * 负值表示往左移动 * * 0:没按下 * + * ***正值表示往右移动******** *****1:按下********* + * * + * * + ***************************键盘信息*************************** + *域 按键 * + *偏移 102 * + *长度 16 * + *符号位 无 * + *范围 位值标识 * + *功能 每个按键对应一个bit * + * Bit 0:W键 * + * Bit 1:S键 * + * Bit 2:A键 * + * Bit 3:D键 * + * Bit 4:Shift键 * + * Bit 5:Ctrl键 * + * Bit 6:Q键 * + * Bit 7:E键 * + * Bit 8:R键 * + * Bit 9:F键 * + * Bit10:G键 * + * Bit11:Z键 * + * Bit12:X键 * + * Bit13:C键 * + * Bit14:V键 * + * Bit15:B键 * + **************************************************************/ +``` + + +目前的映射: + +拨轮向下打到底进入紧急停止模式(后续改为关闭遥控器停止,利用daemon; daemon已经模块完成);拨轮向上打开启摩擦轮,超过一半开始发射(速度环,连发) + +左侧开关: +- 上:键鼠控制 +- 中:视觉控制(没有识别到目标的时候仍然可以使用遥控器控制云台) +- 下:遥控器控制 + +右侧开关: +- 上:弹舱开 +- 中:底盘云台分离(底盘不旋转,全向移动) +- 下:底盘跟随云台 diff --git a/modules/remote/remote_control.c b/modules/remote/remote_control.c new file mode 100644 index 0000000..4035304 --- /dev/null +++ b/modules/remote/remote_control.c @@ -0,0 +1,136 @@ +#include "remote_control.h" +#include "string.h" +#include "bsp_usart.h" +#include "memory.h" +#include "stdlib.h" +#include "daemon.h" +#include "bsp_log.h" + +#define REMOTE_CONTROL_FRAME_SIZE 18u // 遥控器接收的buffer大小 + +// 遥控器数据 +static RC_ctrl_t rc_ctrl[2]; //[0]:当前数据TEMP,[1]:上一次的数据LAST.用于按键持续按下和切换的判断 +static uint8_t rc_init_flag = 0; // 遥控器初始化标志位 + +// 遥控器拥有的串口实例,因为遥控器是单例,所以这里只有一个,就不封装了 +static USARTInstance *rc_usart_instance; +static DaemonInstance *rc_daemon_instance; + +/** + * @brief 矫正遥控器摇杆的值,超过660或者小于-660的值都认为是无效值,置0 + * + */ +static void RectifyRCjoystick() +{ + for (uint8_t i = 0; i < 5; ++i) + if (abs(*(&rc_ctrl[TEMP].rc.rocker_l_ + i)) > 660) + *(&rc_ctrl[TEMP].rc.rocker_l_ + i) = 0; +} + +/** + * @brief 遥控器数据解析 + * + * @param sbus_buf 接收buffer + */ +static void sbus_to_rc(const uint8_t *sbus_buf) +{ + // 摇杆,直接解算时减去偏置 + rc_ctrl[TEMP].rc.rocker_r_ = ((sbus_buf[0] | (sbus_buf[1] << 8)) & 0x07ff) - RC_CH_VALUE_OFFSET; //!< Channel 0 + rc_ctrl[TEMP].rc.rocker_r1 = (((sbus_buf[1] >> 3) | (sbus_buf[2] << 5)) & 0x07ff) - RC_CH_VALUE_OFFSET; //!< Channel 1 + rc_ctrl[TEMP].rc.rocker_l_ = (((sbus_buf[2] >> 6) | (sbus_buf[3] << 2) | (sbus_buf[4] << 10)) & 0x07ff) - RC_CH_VALUE_OFFSET; //!< Channel 2 + rc_ctrl[TEMP].rc.rocker_l1 = (((sbus_buf[4] >> 1) | (sbus_buf[5] << 7)) & 0x07ff) - RC_CH_VALUE_OFFSET; //!< Channel 3 + rc_ctrl[TEMP].rc.dial = ((sbus_buf[16] | (sbus_buf[17] << 8)) & 0x07FF) - RC_CH_VALUE_OFFSET; // 左侧拨轮 + RectifyRCjoystick(); + // 开关,0左1右 + rc_ctrl[TEMP].rc.switch_right = ((sbus_buf[5] >> 4) & 0x0003); //!< Switch right + rc_ctrl[TEMP].rc.switch_left = ((sbus_buf[5] >> 4) & 0x000C) >> 2; //!< Switch left + + // 鼠标解析 + rc_ctrl[TEMP].mouse.x = (sbus_buf[6] | (sbus_buf[7] << 8)); //!< Mouse X axis + rc_ctrl[TEMP].mouse.y = (sbus_buf[8] | (sbus_buf[9] << 8)); //!< Mouse Y axis + rc_ctrl[TEMP].mouse.press_l = sbus_buf[12]; //!< Mouse Left Is Press ? + rc_ctrl[TEMP].mouse.press_r = sbus_buf[13]; //!< Mouse Right Is Press ? + + // 位域的按键值解算,直接memcpy即可,注意小端低字节在前,即lsb在第一位,msb在最后 + *(uint16_t *)&rc_ctrl[TEMP].key[KEY_PRESS] = (uint16_t)(sbus_buf[14] | (sbus_buf[15] << 8)); + if (rc_ctrl[TEMP].key[KEY_PRESS].ctrl) // ctrl键按下 + rc_ctrl[TEMP].key[KEY_PRESS_WITH_CTRL] = rc_ctrl[TEMP].key[KEY_PRESS]; + else + memset(&rc_ctrl[TEMP].key[KEY_PRESS_WITH_CTRL], 0, sizeof(Key_t)); + if (rc_ctrl[TEMP].key[KEY_PRESS].shift) // shift键按下 + rc_ctrl[TEMP].key[KEY_PRESS_WITH_SHIFT] = rc_ctrl[TEMP].key[KEY_PRESS]; + else + memset(&rc_ctrl[TEMP].key[KEY_PRESS_WITH_SHIFT], 0, sizeof(Key_t)); + + uint16_t key_now = rc_ctrl[TEMP].key[KEY_PRESS].keys, // 当前按键是否按下 + key_last = rc_ctrl[LAST].key[KEY_PRESS].keys, // 上一次按键是否按下 + key_with_ctrl = rc_ctrl[TEMP].key[KEY_PRESS_WITH_CTRL].keys, // 当前ctrl组合键是否按下 + key_with_shift = rc_ctrl[TEMP].key[KEY_PRESS_WITH_SHIFT].keys, // 当前shift组合键是否按下 + key_last_with_ctrl = rc_ctrl[LAST].key[KEY_PRESS_WITH_CTRL].keys, // 上一次ctrl组合键是否按下 + key_last_with_shift = rc_ctrl[LAST].key[KEY_PRESS_WITH_SHIFT].keys; // 上一次shift组合键是否按下 + + for (uint16_t i = 0, j = 0x1; i < 16; j <<= 1, i++) + { + if (i == 4 || i == 5) // 4,5位为ctrl和shift,直接跳过 + continue; + // 如果当前按键按下,上一次按键没有按下,且ctrl和shift组合键没有按下,则按键按下计数加1(检测到上升沿) + if ((key_now & j) && !(key_last & j) && !(key_with_ctrl & j) && !(key_with_shift & j)) + rc_ctrl[TEMP].key_count[KEY_PRESS][i]++; + // 当前ctrl组合键按下,上一次ctrl组合键没有按下,则ctrl组合键按下计数加1(检测到上升沿) + if ((key_with_ctrl & j) && !(key_last_with_ctrl & j)) + rc_ctrl[TEMP].key_count[KEY_PRESS_WITH_CTRL][i]++; + // 当前shift组合键按下,上一次shift组合键没有按下,则shift组合键按下计数加1(检测到上升沿) + if ((key_with_shift & j) && !(key_last_with_shift & j)) + rc_ctrl[TEMP].key_count[KEY_PRESS_WITH_SHIFT][i]++; + } + + memcpy(&rc_ctrl[LAST], &rc_ctrl[TEMP], sizeof(RC_ctrl_t)); // 保存上一次的数据,用于按键持续按下和切换的判断 +} + +/** + * @brief 对sbus_to_rc的简单封装,用于注册到bsp_usart的回调函数中 + * + */ +static void RemoteControlRxCallback() +{ + DaemonReload(rc_daemon_instance); // 先喂狗 + sbus_to_rc(rc_usart_instance->recv_buff); // 进行协议解析 +} + +/** + * @brief 遥控器离线的回调函数,注册到守护进程中,串口掉线时调用 + * + */ +static void RCLostCallback(void *id) +{ + memset(rc_ctrl, 0, sizeof(rc_ctrl)); // 清空遥控器数据 + USARTServiceInit(rc_usart_instance); // 尝试重新启动接收 + LOGWARNING("[rc] remote control lost"); +} + +RC_ctrl_t *RemoteControlInit(UART_HandleTypeDef *rc_usart_handle) +{ + USART_Init_Config_s conf; + conf.module_callback = RemoteControlRxCallback; + conf.usart_handle = rc_usart_handle; + conf.recv_buff_size = REMOTE_CONTROL_FRAME_SIZE; + rc_usart_instance = USARTRegister(&conf); + + // 进行守护进程的注册,用于定时检查遥控器是否正常工作 + Daemon_Init_Config_s daemon_conf = { + .reload_count = 10, // 100ms未收到数据视为离线,遥控器的接收频率实际上是1000/14Hz(大约70Hz) + .callback = RCLostCallback, + .owner_id = NULL, // 只有1个遥控器,不需要owner_id + }; + rc_daemon_instance = DaemonRegister(&daemon_conf); + + rc_init_flag = 1; + return rc_ctrl; +} + +uint8_t RemoteControlIsOnline() +{ + if (rc_init_flag) + return DaemonIsOnline(rc_daemon_instance); + return 0; +} \ No newline at end of file diff --git a/modules/remote/remote_control.h b/modules/remote/remote_control.h new file mode 100644 index 0000000..c12f810 --- /dev/null +++ b/modules/remote/remote_control.h @@ -0,0 +1,133 @@ +/** + * @file remote_control.h + * @author DJI 2016 + * @author modified by neozng + * @brief 遥控器模块定义头文件 + * @version beta + * @date 2022-11-01 + * + * @copyright Copyright (c) 2016 DJI corp + * @copyright Copyright (c) 2022 HNU YueLu EC all rights reserved + * + */ +#ifndef REMOTE_CONTROL_H +#define REMOTE_CONTROL_H + +#include+#include "main.h" +#include "usart.h" + +// 用于遥控器数据读取,遥控器数据是一个大小为2的数组 +#define LAST 1 +#define TEMP 0 + +// 获取按键操作 +#define KEY_PRESS 0 +#define KEY_STATE 1 +#define KEY_PRESS_WITH_CTRL 1 +#define KEY_PRESS_WITH_SHIFT 2 + +// 检查接收值是否出错 +#define RC_CH_VALUE_MIN ((uint16_t)364) +#define RC_CH_VALUE_OFFSET ((uint16_t)1024) +#define RC_CH_VALUE_MAX ((uint16_t)1684) + +/* ----------------------- RC Switch Definition----------------------------- */ +#define RC_SW_UP ((uint16_t)1) // 开关向上时的值 +#define RC_SW_MID ((uint16_t)3) // 开关中间时的值 +#define RC_SW_DOWN ((uint16_t)2) // 开关向下时的值 +// 三个判断开关状态的宏 +#define switch_is_down(s) (s == RC_SW_DOWN) +#define switch_is_mid(s) (s == RC_SW_MID) +#define switch_is_up(s) (s == RC_SW_UP) + +/* ----------------------- PC Key Definition-------------------------------- */ +// 对应key[x][0~16],获取对应的键;例如通过key[KEY_PRESS][Key_W]获取W键是否按下,后续改为位域后删除 +#define Key_W 0 +#define Key_S 1 +#define Key_D 2 +#define Key_A 3 +#define Key_Shift 4 +#define Key_Ctrl 5 +#define Key_Q 6 +#define Key_E 7 +#define Key_R 8 +#define Key_F 9 +#define Key_G 10 +#define Key_Z 11 +#define Key_X 12 +#define Key_C 13 +#define Key_V 14 +#define Key_B 15 + +/* ----------------------- Data Struct ------------------------------------- */ +// 待测试的位域结构体,可以极大提升解析速度 +typedef union +{ + struct // 用于访问键盘状态 + { + uint16_t w : 1; + uint16_t s : 1; + uint16_t d : 1; + uint16_t a : 1; + uint16_t shift : 1; + uint16_t ctrl : 1; + uint16_t q : 1; + uint16_t e : 1; + uint16_t r : 1; + uint16_t f : 1; + uint16_t g : 1; + uint16_t z : 1; + uint16_t x : 1; + uint16_t c : 1; + uint16_t v : 1; + uint16_t b : 1; + }; + uint16_t keys; // 用于memcpy而不需要进行强制类型转换 +} Key_t; + +// @todo 当前结构体嵌套过深,需要进行优化 +typedef struct +{ + struct + { + int16_t rocker_l_; // 左水平 + int16_t rocker_l1; // 左竖直 + int16_t rocker_r_; // 右水平 + int16_t rocker_r1; // 右竖直 + int16_t dial; // 侧边拨轮 + + uint8_t switch_left; // 左侧开关 + uint8_t switch_right; // 右侧开关 + } rc; + struct + { + int16_t x; + int16_t y; + uint8_t press_l; + uint8_t press_r; + } mouse; + + Key_t key[3]; // 改为位域后的键盘索引,空间减少8倍,速度增加16~倍 + + uint8_t key_count[3][16]; +} RC_ctrl_t; + +/* ------------------------- Internal Data ----------------------------------- */ + +/** + * @brief 初始化遥控器,该函数会将遥控器注册到串口 + * + * @attention 注意分配正确的串口硬件,遥控器在C板上使用USART3 + * + */ +RC_ctrl_t *RemoteControlInit(UART_HandleTypeDef *rc_usart_handle); + +/** + * @brief 检查遥控器是否在线,若尚未初始化也视为离线 + * + * @return uint8_t 1:在线 0:离线 + */ +uint8_t RemoteControlIsOnline(); + +#endif diff --git a/modules/standard_cmd/standard_cmd.md b/modules/standard_cmd/standard_cmd.md new file mode 100644 index 0000000..010a341 --- /dev/null +++ b/modules/standard_cmd/standard_cmd.md @@ -0,0 +1,16 @@ +# 标准命令 + +这是一个体力活,也是一个艺术品。请把不同的控制命令module进行封装,以转化成标准的消息类型,包括云台角度速度,底盘速度,发射频率是否发射等信息,供RobotCMD应用或其他应用使用。通过这种方式,开发者可以更专注于cmd命令的编写,而不需要为每台机器人/不同的控制器编写命令转换。 + +是否将下面的模块都放到standard_cmd文件夹下?似乎没有必要。 + +## remote control + +## master machine + +## ps handle + +## key and mouse + +## 图传链路 +图传链路的数据解析似乎和键鼠是同一套协议,不过走的是串口,可能需要额外添加支持模块 \ No newline at end of file diff --git a/modules/standard_cmd/std_cmd.c b/modules/standard_cmd/std_cmd.c new file mode 100644 index 0000000..e69de29 diff --git a/modules/standard_cmd/std_cmd.h b/modules/standard_cmd/std_cmd.h new file mode 100644 index 0000000..e69de29 diff --git a/modules/super_cap/super_cap.c b/modules/super_cap/super_cap.c new file mode 100644 index 0000000..eb86749 --- /dev/null +++ b/modules/super_cap/super_cap.c @@ -0,0 +1,44 @@ +/* + * @Descripttion: + * @version: + * @Author: Chenfu + * @Date: 2022-12-02 21:32:47 + * @LastEditTime: 2022-12-05 15:29:49 + */ +#include "super_cap.h" +#include "memory.h" +#include "stdlib.h" + +static SuperCapInstance *super_cap_instance = NULL; // 可以由app保存此指针 + +static void SuperCapRxCallback(CANInstance *_instance) +{ + uint8_t *rxbuff; + SuperCap_Msg_s *Msg; + rxbuff = _instance->rx_buff; + Msg = &super_cap_instance->cap_msg; + Msg->vol = (uint16_t)(rxbuff[0] << 8 | rxbuff[1]); + Msg->current = (uint16_t)(rxbuff[2] << 8 | rxbuff[3]); + Msg->power = (uint16_t)(rxbuff[4] << 8 | rxbuff[5]); +} + +SuperCapInstance *SuperCapInit(SuperCap_Init_Config_s *supercap_config) +{ + super_cap_instance = (SuperCapInstance *)malloc(sizeof(SuperCapInstance)); + memset(super_cap_instance, 0, sizeof(SuperCapInstance)); + + supercap_config->can_config.can_module_callback = SuperCapRxCallback; + super_cap_instance->can_ins = CANRegister(&supercap_config->can_config); + return super_cap_instance; +} + +void SuperCapSend(SuperCapInstance *instance, uint8_t *data) +{ + memcpy(instance->can_ins->tx_buff, data, 8); + CANTransmit(instance->can_ins,1); +} + +SuperCap_Msg_s SuperCapGet(SuperCapInstance *instance) +{ + return instance->cap_msg; +} \ No newline at end of file diff --git a/modules/super_cap/super_cap.h b/modules/super_cap/super_cap.h new file mode 100644 index 0000000..81c5f8e --- /dev/null +++ b/modules/super_cap/super_cap.h @@ -0,0 +1,51 @@ +/* + * @Descripttion: + * @version: + * @Author: Chenfu + * @Date: 2022-12-02 21:32:47 + * @LastEditTime: 2022-12-05 15:25:46 + */ +#ifndef SUPER_CAP_H +#define SUPER_CAP_H + +#include "bsp_can.h" + +#pragma pack(1) +typedef struct +{ + uint16_t vol; // 电压 + uint16_t current; // 电流 + uint16_t power; // 功率 +} SuperCap_Msg_s; +#pragma pack() + +/* 超级电容实例 */ +typedef struct +{ + CANInstance *can_ins; // CAN实例 + SuperCap_Msg_s cap_msg; // 超级电容信息 +} SuperCapInstance; + +/* 超级电容初始化配置 */ +typedef struct +{ + CAN_Init_Config_s can_config; +} SuperCap_Init_Config_s; + +/** + * @brief 初始化超级电容 + * + * @param supercap_config 超级电容初始化配置 + * @return SuperCapInstance* 超级电容实例指针 + */ +SuperCapInstance *SuperCapInit(SuperCap_Init_Config_s *supercap_config); + +/** + * @brief 发送超级电容控制信息 + * + * @param instance 超级电容实例 + * @param data 超级电容控制信息 + */ +void SuperCapSend(SuperCapInstance *instance, uint8_t *data); + +#endif // !SUPER_CAP_Hd diff --git a/modules/super_cap/super_cap.md b/modules/super_cap/super_cap.md new file mode 100644 index 0000000..5f70f63 --- /dev/null +++ b/modules/super_cap/super_cap.md @@ -0,0 +1,54 @@ + +# super_can + +## 代码结构 + +.h中放置的是数据定义和外部接口,以及协议的定义和宏,.c中包含一些私有函数。 + +## 外部接口 + +```c +SuperCapInstance *SuperCapInit(SuperCap_Init_Config_s* supercap_config); +void SuperCapSend(SuperCapInstance *instance, uint8_t *data); +``` +## 私有函数和变量 + +```c +static SuperCapInstance *super_cap_instance = NULL; +static uint8_t *rxbuff; +static void SuperCapRxCallback(can_instance *_instance) +``` + +`SuperCapRxCallback()`是super cap初始化can实例时的回调函数,用于can接收中断,进行协议解析。 + +## 使用范例 + +初始化时设置如下: + +```c +SuperCap_Init_Config_s capconfig = { + .can_config = { + .can_handle = &hcan1, + .rx_id = 0x301, + .tx_id = 0x302 + }, + .recv_data_len = 4*sizeof(uint16_t), + .send_data_len = sizeof(uint8_t) + }; +SuperCapInstance *ins =SuperCapInit(&capconfig); +``` + + +发送通过`SuperCapSend()`,建议使用强制类型转换: + +```c +uint16_t tx = 0x321; +SuperCapSend(ins, (uint8_t*)&tx); +``` + diff --git a/modules/unicomm/unicomm.c b/modules/unicomm/unicomm.c new file mode 100644 index 0000000..e69de29 diff --git a/modules/unicomm/unicomm.h b/modules/unicomm/unicomm.h new file mode 100644 index 0000000..e69de29 diff --git a/modules/unicomm/unicomm.md b/modules/unicomm/unicomm.md new file mode 100644 index 0000000..0a46e46 --- /dev/null +++ b/modules/unicomm/unicomm.md @@ -0,0 +1,9 @@ +# univsersal communication + +@todo + +unicomm旨在为通信提供一套标准的协议接口,屏蔽底层的硬件差异,使得上层应用可以定制通信协议,包括包长度/可变帧长/帧头尾/校验方式等。 + +不论底层具体使用的是什么硬件接口,实际上每一帧传输完并把数据放在缓冲区之后,就没有任何区别了。 此模块实际上就是对缓冲区的rawdata进行操作,包括查找帧头,计算包长度,校验错误等。 + +完成之后,可以将module/can_comm、视觉的通信协议seasky_protocol和master_process等移除,把原使用了cancomm的应用迁移到此模块。 diff --git a/modules/vofa/vofa.c b/modules/vofa/vofa.c new file mode 100644 index 0000000..9ae72d6 --- /dev/null +++ b/modules/vofa/vofa.c @@ -0,0 +1,35 @@ +/* + * @Descripttion: + * @version: + * @Author: Chenfu + * @Date: 2022-12-05 12:39:07 + * @LastEditTime: 2022-12-05 14:15:53 + */ +#include "vofa.h" +#include "usbd_cdc_if.h" + +/*VOFA浮点协议*/ +void vofa_justfloat_output(float *data, uint8_t num , UART_HandleTypeDef *huart ) +{ + static uint8_t i = 0; + send_float temp[num]; //定义缓冲区数组 + uint8_t send_data[4 * num + 4]; //定义通过串口传出去的数组,数量是所传数据的字节数加上4个字节的尾巴 + for (i = 0; i < num; i++) + { + temp[i].float_t = data[i]; //将所传数据移到缓冲区数组 + } + for (i = 0; i < num; i++) + { + send_data[4 * i] = temp[i].uint8_t[0]; + send_data[4 * i + 1] = temp[i].uint8_t[1]; + send_data[4 * i + 2] = temp[i].uint8_t[2]; + send_data[4 * i + 3] = temp[i].uint8_t[3]; //将缓冲区数组内的浮点型数据转成4个字节的无符号整型,之后传到要通过串口传出的数组里 + } + send_data[4 * num] = 0x00; + send_data[4 * num + 1] = 0x00; + send_data[4 * num + 2] = 0x80; + send_data[4 * num + 3] = 0x7f; //加上协议要求的4个尾巴 + + HAL_UART_Transmit(huart, (uint8_t *)send_data, 4 * num + 4, 100); + //CDC_Transmit_FS((uint8_t *)send_data,4 * num + 4); +} diff --git a/modules/vofa/vofa.h b/modules/vofa/vofa.h new file mode 100644 index 0000000..a6c9dd3 --- /dev/null +++ b/modules/vofa/vofa.h @@ -0,0 +1,21 @@ +/* + * @Descripttion: + * @version: + * @Author: Chenfu + * @Date: 2022-12-05 12:39:18 + * @LastEditTime: 2022-12-05 13:37:36 + */ +#ifndef VOFA_H +#define VOFA_H +#include +#include "bsp_usart.h" +#include "usart.h" + +typedef union +{ + float float_t; + uint8_t uint8_t[4]; +} send_float; +void vofa_justfloat_output(float *data, uint8_t num , UART_HandleTypeDef *huart); + +#endif // !1#define \ No newline at end of file diff --git a/modules/vofa/vofa.md b/modules/vofa/vofa.md new file mode 100644 index 0000000..8782609 --- /dev/null +++ b/modules/vofa/vofa.md @@ -0,0 +1,3 @@ +# vofa + +**除非迫不得已,否则强烈不推荐使用vofa进行调试。应通过bsp_log输出日志,或使用ozone可视化。** \ No newline at end of file diff --git a/xiaoshi.jdebug.user b/xiaoshi.jdebug.user new file mode 100644 index 0000000..669ec91 --- /dev/null +++ b/xiaoshi.jdebug.user @@ -0,0 +1,31 @@ + +GraphedExpression="(((pitch_motor)->motor_controller).speed_PID).Ref", Color=#a00909 +GraphedExpression="(((pitch_motor)->motor_controller).speed_PID).Measure", Color=#09a01b +OpenDocument="main.c", FilePath="D:/zhandui/cqdm/basic_framework/Src/main.c", Line=64 +OpenDocument="tasks.c", FilePath="D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c", Line=3623 +OpenDocument="controller.h", FilePath="D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h", Line=48 +OpenDocument="robot_def.h", FilePath="D:/zhandui/cqdm/basic_framework/application/robot_def.h", Line=9 +OpenDocument="chassis.c", FilePath="D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c", Line=0 +OpenDocument="gimbal.c", FilePath="D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c", Line=141 +OpenDocument="startup_stm32f407ighx.s", FilePath="D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s", Line=46 +OpenToolbar="Debug", Floating=0, x=0, y=0 +OpenWindow="Source Files", DockArea=LEFT, x=0, y=0, w=651, h=492, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Memory 1", DockArea=BOTTOM, x=2, y=0, w=831, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0, EditorAddress=0x30A3D700 +OpenWindow="Watched Data 1", DockArea=LEFT, x=0, y=1, w=651, h=600, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Data Sampling", DockArea=BOTTOM, x=1, y=0, w=615, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0, VisibleTab=0, UniformSampleSpacing=0 +OpenWindow="Timeline", DockArea=RIGHT, x=0, y=0, w=1153, h=1093, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=1, DataPaneShown=1, PowerPaneShown=0, CodePaneShown=0, PinCursor="Cursor Movable", TimePerDiv="2 s / Div", TimeStampFormat="Time", DataGraphDrawAsPoints=0, DataGraphLegendShown=0, DataGraphUniformSampleSpacing=0, DataGraphLegendPosition="0;833", PowerGraphDrawAsPoints=0, PowerGraphLegendShown=0, PowerGraphAvgFilterTime=Off, PowerGraphAvgFilterLen=Off, PowerGraphUniformSampleSpacing=0, PowerGraphLegendPosition="926;0", CodeGraphLegendShown=0, CodeGraphLegendPosition="942;0" +OpenWindow="Console", DockArea=BOTTOM, x=0, y=0, w=1112, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +TableHeader="Source Files", SortCol="File", SortOrder="ASCENDING", VisibleCols=["File";"Status";"Size";"#Insts";"Path"], ColWidths=[263;100;100;100;950] +TableHeader="Data Sampling Table", SortCol="None", SortOrder="ASCENDING", VisibleCols=["Index";"Time";" (((pitch_motor)->motor_controller).speed_PID).Ref";" (((pitch_motor)->motor_controller).speed_PID).Measure"], ColWidths=[100;100;100;289] +TableHeader="Data Sampling Setup", SortCol="Expression", SortOrder="ASCENDING", VisibleCols=["Expression";"Type";"Value";"Min";"Max";"Average";"# Changes";"Min. Change";"Max. Change"], ColWidths=[438;100;154;124;114;164;110;126;126] +TableHeader="Power Sampling", SortCol="Index", SortOrder="ASCENDING", VisibleCols=["Index";"Time";"Ch 0"], ColWidths=[100;100;100] +TableHeader="Task List", SortCol="Name", SortOrder="ASCENDING", VisibleCols=["Name";"Run Count";"Priority";"Status";"Timeout";"Stack Info (Free / Size)";"ID";"Mutex Count";"Notified Value";"Notify State"], ColWidths=[110;110;110;110;110;110;110;110;110;110] +TableHeader="Watched Data 1", SortCol="Expression", SortOrder="ASCENDING", VisibleCols=["Expression";"Value";"Location";"Refresh"], ColWidths=[238;100;104;183] +TableHeader="RegisterSelectionDialog", SortCol="None", SortOrder="ASCENDING", VisibleCols=[], ColWidths=[] +TableHeader="TargetExceptionDialog", SortCol="Name", SortOrder="ASCENDING", VisibleCols=["Name";"Value";"Address";"Description"], ColWidths=[26;26;26;26] +WatchedExpression="pitch_motor", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="yaw_motor", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="YAW_CHASSIS_ALIGN_ECD", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="gimba_IMU_data", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="gravity_current", Window=Watched Data 1 +WatchedExpression="motor_rf", RefreshRate=5, Window=Watched Data 1 \ No newline at end of file diff --git a/xs.jdebug b/xs.jdebug new file mode 100644 index 0000000..4094851 --- /dev/null +++ b/xs.jdebug @@ -0,0 +1,350 @@ +/********************************************************************* +* (c) SEGGER Microcontroller GmbH * +* The Embedded Experts * +* www.segger.com * +********************************************************************** + +File : D:/zhandui/cqdm/basic_framework/xs.jdebug +Created : 20 Mar 2024 21:43 +Ozone Version : V3.32a +*/ + +/********************************************************************* +* +* OnProjectLoad +* +* Function description +* Project load routine. Required. +* +********************************************************************** +*/ +void OnProjectLoad (void) { + // + // Dialog-generated settings + // + Project.SetDevice ("STM32F407IG"); + Project.SetHostIF ("USB", "17935099"); + Project.SetTargetIF ("SWD"); + Project.SetTIFSpeed ("4 MHz"); + Project.AddPathSubstitute ("D:/zhandui/cqdm/basic_framework", "$(ProjectDir)"); + Project.AddPathSubstitute ("d:/zhandui/cqdm/basic_framework", "$(ProjectDir)"); + Project.AddSvdFile ("$(InstallDir)/Config/CPU/Cortex-M4F.svd"); + Project.AddSvdFile ("D:/Ozone/Ozone/Config/Peripherals/STM32F407IG.svd"); + // + // User settings + // + Edit.SysVar (VAR_HSS_SPEED, FREQ_500_HZ); + File.Open ("$(ProjectDir)/cmake-build-debug/basic_framework.elf"); +} + +/********************************************************************* +* +* OnStartupComplete +* +* Function description +* Called when program execution has reached/passed +* the startup completion point. Optional. +* +********************************************************************** +*/ +//void OnStartupComplete (void) { +//} + +/********************************************************************* +* +* TargetReset +* +* Function description +* Replaces the default target device reset routine. Optional. +* +* Notes +* This example demonstrates the usage when +* debugging an application in RAM on a Cortex-M target device. +* +********************************************************************** +*/ +//void TargetReset (void) { +// +// unsigned int SP; +// unsigned int PC; +// unsigned int VectorTableAddr; +// +// VectorTableAddr = Elf.GetBaseAddr(); +// // +// // Set up initial stack pointer +// // +// if (VectorTableAddr != 0xFFFFFFFF) { +// SP = Target.ReadU32(VectorTableAddr); +// Target.SetReg("SP", SP); +// } +// // +// // Set up entry point PC +// // +// PC = Elf.GetEntryPointPC(); +// +// if (PC != 0xFFFFFFFF) { +// Target.SetReg("PC", PC); +// } else if (VectorTableAddr != 0xFFFFFFFF) { +// PC = Target.ReadU32(VectorTableAddr + 4); +// Target.SetReg("PC", PC); +// } else { +// Util.Error("Project file error: failed to set entry point PC", 1); +// } +//} + +/********************************************************************* +* +* BeforeTargetReset +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void BeforeTargetReset (void) { +//} + +/********************************************************************* +* +* AfterTargetReset +* +* Function description +* Event handler routine. Optional. +* The default implementation initializes SP and PC to reset values. +** +********************************************************************** +*/ +void AfterTargetReset (void) { + _SetupTarget(); +} + +/********************************************************************* +* +* DebugStart +* +* Function description +* Replaces the default debug session startup routine. Optional. +* +********************************************************************** +*/ +//void DebugStart (void) { +//} + +/********************************************************************* +* +* TargetConnect +* +* Function description +* Replaces the default target IF connection routine. Optional. +* +********************************************************************** +*/ +//void TargetConnect (void) { +//} + +/********************************************************************* +* +* BeforeTargetConnect +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void BeforeTargetConnect (void) { +//} + +/********************************************************************* +* +* AfterTargetConnect +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void AfterTargetConnect (void) { +//} + +/********************************************************************* +* +* TargetDownload +* +* Function description +* Replaces the default program download routine. Optional. +* +********************************************************************** +*/ +//void TargetDownload (void) { +//} + +/********************************************************************* +* +* BeforeTargetDownload +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void BeforeTargetDownload (void) { +//} + +/********************************************************************* +* +* AfterTargetDownload +* +* Function description +* Event handler routine. Optional. +* The default implementation initializes SP and PC to reset values. +* +********************************************************************** +*/ +void AfterTargetDownload (void) { + _SetupTarget(); +} + +/********************************************************************* +* +* BeforeTargetDisconnect +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void BeforeTargetDisconnect (void) { +//} + +/********************************************************************* +* +* AfterTargetDisconnect +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void AfterTargetDisconnect (void) { +//} + +/********************************************************************* +* +* AfterTargetHalt +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void AfterTargetHalt (void) { +//} + +/********************************************************************* +* +* BeforeTargetResume +* +* Function description +* Event handler routine. Optional. +* +********************************************************************** +*/ +//void BeforeTargetResume (void) { +//} + +/********************************************************************* +* +* OnSnapshotLoad +* +* Function description +* Called upon loading a snapshot. Optional. +* +* Additional information +* This function is used to restore the target state in cases +* where values cannot simply be written to the target. +* Typical use: GPIO clock needs to be enabled, before +* GPIO is configured. +* +********************************************************************** +*/ +//void OnSnapshotLoad (void) { +//} + +/********************************************************************* +* +* OnSnapshotSave +* +* Function description +* Called upon saving a snapshot. Optional. +* +* Additional information +* This function is usually used to save values of the target +* state which can either not be trivially read, +* or need to be restored in a specific way or order. +* Typically use: Memory Mapped Registers, +* such as PLL and GPIO configuration. +* +********************************************************************** +*/ +//void OnSnapshotSave (void) { +//} + +/********************************************************************* +* +* OnError +* +* Function description +* Called when an error ocurred. Optional. +* +********************************************************************** +*/ +//void OnError (void) { +//} + +/********************************************************************* +* +* AfterProjectLoad +* +* Function description +* After Project load routine. Optional. +* +********************************************************************** +*/ +//void AfterProjectLoad (void) { +//} + +/********************************************************************* +* +* _SetupTarget +* +* Function description +* Setup the target. +* Called by AfterTargetReset() and AfterTargetDownload(). +* +* Auto-generated function. May be overridden by Ozone. +* +********************************************************************** +*/ +void _SetupTarget(void) { + unsigned int SP; + unsigned int PC; + unsigned int VectorTableAddr; + + VectorTableAddr = Elf.GetBaseAddr(); + // + // Set up initial stack pointer + // + SP = Target.ReadU32(VectorTableAddr); + if (SP != 0xFFFFFFFF) { + Target.SetReg("SP", SP); + } + // + // Set up entry point PC + // + PC = Elf.GetEntryPointPC(); + if (PC != 0xFFFFFFFF) { + Target.SetReg("PC", PC); + } else { + Util.Error("Project script error: failed to set up entry point PC", 1); + } +} \ No newline at end of file diff --git a/xs.jdebug.user b/xs.jdebug.user new file mode 100644 index 0000000..18ab128 --- /dev/null +++ b/xs.jdebug.user @@ -0,0 +1,32 @@ + + +OpenDocument="main.c", FilePath="D:/zhandui/cqdm/basic_framework/Src/main.c", Line=64 +OpenDocument="bsp_dwt.c", FilePath="D:/zhandui/cqdm/basic_framework/bsp/dwt/bsp_dwt.c", Line=79 +OpenDocument="startup_stm32f407ighx.s", FilePath="D:/zhandui/cqdm/basic_framework/Startup/startup_stm32f407ighx.s", Line=46 +OpenDocument="stm32f4xx_it.c", FilePath="D:/zhandui/cqdm/basic_framework/Src/stm32f4xx_it.c", Line=102 +OpenDocument="controller.c", FilePath="D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.c", Line=133 +OpenDocument="controller.h", FilePath="D:/zhandui/cqdm/basic_framework/modules/algorithm/controller.h", Line=42 +OpenDocument="SEGGER_RTT.c", FilePath="D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/SEGGER/RTT/SEGGER_RTT.c", Line=1181 +OpenDocument="gimbal.c", FilePath="D:/zhandui/cqdm/basic_framework/application/gimbal/gimbal.c", Line=105 +OpenDocument="chassis.c", FilePath="D:/zhandui/cqdm/basic_framework/application/chassis/chassis.c", Line=51 +OpenDocument="tasks.c", FilePath="D:/zhandui/cqdm/basic_framework/Middlewares/Third_Party/FreeRTOS/Source/tasks.c", Line=3394 +OpenToolbar="Debug", Floating=0, x=0, y=0 +OpenWindow="Source Files", DockArea=LEFT, x=0, y=0, w=651, h=534, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Disassembly", DockArea=RIGHT, x=0, y=0, w=1649, h=158, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Memory 1", DockArea=BOTTOM, x=3, y=0, w=929, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0, EditorAddress=0x30A3D70C +OpenWindow="Watched Data 1", DockArea=LEFT, x=0, y=1, w=651, h=558, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Terminal", DockArea=BOTTOM, x=0, y=0, w=645, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +OpenWindow="Data Sampling", DockArea=BOTTOM, x=2, y=0, w=379, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0, VisibleTab=0, UniformSampleSpacing=0 +OpenWindow="Timeline", DockArea=RIGHT, x=0, y=1, w=1649, h=934, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=1, DataPaneShown=1, PowerPaneShown=0, CodePaneShown=0, PinCursor="Cursor Movable", TimePerDiv="2 s / Div", TimeStampFormat="Time", DataGraphDrawAsPoints=0, DataGraphLegendShown=1, DataGraphUniformSampleSpacing=0, DataGraphLegendPosition="0;0", DataGraphShowNamesAtCursor=0, PowerGraphDrawAsPoints=0, PowerGraphLegendShown=0, PowerGraphAvgFilterTime=Off, PowerGraphAvgFilterLen=Off, PowerGraphUniformSampleSpacing=0, PowerGraphLegendPosition="1422;-71", CodeGraphLegendShown=0, CodeGraphLegendPosition="1438;0" +OpenWindow="Console", DockArea=BOTTOM, x=1, y=0, w=604, h=328, FilterBarShown=0, TotalValueBarShown=0, ToolBarShown=0 +SmartViewPlugin="", Page="", Toolbar="Hidden", Window="SmartView 1" +TableHeader="Source Files", SortCol="File", SortOrder="ASCENDING", VisibleCols=["File";"Status";"Size";"#Insts";"Path"], ColWidths=[263;100;100;100;950] +TableHeader="Data Sampling Table", SortCol="None", SortOrder="ASCENDING", VisibleCols=["Index";"Time"], ColWidths=[100;100] +TableHeader="Data Sampling Setup", SortCol="Expression", SortOrder="ASCENDING", VisibleCols=["Expression";"Type";"Value";"Min";"Max";"Average";"# Changes";"Min. Change";"Max. Change"], ColWidths=[438;100;100;100;100;100;110;126;126] +TableHeader="Power Sampling", SortCol="None", SortOrder="ASCENDING", VisibleCols=["Index";"Time";"Ch 0"], ColWidths=[100;100;100] +TableHeader="Watched Data 1", SortCol="Expression", SortOrder="ASCENDING", VisibleCols=["Expression";"Value";"Location";"Refresh"], ColWidths=[238;100;104;183] +TableHeader="RegisterSelectionDialog", SortCol="None", SortOrder="ASCENDING", VisibleCols=[], ColWidths=[] +TableHeader="TargetExceptionDialog", SortCol="Name", SortOrder="ASCENDING", VisibleCols=["Name";"Value";"Address";"Description"], ColWidths=[27;27;27;685] +WatchedExpression="yaw_motor", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="pitch_motor", RefreshRate=2, Window=Watched Data 1 +WatchedExpression="motor_rf", RefreshRate=2, Window=Watched Data 1 \ No newline at end of file