I bought a MAX32655-FTHR in August of last year, thinking to use it in LE Audio transmission, but I ended up to giving up. However, now I want to use it as a LE peripheral, but I can't get the Bluetooth examples to run in the MSDK latest version. I tested all BT applications in the MAX32655 folder, having configured the board as "BOARD = FTHR_Apps_P1" in project.mk.
In all examples it hangs in exactly the same place (in fact it seems to enter an infinite loop, as it does not return any message or the debugger reports a crash): Baseband (BB) initialization, in the PalBBInit function. Debugging (through disassembly), it always hangs on the dbb_intc_enable and NVIC_EnableIRQ function of the Cordio Library. I tested with different BT_VER, USE_DUAL_CORE=1 and BLE_CONTROLLER=1 settings (I got a compilation error when I use USE_DUAL_CORE=1 and BLE_CONTROLLER=0). I'm using Eclipse as the IDE, but I also tested with Visual Studio and the command line, always having the same result at the same point.
Bellow,I attached the MSDK installation log, the Build log, the "project.mk" and the "project_defines.h" generated in the build folder.
Thanks in advance.
project.dk ********************************************************************* # Enable Cordio library LIB_CORDIO = 1 # Cordio library options INIT_PERIPHERAL = 1 INIT_CENTRAL = 0 # There is no FTHR_RevA board option. BOARD = FTHR_Apps_P1 # LL_VER_BT_CORE_SPEC (default 5.0 = 9) # 4.0 = 6; 4.1 = 7; 4.2 = 8; 5.0 = 9; # 5.1 = 10; 5.2 = 11; SYDNEY = 12 BT_VER = 9 # TRACE option # Set to 0 to disable # Set to 1 to enable serial port trace messages # Set to 2 to enable verbose messages TRACE = 1 #DEBUG = 1 #VERBOSE = 0 USE_DUAL_CORE ?= 0 ifeq "$(USE_DUAL_CORE)" "1" BLE_HOST = 1 BLE_CONTROLLER = 0 endif
project_defines.h at build folder ***************************************************************** // This is a generated file that's used to detect definitions that have been set by the compiler and build system. #define __STDC__ 1 #define __STDC_VERSION__ 201710L #define __STDC_UTF_16__ 1 #define __STDC_UTF_32__ 1 #define __STDC_HOSTED__ 1 #define __GNUC__ 10 #define __GNUC_MINOR__ 3 #define __GNUC_PATCHLEVEL__ 1 #define __VERSION__ "10.3.1 20210824 (release)" #define __ATOMIC_RELAXED 0 #define __ATOMIC_SEQ_CST 5 #define __ATOMIC_ACQUIRE 2 #define __ATOMIC_RELEASE 3 #define __ATOMIC_ACQ_REL 4 #define __ATOMIC_CONSUME 1 #define __OPTIMIZE__ 1 #define __FINITE_MATH_ONLY__ 0 #define __SIZEOF_INT__ 4 #define __SIZEOF_LONG__ 4 #define __SIZEOF_LONG_LONG__ 8 #define __SIZEOF_SHORT__ 2 #define __SIZEOF_FLOAT__ 4 #define __SIZEOF_DOUBLE__ 8 #define __SIZEOF_LONG_DOUBLE__ 8 #define __SIZEOF_SIZE_T__ 4 #define __CHAR_BIT__ 8 #define __BIGGEST_ALIGNMENT__ 8 #define __ORDER_LITTLE_ENDIAN__ 1234 #define __ORDER_BIG_ENDIAN__ 4321 #define __ORDER_PDP_ENDIAN__ 3412 #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __SIZEOF_POINTER__ 4 #define __SIZE_TYPE__ unsigned int #define __PTRDIFF_TYPE__ int #define __WCHAR_TYPE__ unsigned int #define __WINT_TYPE__ unsigned int #define __INTMAX_TYPE__ long long int #define __UINTMAX_TYPE__ long long unsigned int #define __CHAR16_TYPE__ short unsigned int #define __CHAR32_TYPE__ long unsigned int #define __SIG_ATOMIC_TYPE__ int #define __INT8_TYPE__ signed char #define __INT16_TYPE__ short int #define __INT32_TYPE__ long int #define __INT64_TYPE__ long long int #define __UINT8_TYPE__ unsigned char #define __UINT16_TYPE__ short unsigned int #define __UINT32_TYPE__ long unsigned int #define __UINT64_TYPE__ long long unsigned int #define __INT_LEAST8_TYPE__ signed char #define __INT_LEAST16_TYPE__ short int #define __INT_LEAST32_TYPE__ long int #define __INT_LEAST64_TYPE__ long long int #define __UINT_LEAST8_TYPE__ unsigned char #define __UINT_LEAST16_TYPE__ short unsigned int #define __UINT_LEAST32_TYPE__ long unsigned int #define __UINT_LEAST64_TYPE__ long long unsigned int #define __INT_FAST8_TYPE__ int #define __INT_FAST16_TYPE__ int #define __INT_FAST32_TYPE__ int #define __INT_FAST64_TYPE__ long long int #define __UINT_FAST8_TYPE__ unsigned int #define __UINT_FAST16_TYPE__ unsigned int #define __UINT_FAST32_TYPE__ unsigned int #define __UINT_FAST64_TYPE__ long long unsigned int #define __INTPTR_TYPE__ int #define __UINTPTR_TYPE__ unsigned int #define __GXX_ABI_VERSION 1014 #define __SCHAR_MAX__ 0x7f #define __SHRT_MAX__ 0x7fff #define __INT_MAX__ 0x7fffffff #define __LONG_MAX__ 0x7fffffffL #define __LONG_LONG_MAX__ 0x7fffffffffffffffLL #define __WCHAR_MAX__ 0xffffffffU #define __WCHAR_MIN__ 0U #define __WINT_MAX__ 0xffffffffU #define __WINT_MIN__ 0U #define __PTRDIFF_MAX__ 0x7fffffff #define __SIZE_MAX__ 0xffffffffU #define __SCHAR_WIDTH__ 8 #define __SHRT_WIDTH__ 16 #define __INT_WIDTH__ 32 #define __LONG_WIDTH__ 32 #define __LONG_LONG_WIDTH__ 64 #define __WCHAR_WIDTH__ 32 #define __WINT_WIDTH__ 32 #define __PTRDIFF_WIDTH__ 32 #define __SIZE_WIDTH__ 32 #define __INTMAX_MAX__ 0x7fffffffffffffffLL #define __INTMAX_C(c) c ## LL #define __UINTMAX_MAX__ 0xffffffffffffffffULL #define __UINTMAX_C(c) c ## ULL #define __INTMAX_WIDTH__ 64 #define __SIG_ATOMIC_MAX__ 0x7fffffff #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) #define __SIG_ATOMIC_WIDTH__ 32 #define __INT8_MAX__ 0x7f #define __INT16_MAX__ 0x7fff #define __INT32_MAX__ 0x7fffffffL #define __INT64_MAX__ 0x7fffffffffffffffLL #define __UINT8_MAX__ 0xff #define __UINT16_MAX__ 0xffff #define __UINT32_MAX__ 0xffffffffUL #define __UINT64_MAX__ 0xffffffffffffffffULL #define __INT_LEAST8_MAX__ 0x7f #define __INT8_C(c) c #define __INT_LEAST8_WIDTH__ 8 #define __INT_LEAST16_MAX__ 0x7fff #define __INT16_C(c) c #define __INT_LEAST16_WIDTH__ 16 #define __INT_LEAST32_MAX__ 0x7fffffffL #define __INT32_C(c) c ## L #define __INT_LEAST32_WIDTH__ 32 #define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL #define __INT64_C(c) c ## LL #define __INT_LEAST64_WIDTH__ 64 #define __UINT_LEAST8_MAX__ 0xff #define __UINT8_C(c) c #define __UINT_LEAST16_MAX__ 0xffff #define __UINT16_C(c) c #define __UINT_LEAST32_MAX__ 0xffffffffUL #define __UINT32_C(c) c ## UL #define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL #define __UINT64_C(c) c ## ULL #define __INT_FAST8_MAX__ 0x7fffffff #define __INT_FAST8_WIDTH__ 32 #define __INT_FAST16_MAX__ 0x7fffffff #define __INT_FAST16_WIDTH__ 32 #define __INT_FAST32_MAX__ 0x7fffffff #define __INT_FAST32_WIDTH__ 32 #define __INT_FAST64_MAX__ 0x7fffffffffffffffLL #define __INT_FAST64_WIDTH__ 64 #define __UINT_FAST8_MAX__ 0xffffffffU #define __UINT_FAST16_MAX__ 0xffffffffU #define __UINT_FAST32_MAX__ 0xffffffffU #define __UINT_FAST64_MAX__ 0xffffffffffffffffULL #define __INTPTR_MAX__ 0x7fffffff #define __INTPTR_WIDTH__ 32 #define __UINTPTR_MAX__ 0xffffffffU #define __GCC_IEC_559 0 #define __GCC_IEC_559_COMPLEX 0 #define __FLT_EVAL_METHOD__ 0 #define __FLT_EVAL_METHOD_TS_18661_3__ 0 #define __DEC_EVAL_METHOD__ 2 #define __FLT_RADIX__ 2 #define __FLT_MANT_DIG__ 24 #define __FLT_DIG__ 6 #define __FLT_MIN_EXP__ (-125) #define __FLT_MIN_10_EXP__ (-37) #define __FLT_MAX_EXP__ 128 #define __FLT_MAX_10_EXP__ 38 #define __FLT_DECIMAL_DIG__ 9 #define __FLT_MAX__ 3.4028234663852886e+38F #define __FLT_NORM_MAX__ 3.4028234663852886e+38F #define __FLT_MIN__ 1.1754943508222875e-38F #define __FLT_EPSILON__ 1.1920928955078125e-7F #define __FLT_DENORM_MIN__ 1.4012984643248171e-45F #define __FLT_HAS_DENORM__ 1 #define __FLT_HAS_INFINITY__ 1 #define __FLT_HAS_QUIET_NAN__ 1 #define __FP_FAST_FMAF 1 #define __DBL_MANT_DIG__ 53 #define __DBL_DIG__ 15 #define __DBL_MIN_EXP__ (-1021) #define __DBL_MIN_10_EXP__ (-307) #define __DBL_MAX_EXP__ 1024 #define __DBL_MAX_10_EXP__ 308 #define __DBL_DECIMAL_DIG__ 17 #define __DBL_MAX__ ((double)1.7976931348623157e+308L) #define __DBL_NORM_MAX__ ((double)1.7976931348623157e+308L) #define __DBL_MIN__ ((double)2.2250738585072014e-308L) #define __DBL_EPSILON__ ((double)2.2204460492503131e-16L) #define __DBL_DENORM_MIN__ ((double)4.9406564584124654e-324L) #define __DBL_HAS_DENORM__ 1 #define __DBL_HAS_INFINITY__ 1 #define __DBL_HAS_QUIET_NAN__ 1 #define __LDBL_MANT_DIG__ 53 #define __LDBL_DIG__ 15 #define __LDBL_MIN_EXP__ (-1021) #define __LDBL_MIN_10_EXP__ (-307) #define __LDBL_MAX_EXP__ 1024 #define __LDBL_MAX_10_EXP__ 308 #define __DECIMAL_DIG__ 17 #define __LDBL_DECIMAL_DIG__ 17 #define __LDBL_MAX__ 1.7976931348623157e+308L #define __LDBL_NORM_MAX__ 1.7976931348623157e+308L #define __LDBL_MIN__ 2.2250738585072014e-308L #define __LDBL_EPSILON__ 2.2204460492503131e-16L #define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L #define __LDBL_HAS_DENORM__ 1 #define __LDBL_HAS_INFINITY__ 1 #define __LDBL_HAS_QUIET_NAN__ 1 #define __FLT32_MANT_DIG__ 24 #define __FLT32_DIG__ 6 #define __FLT32_MIN_EXP__ (-125) #define __FLT32_MIN_10_EXP__ (-37) #define __FLT32_MAX_EXP__ 128 #define __FLT32_MAX_10_EXP__ 38 #define __FLT32_DECIMAL_DIG__ 9 #define __FLT32_MAX__ 3.4028234663852886e+38F32 #define __FLT32_NORM_MAX__ 3.4028234663852886e+38F32 #define __FLT32_MIN__ 1.1754943508222875e-38F32 #define __FLT32_EPSILON__ 1.1920928955078125e-7F32 #define __FLT32_DENORM_MIN__ 1.4012984643248171e-45F32 #define __FLT32_HAS_DENORM__ 1 #define __FLT32_HAS_INFINITY__ 1 #define __FLT32_HAS_QUIET_NAN__ 1 #define __FP_FAST_FMAF32 1 #define __FLT64_MANT_DIG__ 53 #define __FLT64_DIG__ 15 #define __FLT64_MIN_EXP__ (-1021) #define __FLT64_MIN_10_EXP__ (-307) #define __FLT64_MAX_EXP__ 1024 #define __FLT64_MAX_10_EXP__ 308 #define __FLT64_DECIMAL_DIG__ 17 #define __FLT64_MAX__ 1.7976931348623157e+308F64 #define __FLT64_NORM_MAX__ 1.7976931348623157e+308F64 #define __FLT64_MIN__ 2.2250738585072014e-308F64 #define __FLT64_EPSILON__ 2.2204460492503131e-16F64 #define __FLT64_DENORM_MIN__ 4.9406564584124654e-324F64 #define __FLT64_HAS_DENORM__ 1 #define __FLT64_HAS_INFINITY__ 1 #define __FLT64_HAS_QUIET_NAN__ 1 #define __FLT32X_MANT_DIG__ 53 #define __FLT32X_DIG__ 15 #define __FLT32X_MIN_EXP__ (-1021) #define __FLT32X_MIN_10_EXP__ (-307) #define __FLT32X_MAX_EXP__ 1024 #define __FLT32X_MAX_10_EXP__ 308 #define __FLT32X_DECIMAL_DIG__ 17 #define __FLT32X_MAX__ 1.7976931348623157e+308F32x #define __FLT32X_NORM_MAX__ 1.7976931348623157e+308F32x #define __FLT32X_MIN__ 2.2250738585072014e-308F32x #define __FLT32X_EPSILON__ 2.2204460492503131e-16F32x #define __FLT32X_DENORM_MIN__ 4.9406564584124654e-324F32x #define __FLT32X_HAS_DENORM__ 1 #define __FLT32X_HAS_INFINITY__ 1 #define __FLT32X_HAS_QUIET_NAN__ 1 #define __SFRACT_FBIT__ 7 #define __SFRACT_IBIT__ 0 #define __SFRACT_MIN__ (-0.5HR-0.5HR) #define __SFRACT_MAX__ 0X7FP-7HR #define __SFRACT_EPSILON__ 0x1P-7HR #define __USFRACT_FBIT__ 8 #define __USFRACT_IBIT__ 0 #define __USFRACT_MIN__ 0.0UHR #define __USFRACT_MAX__ 0XFFP-8UHR #define __USFRACT_EPSILON__ 0x1P-8UHR #define __FRACT_FBIT__ 15 #define __FRACT_IBIT__ 0 #define __FRACT_MIN__ (-0.5R-0.5R) #define __FRACT_MAX__ 0X7FFFP-15R #define __FRACT_EPSILON__ 0x1P-15R #define __UFRACT_FBIT__ 16 #define __UFRACT_IBIT__ 0 #define __UFRACT_MIN__ 0.0UR #define __UFRACT_MAX__ 0XFFFFP-16UR #define __UFRACT_EPSILON__ 0x1P-16UR #define __LFRACT_FBIT__ 31 #define __LFRACT_IBIT__ 0 #define __LFRACT_MIN__ (-0.5LR-0.5LR) #define __LFRACT_MAX__ 0X7FFFFFFFP-31LR #define __LFRACT_EPSILON__ 0x1P-31LR #define __ULFRACT_FBIT__ 32 #define __ULFRACT_IBIT__ 0 #define __ULFRACT_MIN__ 0.0ULR #define __ULFRACT_MAX__ 0XFFFFFFFFP-32ULR #define __ULFRACT_EPSILON__ 0x1P-32ULR #define __LLFRACT_FBIT__ 63 #define __LLFRACT_IBIT__ 0 #define __LLFRACT_MIN__ (-0.5LLR-0.5LLR) #define __LLFRACT_MAX__ 0X7FFFFFFFFFFFFFFFP-63LLR #define __LLFRACT_EPSILON__ 0x1P-63LLR #define __ULLFRACT_FBIT__ 64 #define __ULLFRACT_IBIT__ 0 #define __ULLFRACT_MIN__ 0.0ULLR #define __ULLFRACT_MAX__ 0XFFFFFFFFFFFFFFFFP-64ULLR #define __ULLFRACT_EPSILON__ 0x1P-64ULLR #define __SACCUM_FBIT__ 7 #define __SACCUM_IBIT__ 8 #define __SACCUM_MIN__ (-0X1P7HK-0X1P7HK) #define __SACCUM_MAX__ 0X7FFFP-7HK #define __SACCUM_EPSILON__ 0x1P-7HK #define __USACCUM_FBIT__ 8 #define __USACCUM_IBIT__ 8 #define __USACCUM_MIN__ 0.0UHK #define __USACCUM_MAX__ 0XFFFFP-8UHK #define __USACCUM_EPSILON__ 0x1P-8UHK #define __ACCUM_FBIT__ 15 #define __ACCUM_IBIT__ 16 #define __ACCUM_MIN__ (-0X1P15K-0X1P15K) #define __ACCUM_MAX__ 0X7FFFFFFFP-15K #define __ACCUM_EPSILON__ 0x1P-15K #define __UACCUM_FBIT__ 16 #define __UACCUM_IBIT__ 16 #define __UACCUM_MIN__ 0.0UK #define __UACCUM_MAX__ 0XFFFFFFFFP-16UK #define __UACCUM_EPSILON__ 0x1P-16UK #define __LACCUM_FBIT__ 31 #define __LACCUM_IBIT__ 32 #define __LACCUM_MIN__ (-0X1P31LK-0X1P31LK) #define __LACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LK #define __LACCUM_EPSILON__ 0x1P-31LK #define __ULACCUM_FBIT__ 32 #define __ULACCUM_IBIT__ 32 #define __ULACCUM_MIN__ 0.0ULK #define __ULACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULK #define __ULACCUM_EPSILON__ 0x1P-32ULK #define __LLACCUM_FBIT__ 31 #define __LLACCUM_IBIT__ 32 #define __LLACCUM_MIN__ (-0X1P31LLK-0X1P31LLK) #define __LLACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LLK #define __LLACCUM_EPSILON__ 0x1P-31LLK #define __ULLACCUM_FBIT__ 32 #define __ULLACCUM_IBIT__ 32 #define __ULLACCUM_MIN__ 0.0ULLK #define __ULLACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULLK #define __ULLACCUM_EPSILON__ 0x1P-32ULLK #define __QQ_FBIT__ 7 #define __QQ_IBIT__ 0 #define __HQ_FBIT__ 15 #define __HQ_IBIT__ 0 #define __SQ_FBIT__ 31 #define __SQ_IBIT__ 0 #define __DQ_FBIT__ 63 #define __DQ_IBIT__ 0 #define __TQ_FBIT__ 127 #define __TQ_IBIT__ 0 #define __UQQ_FBIT__ 8 #define __UQQ_IBIT__ 0 #define __UHQ_FBIT__ 16 #define __UHQ_IBIT__ 0 #define __USQ_FBIT__ 32 #define __USQ_IBIT__ 0 #define __UDQ_FBIT__ 64 #define __UDQ_IBIT__ 0 #define __UTQ_FBIT__ 128 #define __UTQ_IBIT__ 0 #define __HA_FBIT__ 7 #define __HA_IBIT__ 8 #define __SA_FBIT__ 15 #define __SA_IBIT__ 16 #define __DA_FBIT__ 31 #define __DA_IBIT__ 32 #define __TA_FBIT__ 63 #define __TA_IBIT__ 64 #define __UHA_FBIT__ 8 #define __UHA_IBIT__ 8 #define __USA_FBIT__ 16 #define __USA_IBIT__ 16 #define __UDA_FBIT__ 32 #define __UDA_IBIT__ 32 #define __UTA_FBIT__ 64 #define __UTA_IBIT__ 64 #define __REGISTER_PREFIX__ #define __USER_LABEL_PREFIX__ #define __GNUC_STDC_INLINE__ 1 #define __CHAR_UNSIGNED__ 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 #define __GCC_ATOMIC_BOOL_LOCK_FREE 2 #define __GCC_ATOMIC_CHAR_LOCK_FREE 2 #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 #define __GCC_ATOMIC_SHORT_LOCK_FREE 2 #define __GCC_ATOMIC_INT_LOCK_FREE 2 #define __GCC_ATOMIC_LONG_LOCK_FREE 2 #define __GCC_ATOMIC_LLONG_LOCK_FREE 1 #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 #define __GCC_ATOMIC_POINTER_LOCK_FREE 2 #define __HAVE_SPECULATION_SAFE_VALUE 1 #define __GCC_HAVE_DWARF2_CFI_ASM 1 #define __PRAGMA_REDEFINE_EXTNAME 1 #define __SIZEOF_WCHAR_T__ 4 #define __SIZEOF_WINT_T__ 4 #define __SIZEOF_PTRDIFF_T__ 4 #define __ARM_FEATURE_DSP 1 #define __ARM_FEATURE_QBIT 1 #define __ARM_FEATURE_SAT 1 #undef __ARM_FEATURE_CRYPTO #define __ARM_FEATURE_UNALIGNED 1 #undef __ARM_FEATURE_QRDMX #undef __ARM_FEATURE_CRC32 #undef __ARM_FEATURE_DOTPROD #undef __ARM_FEATURE_COMPLEX #define __ARM_32BIT_STATE 1 #undef __ARM_FEATURE_MVE #undef __ARM_FEATURE_CMSE #undef __ARM_FEATURE_LDREX #define __ARM_FEATURE_LDREX 7 #define __ARM_FEATURE_CLZ 1 #undef __ARM_FEATURE_NUMERIC_MAXMIN #define __ARM_FEATURE_SIMD32 1 #define __ARM_SIZEOF_MINIMAL_ENUM 1 #define __ARM_SIZEOF_WCHAR_T 4 #undef __ARM_ARCH_PROFILE #define __ARM_ARCH_PROFILE 77 #define __arm__ 1 #undef __ARM_ARCH #define __ARM_ARCH 7 #define __APCS_32__ 1 #define __GCC_ASM_FLAG_OUTPUTS__ 1 #define __thumb__ 1 #define __thumb2__ 1 #define __THUMBEL__ 1 #undef __ARM_ARCH_ISA_THUMB #define __ARM_ARCH_ISA_THUMB 2 #define __ARMEL__ 1 #define __VFP_FP__ 1 #undef __ARM_FP #define __ARM_FP 4 #undef __ARM_FP16_FORMAT_IEEE #undef __ARM_FP16_FORMAT_ALTERNATIVE #undef __ARM_FP16_ARGS #undef __ARM_FEATURE_FP16_SCALAR_ARITHMETIC #undef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC #undef __ARM_FEATURE_FP16_FML #define __ARM_FEATURE_FMA 1 #undef __ARM_NEON__ #undef __ARM_NEON #undef __ARM_NEON_FP #define __THUMB_INTERWORK__ 1 #define __ARM_ARCH_7EM__ 1 #define __ARM_PCS 1 #define __ARM_EABI__ 1 #undef __FDPIC__ #define __ARM_ARCH_EXT_IDIV__ 1 #define __ARM_FEATURE_IDIV 1 #define __ARM_ASM_SYNTAX_UNIFIED__ 1 #undef __ARM_FEATURE_COPROC #define __ARM_FEATURE_COPROC 15 #undef __ARM_FEATURE_CDE #undef __ARM_FEATURE_CDE_COPROC #undef __ARM_FEATURE_MATMUL_INT8 #undef __ARM_FEATURE_BF16_SCALAR_ARITHMETIC #undef __ARM_FEATURE_BF16_VECTOR_ARITHMETIC #undef __ARM_BF16_FORMAT_ALTERNATIVE #define __GXX_TYPEINFO_EQUALITY_INLINE 0 #define __ELF__ 1 #define __USES_INITFINI__ 1 #define TARGET MAX32655 #define MAX32655 1 #define TARGET_REV 0x4131 #define DEBUG 1 #define MXC_ASSERT_ENABLE 1 #define LIB_BOARD 1 #define EXT_FLASH_W25 1 #define BB_CLK_RATE_HZ 1000000 #define BB_ENABLE_INLINE_DEC_RX 1 #define BB_ENABLE_INLINE_ENC_TX 1 #define BT_VER 9 #define CHCI_TR_UART 1 #define DTM_RX_SCHEDULING 1 #define HCI_TR_EXACTLE 1 #define INIT_ENCRYPTED 1 #define INIT_PERIPHERAL 1 #define LCTR_CONN_NO_TIFS_REASSEMBLY 1 #define LL_WW_RX_DEVIATION_USEC 0 #define PAL_MAX_RTC_COUNTER_VAL 0xFFFFFFFF #define SCH_CHECK_LIST_INTEGRITY 1 #define SEC_CCM_CFG 1 #define SEC_CMAC_CFG 1 #define SEC_ECC_CFG 2 #define UART_BAUD 115200 #define UART_HWFC 0 #define WSF_ASSERT_ENABLED 1 #define WSF_BUF_FREE_CHECK_ASSERT 1 #define WSF_BUF_STATS 1 #define WSF_CS_STATS 1 #define WSF_TRACE_ENABLED 1 #define uECC_ASM 2 #define MAILBOX_SIZE 0
Build of configuration for project BLE_fit *************************************************************** 15:55:19 **** Build of configuration Default for project BLE_fit **** make -r -j 8 --output-sync=target --no-print-directory Loaded project.mk ---INFO enter Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk, RISCV_CORE=, RISCV_LOAD= ---INFO ARM ONLY, SRAM_SIZE=0x20000 ---INFO exit Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk **************************************************************************** * Analog Devices MSDK * - User Guide: https://analogdevicesinc.github.io/msdk/USERGUIDE/ * - Get Support: https://www.analog.com/support/technical-support.html * - Report Issues: https://github.com/Analog-Devices-MSDK/msdk/issues * - Contributing: https://analogdevicesinc.github.io/msdk/CONTRIBUTING/ **************************************************************************** make -f [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/libCordio.mk lib MAXIM_PATH=[...MSDK DIR...]/MaximSDK PROJECT=cordio_max32655_baremetal_T1_softfp.a \ CORDIO_LIB_VAR=max32655_baremetal_T1_softfp BUILD_DIR=[...MSDK DIR...]/MaximSDK/Libraries/Cordio/bin/max32655_baremetal_T1_softfp MFLOAT_ABI=softfp \ DUAL_CORE= RISCV_CORE= TRACE=1 DEBUG=1 RTOS=baremetal \ CFG_DEV="BT_VER=9 SCH_CHECK_LIST_INTEGRITY=1 uECC_ASM=2 INIT_PERIPHERAL INIT_ENCRYPTED WSF_BUF_FREE_CHECK_ASSERT=1 WSF_BUF_STATS=1 WSF_CS_STATS=1 WSF_ASSERT_ENABLED=1 WSF_TRACE_ENABLED=1 SEC_CMAC_CFG=1 SEC_ECC_CFG=2 SEC_CCM_CFG=1 HCI_TR_EXACTLE=1 WSF_BUF_STATS=1 WSF_ASSERT_ENABLED=1 WSF_TRACE_ENABLED=1 BB_CLK_RATE_HZ=1000000 LCTR_CONN_NO_TIFS_REASSEMBLY=1 CHCI_TR_UART=1 UART_BAUD=115200 UART_HWFC=0 BB_ENABLE_INLINE_ENC_TX=1 BB_ENABLE_INLINE_DEC_RX=1 PAL_MAX_RTC_COUNTER_VAL=0xFFFFFFFF DTM_RX_SCHEDULING=1 LL_WW_RX_DEVIATION_USEC=0" PROJECTMK=[...WORKSPACE DIR...]/workspace/maxim/BLE_fit/project.mk BOARD=FTHR_Apps_P1 MXC_OPTIMIZE_CFLAGS=-Og ---INFO enter Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk, RISCV_CORE=, RISCV_LOAD= ---INFO ARM ONLY, SRAM_SIZE=0x20000 ---INFO exit Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk - MKDIR [...WORKSPACE DIR...]/workspace/maxim/BLE_fit/build ---INFO enter Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk, RISCV_CORE=, RISCV_LOAD= ---INFO ARM ONLY, SRAM_SIZE=0x20000 ---INFO exit Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/max32655_memory.mk - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/mxc_assert.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/mxc_lock.c - MKDIR [...MSDK DIR...]/MaximSDK/Libraries/Cordio/bin/max32655_baremetal_T1_softfp - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/nvic_table.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/pins_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/mxc_delay.c - CC stack_fit.c - CC main.c - CC fit_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/MiscDrivers/LED/led.c - CC [...MSDK DIR...]/MaximSDK/Libraries/MiscDrivers/stdio.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Boards/MAX32655/FTHR_Apps_P1/Source/board.c - CC [...MSDK DIR...]/MaximSDK/Libraries/MiscDrivers/PushButton/pb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SYS/sys_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/MiscDrivers/PMIC/max20303.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/ADC/adc_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/controller/sources/ble/init/init_ctr.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_disc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/MiscDrivers/ExtMemory/w25.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/controller/sources/ble/init/init.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/AES/aes_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_master_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/wsf/sources/targets/baremetal/wsf_trace.c - AS [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/Device/Maxim/MAX32655/Source/GCC/startup_max32655.S - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/ADC/adc_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_sys.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/max32655/sources/pal_uart.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/Device/Maxim/MAX32655/Source/heap.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_server.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/Device/Maxim/MAX32655/Source/system_max32655.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/AES/aes_revb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/CRC/crc_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/CRC/crc_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/DMA/dma_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_slave_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/GPIO/gpio_common.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/FLC/flc_common.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/FLC/flc_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/DMA/dma_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/FLC/flc_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/GPIO/gpio_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/app_hw.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/app_ui.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/app_terminal.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/GPIO/gpio_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/app_db.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/I2C/i2c_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/I2S/i2s_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/ICC/icc_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/ui_console.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/ui_lcd.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/ICC/icc_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/ui_platform.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/I2S/i2s_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/ui_timer.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/LPCMP/lpcmp_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/LP/lp_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/I2C/i2c_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/af/common/ui_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/LPCMP/lpcmp_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/anpc/anpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/OWM/owm_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/atpc/atpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/bas/bas_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/blpc/blpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/PT/pt_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/OWM/owm_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/atps/atps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/blps/blps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/PT/pt_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/cscp/cscps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/dis/dis_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/gap/gap_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/fmpl/fmpl_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/cpp/cpps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/RTC/rtc_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/gatt/gatt_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/RTC/rtc_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/hrpc/hrpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/glps/glps_db.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/hid/hid_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SEMA/sema_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/glpc/glpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SIMO/simo_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SEMA/sema_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/glps/glps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/htpc/htpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SIMO/simo_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/paspc/paspc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/hrps/hrps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/htps/htps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SPI/spi_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/plxps/plxps_db.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/TRNG/trng_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/plxpc/plxpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/scpps/scpps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/TRNG/trng_revb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/rscp/rscps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/sensor/gyro_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/TMR/tmr_common.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/sensor/temp_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/SPI/spi_reva1.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/plxps/plxps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/tipc/tipc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/udsc/udsc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/TMR/tmr_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/UART/uart_common.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxc/wdxc_dc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/uribeacon/uricfg_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxc/wdxc_ft.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/TMR/tmr_revb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/UART/uart_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxc/wdxc_stream.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxc/wdxc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/WDT/wdt_common.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_au.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_dc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/WDT/wdt_revb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/WDT/wdt_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/WUT/wut_me17.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_ft.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/WUT/wut_reva.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/CMSIS/../PeriphDrivers/Source/UART/uart_revb.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wpc/wpc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wdxs/wdxs_stream.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_alert.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wsps/wsps_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/profiles/wspc/wspc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_batt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_bps.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_core.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_dis.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_cte.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_cps.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_gls.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_cscs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_gyro.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_hid.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_ipss.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_hrs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_hts.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_plxs.c - AR [...MSDK DIR...]/MaximSDK/Libraries/PeriphDrivers/bin/MAX32655/softfp/libPeriphDriver_softfp.a - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_rscs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_px.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_scpss.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_time.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_temp.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_wdxs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_wss.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/att_uuid.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_uricfg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-profiles/sources/services/svc_wp.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/att_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_read.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_write.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/att_eatt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_disc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_sign.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_proc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/attc_eatt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_ccc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_csf.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_dyn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_ind.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_proc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_sign.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/cfg/cfg_stack.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_write.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_read.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/att/atts_eatt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_adv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_adv_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_cis_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_cis.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_bis_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_bis_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_cis_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_cis_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_master_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_adv_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_cte.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_slave_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_dev.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_dev_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_scan_leg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_scan_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_iso.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_sec_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_scan.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_sec.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_sec_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_sec_lesc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/hci/hci_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/l2c/l2c_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/l2c/l2c_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_non.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/dm/dm_sync_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/l2c/l2c_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_db.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_sc_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpi_sc_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpi_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpi_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpi_sc_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/l2c/l2c_coc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpr_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpr_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smp_sc_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpr_sc_sm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/stack/smp/smpr_sc_act.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_aes.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_aes_rev.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_ecc_debug.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_ecc_hci.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_ccm_hci.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/sec/common/sec_cmac_hci.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_periodiclist.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_sniffer.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_pdufilt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_dtm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_whitelist.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/bb/bb_ble_reslist.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_conn_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_enc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_conn_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_init_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_init_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_act_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_init_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_init_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_conn_cs2.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_isr_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_conn_data.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_init_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_master_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_init_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_slave_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_main_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_pdu_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_pdu_enc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_pdu_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_pdu_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_pdu_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_init_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_init_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_master_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lctr/lctr_sm_llcp_slave_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_adv_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_conn_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_conn_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs.c [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs.c: In function 'lhciCommonVsStdDecodeCmdPkt': [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs.c:85:14: warning: variable 'channel' set but not used [-Wunused-but-set-variable] 85 | uint32_t channel = 0; | ^~~~~~~ - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_cmd_vs_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_conn_cs2.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_conn_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_vs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_evt_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_adv_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_conn_cs2.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_conn_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_conn_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_init_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_conn_cs2.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lhci/lhci_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_init_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_init_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_master_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_init_slave_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_adv_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_adv_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_conn_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_diag.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_adv_slave_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_conn_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_conn_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_enc_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_pc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_enc_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_math.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_sc.c [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c: In function 'LlEnhancedTxTest': [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:477:16: warning: passing argument 1 of 'memset' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] 477 | memset(&llTestCb.rpt, 0, sizeof(llTestCb.rpt)); | ^~~~~~~~~~~~~ In file included from [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:39: [...MSDK DIR...]/MaximSDK/Tools/GNUTools/10.3/arm-none-eabi/include/string.h:33:17: note: expected 'void *' but argument is of type 'volatile LlTestReport_t *' - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c 33 | void * memset (void *, int, size_t); | ^~~~~~ [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c: In function 'LlEnhancedRxTest': [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:914:12: warning: passing argument 1 of 'memset' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] 914 | memset(&llTestCb.rpt, 0, sizeof(llTestCb.rpt)); /* clear report */ | ^~~~~~~~~~~~~ In file included from [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:39: [...MSDK DIR...]/MaximSDK/Tools/GNUTools/10.3/arm-none-eabi/include/string.h:33:17: note: expected 'void *' but argument is of type 'volatile LlTestReport_t *' - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_events.c 33 | void * memset (void *, int, size_t); | ^~~~~~ [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c: In function 'LlEndTest': [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:1032:12: warning: passing argument 1 of 'memset' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] 1032 | memset(&llTestCb.rpt, 0, sizeof(llTestCb.rpt)); /* clear report */ | ^~~~~~~~~~~~~ In file included from [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:39: [...MSDK DIR...]/MaximSDK/Tools/GNUTools/10.3/arm-none-eabi/include/string.h:33:17: note: expected 'void *' but argument is of type 'volatile LlTestReport_t *' 33 | void * memset (void *, int, size_t); | ^~~~~~ - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_adv_slave_ae.c [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c: In function 'llTestResetHandler': [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:1064:12: warning: passing argument 1 of 'memset' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] 1064 | memset(&llTestCb, 0, sizeof(llTestCb)); | ^~~~~~~~~ In file included from [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/ll/ll_main_dtm.c:39: [...MSDK DIR...]/MaximSDK/Tools/GNUTools/10.3/arm-none-eabi/include/string.h:33:17: note: expected 'void *' but argument is of type 'volatile struct *' 33 | void * memset (void *, int, size_t); | ^~~~~~ - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_priv.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_conn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_adv_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_sc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/lmgr/lmgr_main_slave.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/common/bb/bb_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/sch/sch_tm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/sch/sch_ble.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/common/sch/sch_main.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/common/chci/chci_tr.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/ble/sch/sch_rm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/common/hci_tr.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_bis.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../controller/sources/common/sch/sch_list.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/common/hci_core.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_cis.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_cte.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_enc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_master.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_phy.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_master_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_past.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_cmd_iso.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_vs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/bda.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/bstream.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_core_ps.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_vs_ae.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/crc32.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../ble-host/sources/hci/exactle/hci_evt.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/calc128.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/fcs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/prand.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/print.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_assert.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/wstr.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_cs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/util/terminal.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_detoken.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_bufio.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_buf.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_heap.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_nvm.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_queue.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_msg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_efs.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_timer.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../wsf/sources/targets/baremetal/wsf_os.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_btn.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_i2s.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_codec.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_cfg.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_led.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_crypto.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_flash.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_rtc.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_twi.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../platform/targets/maxim/max32655/sources/pal_timer.c - CC [...MSDK DIR...]/MaximSDK/Libraries/Cordio/platform/targets/maxim/build/../../../../thirdparty/uecc/uECC_ll.c - AR [...MSDK DIR...]/MaximSDK/Libraries/Cordio/bin/max32655_baremetal_T1_softfp/cordio_max32655_baremetal_T1_softfp.a - LD [...WORKSPACE DIR...]/workspace/maxim/BLE_fit/build/BLE_fit.elf arm-none-eabi-size --format=berkeley [...WORKSPACE DIR...]/workspace/maxim/BLE_fit/build/BLE_fit.elf text data bss dec hex filename 209432 4012 24700 238144 3a240 [...WORKSPACE DIR...]/workspace/maxim/BLE_fit/build/BLE_fit.elf 15:55:49 Build Finished. 0 errors, 5 warnings. (took 30s.440ms)
MDSK installation Log ************************************* Invoked: Tue May 21 20:50:03 2024 [0] Arguments: /home/borgesrb/Desktop/MaximMicrosSDK_linux_1.0.1.run [1] Operations sanity check succeeded. [1] Language: en-US ... [51815] Preparing the installation... [51815] Install size: 129 components [51816] Downloading packages... [51817] Downloading archive "1.1.0-85content.7z.sha1" for component Installer Files for Linux. [52395] Downloading archive "1.1.0-85content.7z" for component Installer Files for Linux. [52973] Downloading archive "12.2.0-3.1-21Libraries.7z.sha1" for component GNU RISC-V Embedded GCC. [53604] Downloading archive "12.2.0-3.1-21Libraries.7z" for component GNU RISC-V Embedded GCC. [54188] Downloading archive "12.2.0-3.1-21Tools.7z.sha1" for component GNU RISC-V Embedded GCC. [54819] Downloading archive "12.2.0-3.1-21Tools.7z" for component GNU RISC-V Embedded GCC. [162053] Downloading archive "10.3.0-49Libraries.7z.sha1" for component GNU Tools for ARM Embedded Processors. [162632] Downloading archive "10.3.0-49Libraries.7z" for component GNU Tools for ARM Embedded Processors. [163239] Downloading archive "10.3.0-49Tools.7z.sha1" for component GNU Tools for ARM Embedded Processors. [163808] Downloading archive "10.3.0-49Tools.7z" for component GNU Tools for ARM Embedded Processors. [188165] Downloading archive "1.1.0-0.12.0-14Tools.7z.sha1" for component Open On-Chip Debugger. [188716] Downloading archive "1.1.0-0.12.0-14Tools.7z" for component Open On-Chip Debugger. [192497] Downloading archive "1.7.0Tools.7z.sha1" for component Visual Studio Code Support. [193298] Downloading archive "1.7.0Tools.7z" for component Visual Studio Code Support. [193908] Downloading archive "4.4.1-15Tools.7z.sha1" for component GNU Make. [194481] Downloading archive "4.4.1-15Tools.7z" for component GNU Make. [195709] Downloading archive "1.2.0-143Documentation.7z.sha1" for component MAXIM Microcontrollers. [196309] Downloading archive "1.2.0-143Documentation.7z" for component MAXIM Microcontrollers. [196875] Downloading archive "1.0.0-74Libraries.7z.sha1" for component Product Libs. [197440] Downloading archive "1.0.0-74Libraries.7z" for component Product Libs. [197997] Downloading archive "11.0.0-40Tools.7z.sha1" for component Eclipse CDT. [198557] Downloading archive "11.0.0-40Tools.7z" for component Eclipse CDT. [296335] Downloading archive "1.2.0-45Tools.7z.sha1" for component MAX32520 SBT Packet. [296942] Downloading archive "1.2.0-45Tools.7z" for component MAX32520 SBT Packet. [297664] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32650 SBT Packet. [298234] Downloading archive "1.2.0-20Tools.7z" for component MAX32650 SBT Packet. [298986] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32662 SBT Packet. [299549] Downloading archive "1.2.0-20Tools.7z" for component MAX32662 SBT Packet. [300286] Downloading archive "1.2.0-46Tools.7z.sha1" for component MAX32665 SBT Packet. [300853] Downloading archive "1.2.0-46Tools.7z" for component MAX32665 SBT Packet. [301612] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32672 SBT Packet. [302195] Downloading archive "1.2.0-20Tools.7z" for component MAX32672 SBT Packet. [302933] Downloading archive "1.2.0-21Tools.7z.sha1" for component MAX32690 SBT Packet. [303557] Downloading archive "1.2.0-21Tools.7z" for component MAX32690 SBT Packet. [304273] Downloading archive "1.0.0-25Tools.7z.sha1" for component Maxim Integrated BitmapConverter Binaries. [304877] Downloading archive "1.0.0-25Tools.7z" for component Maxim Integrated BitmapConverter Binaries. [305483] Downloading archive "1.0.3-25Tools.7z.sha1" for component Maxim Bitmap Converter - Source Code. [306096] Downloading archive "1.0.3-25Tools.7z" for component Maxim Bitmap Converter - Source Code. [306690] Downloading archive "1.3.2-105Tools.7z.sha1" for component Maxim Integrated Secure Tools. [307253] Downloading archive "1.3.2-105Tools.7z" for component Maxim Integrated Secure Tools. [310311] Downloading archive "1.3.2-105Tools.7z.sha1" for component Secure Boot Tools - Source Code. [310906] Downloading archive "1.3.2-105Tools.7z" for component Secure Boot Tools - Source Code. [312950] Downloading archive "1.0.0-120Libraries.7z.sha1" for component Bluetooth Low Energy. [313514] Downloading archive "1.0.0-120Libraries.7z" for component Bluetooth Low Energy. [318112] Downloading archive "1.0.12Libraries.7z.sha1" for component CLI Library. [318690] Downloading archive "1.0.12Libraries.7z" for component CLI Library. [319871] Downloading archive "1.0.0-62Libraries.7z.sha1" for component CMSIS Core Libraries. [320456] Downloading archive "1.0.0-62Libraries.7z" for component CMSIS Core Libraries. [322933] Downloading archive "1.0.0-5Libraries.7z.sha1" for component CoreMark. [323561] Downloading archive "1.0.0-5Libraries.7z" for component CoreMark. [324328] Downloading archive "1.0.0-41Libraries.7z.sha1" for component FreeRTOS. [324917] Downloading archive "1.0.0-41Libraries.7z" for component FreeRTOS. [326663] Downloading archive "1.0.0-30Libraries.7z.sha1" for component FreeRTOS-Plus. [327242] Downloading archive "1.0.0-30Libraries.7z" for component FreeRTOS-Plus. [333325] Downloading archive "1.0.0-24Libraries.7z.sha1" for component LVGL. [334011] Downloading archive "1.0.0-24Libraries.7z" for component LVGL. [343359] Downloading archive "1.0.0-27Libraries.7z.sha1" for component Lightweight File System. [343946] Downloading archive "1.0.0-27Libraries.7z" for component Lightweight File System. [345588] Downloading archive "1.0.0-54Libraries.7z.sha1" for component Lightweight TCP/IP stack. [346150] Downloading archive "1.0.0-54Libraries.7z" for component Lightweight TCP/IP stack. [347420] Downloading archive "1.0.0-55Libraries.7z.sha1" for component MAXUSB. [348048] Downloading archive "1.0.0-55Libraries.7z" for component MAXUSB. [348939] Downloading archive "1.0.0-50Libraries.7z.sha1" for component Miscellaneous Drivers. [349547] Downloading archive "1.0.0-50Libraries.7z" for component Miscellaneous Drivers. [351048] Downloading archive "1.0.0-329Libraries.7z.sha1" for component Peripheral Drivers. [351624] Downloading archive "1.0.0-329Libraries.7z" for component Peripheral Drivers. [352753] Downloading archive "1.0.0-329content.7z.sha1" for component Peripheral Drivers. [353330] Downloading archive "1.0.0-329content.7z" for component Peripheral Drivers. [354025] Downloading archive "1.0.0-43Libraries.7z.sha1" for component SDHC. [355232] Downloading archive "1.0.0-43Libraries.7z" for component SDHC. [359285] Downloading archive "1.0.4-33Tools.7z.sha1" for component Eclipse Plugin. [359928] Downloading archive "1.0.4-33Tools.7z" for component Eclipse Plugin. [360990] Downloading archive "1.2.0-45Documentation.7z.sha1" for component MAX32520 SDK Documentation. [361597] Downloading archive "1.2.0-45Documentation.7z" for component MAX32520 SDK Documentation. [362171] Downloading archive "1.2.0-45Libraries.7z.sha1" for component MAX32520 Boards. [362758] Downloading archive "1.2.0-45Libraries.7z" for component MAX32520 Boards. [363374] Downloading archive "1.2.0-45Libraries.7z.sha1" for component MAX32520 CMSIS. [363955] Downloading archive "1.2.0-45Libraries.7z" for component MAX32520 CMSIS. [364838] Downloading archive "1.2.0-45Examples.7z.sha1" for component MAX32520 Examples. [365411] Downloading archive "1.2.0-45Examples.7z" for component MAX32520 Examples. [366437] Downloading archive "1.2.0-45Tools.7z.sha1" for component MAX32520 Openocd Config File. [367010] Downloading archive "1.2.0-45Tools.7z" for component MAX32520 Openocd Config File. [367590] Downloading archive "1.2.0-45Libraries.7z.sha1" for component MAX32520 Peripheral Drivers. [368181] Downloading archive "1.2.0-45Libraries.7z" for component MAX32520 Peripheral Drivers. [369566] Downloading archive "1.2.0-20Documentation.7z.sha1" for component MAX32650 SDK Documentation. [370129] Downloading archive "1.2.0-20Documentation.7z" for component MAX32650 SDK Documentation. [370693] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32650 Boards. [371254] Downloading archive "1.2.0-20Libraries.7z" for component MAX32650 Boards. [371859] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32650 CMSIS. [372423] Downloading archive "1.2.0-20Libraries.7z" for component MAX32650 CMSIS. [373428] Downloading archive "1.2.0-20Examples.7z.sha1" for component MAX32650 Examples. [373993] Downloading archive "1.2.0-20Examples.7z" for component MAX32650 Examples. [375068] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32650 Openocd Config File. [375633] Downloading archive "1.2.0-20Tools.7z" for component MAX32650 Openocd Config File. [376214] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32650 Peripheral Drivers. [376801] Downloading archive "1.2.0-20Libraries.7z" for component MAX32650 Peripheral Drivers. [379655] Downloading archive "1.2.0-48Documentation.7z.sha1" for component MAX32655 SDK Documentation. [380239] Downloading archive "1.2.0-48Documentation.7z" for component MAX32655 SDK Documentation. [380836] Downloading archive "1.2.0-48Libraries.7z.sha1" for component MAX32655 Boards. [381422] Downloading archive "1.2.0-48Libraries.7z" for component MAX32655 Boards. [382020] Downloading archive "1.2.0-48Libraries.7z.sha1" for component MAX32655 CMSIS. [382639] Downloading archive "1.2.0-48Libraries.7z" for component MAX32655 CMSIS. [383552] Downloading archive "1.2.0-48Examples.7z.sha1" for component MAX32655 Examples. [384126] Downloading archive "1.2.0-48Examples.7z" for component MAX32655 Examples. [385719] Downloading archive "1.2.0-48Tools.7z.sha1" for component MAX32655 Openocd Config File. [386481] Downloading archive "1.2.0-48Tools.7z" for component MAX32655 Openocd Config File. [387159] Downloading archive "1.2.0-48Libraries.7z.sha1" for component MAX32655 Peripheral Drivers. [387775] Downloading archive "1.2.0-48Libraries.7z" for component MAX32655 Peripheral Drivers. [388847] Downloading archive "1.2.0-20Documentation.7z.sha1" for component MAX32660 SDK Documentation. [389420] Downloading archive "1.2.0-20Documentation.7z" for component MAX32660 SDK Documentation. [390002] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32660 Boards. [390598] Downloading archive "1.2.0-20Libraries.7z" for component MAX32660 Boards. [391179] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32660 CMSIS. [391765] Downloading archive "1.2.0-20Libraries.7z" for component MAX32660 CMSIS. [392688] Downloading archive "1.2.0-20Examples.7z.sha1" for component MAX32660 Examples. [393294] Downloading archive "1.2.0-20Examples.7z" for component MAX32660 Examples. [394709] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32660 Openocd Config File. [395324] Downloading archive "1.2.0-20Tools.7z" for component MAX32660 Openocd Config File. [395891] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32660 Peripheral Drivers. [396464] Downloading archive "1.2.0-20Libraries.7z" for component MAX32660 Peripheral Drivers. [397825] Downloading archive "1.2.0-20Documentation.7z.sha1" for component MAX32662 SDK Documentation. [398397] Downloading archive "1.2.0-20Documentation.7z" for component MAX32662 SDK Documentation. [398974] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32662 Boards. [399570] Downloading archive "1.2.0-20Libraries.7z" for component MAX32662 Boards. [400141] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32662 CMSIS. [400733] Downloading archive "1.2.0-20Libraries.7z" for component MAX32662 CMSIS. [401602] Downloading archive "1.2.0-20Examples.7z.sha1" for component MAX32662 Examples. [402167] Downloading archive "1.2.0-20Examples.7z" for component MAX32662 Examples. [404049] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32662 Openocd Config File. [404629] Downloading archive "1.2.0-20Tools.7z" for component MAX32662 Openocd Config File. [405203] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32662 Peripheral Drivers. [405794] Downloading archive "1.2.0-20Libraries.7z" for component MAX32662 Peripheral Drivers. [407387] Downloading archive "1.2.0-46Documentation.7z.sha1" for component MAX32665 SDK Documentation. [407957] Downloading archive "1.2.0-46Documentation.7z" for component MAX32665 SDK Documentation. [408526] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32665 Boards. [409119] Downloading archive "1.2.0-46Libraries.7z" for component MAX32665 Boards. [409743] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32665 CMSIS. [410331] Downloading archive "1.2.0-46Libraries.7z" for component MAX32665 CMSIS. [411365] Downloading archive "1.2.0-46Examples.7z.sha1" for component MAX32665 Examples. [411927] Downloading archive "1.2.0-46Examples.7z" for component MAX32665 Examples. [413323] Downloading archive "1.2.0-46Tools.7z.sha1" for component MAX32665 Openocd Config File. [413921] Downloading archive "1.2.0-46Tools.7z" for component MAX32665 Openocd Config File. [414522] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32665 Peripheral Drivers. [415119] Downloading archive "1.2.0-46Libraries.7z" for component MAX32665 Peripheral Drivers. [417191] Downloading archive "1.2.0-20Documentation.7z.sha1" for component MAX32670 SDK Documentation. [417762] Downloading archive "1.2.0-20Documentation.7z" for component MAX32670 SDK Documentation. [418329] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32670 Boards. [419047] Downloading archive "1.2.0-20Libraries.7z" for component MAX32670 Boards. [419714] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32670 CMSIS. [420323] Downloading archive "1.2.0-20Libraries.7z" for component MAX32670 CMSIS. [421262] Downloading archive "1.2.0-20Examples.7z.sha1" for component MAX32670 Examples. [421823] Downloading archive "1.2.0-20Examples.7z" for component MAX32670 Examples. [422970] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32670 Openocd Config File. [423554] Downloading archive "1.2.0-20Tools.7z" for component MAX32670 Openocd Config File. [424116] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32670 Peripheral Drivers. [424721] Downloading archive "1.2.0-20Libraries.7z" for component MAX32670 Peripheral Drivers. [426110] Downloading archive "1.2.0-20Documentation.7z.sha1" for component MAX32672 SDK Documentation. [426698] Downloading archive "1.2.0-20Documentation.7z" for component MAX32672 SDK Documentation. [427262] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32672 Boards. [427834] Downloading archive "1.2.0-20Libraries.7z" for component MAX32672 Boards. [428424] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32672 CMSIS. [429041] Downloading archive "1.2.0-20Libraries.7z" for component MAX32672 CMSIS. [429904] Downloading archive "1.2.0-20Examples.7z.sha1" for component MAX32672 Examples. [430473] Downloading archive "1.2.0-20Examples.7z" for component MAX32672 Examples. [432112] Downloading archive "1.2.0-20Tools.7z.sha1" for component MAX32672 Openocd Config File. [432686] Downloading archive "1.2.0-20Tools.7z" for component MAX32672 Openocd Config File. [433275] Downloading archive "1.2.0-20Libraries.7z.sha1" for component MAX32672 Peripheral Drivers. [433867] Downloading archive "1.2.0-20Libraries.7z" for component MAX32672 Peripheral Drivers. [435344] Downloading archive "1.2.0-46Documentation.7z.sha1" for component MAX32675 SDK Documentation. [435949] Downloading archive "1.2.0-46Documentation.7z" for component MAX32675 SDK Documentation. [436542] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32675 Boards. [437106] Downloading archive "1.2.0-46Libraries.7z" for component MAX32675 Boards. [437697] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32675 CMSIS. [438261] Downloading archive "1.2.0-46Libraries.7z" for component MAX32675 CMSIS. [439129] Downloading archive "1.2.0-46Examples.7z.sha1" for component MAX32675 Examples. [439712] Downloading archive "1.2.0-46Examples.7z" for component MAX32675 Examples. [440733] Downloading archive "1.2.0-46Tools.7z.sha1" for component MAX32675 Openocd Config File. [441303] Downloading archive "1.2.0-46Tools.7z" for component MAX32675 Openocd Config File. [441892] Downloading archive "1.2.0-46Libraries.7z.sha1" for component MAX32675 Peripheral Drivers. [442457] Downloading archive "1.2.0-46Libraries.7z" for component MAX32675 Peripheral Drivers. [444014] Downloading archive "1.2.0-21Documentation.7z.sha1" for component MAX32680 SDK Documentation. [444586] Downloading archive "1.2.0-21Documentation.7z" for component MAX32680 SDK Documentation. [445212] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32680 Boards. [445786] Downloading archive "1.2.0-21Libraries.7z" for component MAX32680 Boards. [446381] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32680 CMSIS. [446960] Downloading archive "1.2.0-21Libraries.7z" for component MAX32680 CMSIS. [447929] Downloading archive "1.2.0-21Examples.7z.sha1" for component MAX32680 Examples. [448485] Downloading archive "1.2.0-21Examples.7z" for component MAX32680 Examples. [449535] Downloading archive "1.2.0-21Tools.7z.sha1" for component MAX32680 Openocd Config File. [450094] Downloading archive "1.2.0-21Tools.7z" for component MAX32680 Openocd Config File. [450650] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32680 Peripheral Drivers. [451301] Downloading archive "1.2.0-21Libraries.7z" for component MAX32680 Peripheral Drivers. [453896] Downloading archive "1.2.0-21Documentation.7z.sha1" for component MAX32690 SDK Documentation. [454488] Downloading archive "1.2.0-21Documentation.7z" for component MAX32690 SDK Documentation. [455072] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32690 Boards. [455629] Downloading archive "1.2.0-21Libraries.7z" for component MAX32690 Boards. [456199] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32690 CMSIS. [456766] Downloading archive "1.2.0-21Libraries.7z" for component MAX32690 CMSIS. [457857] Downloading archive "1.2.0-21Examples.7z.sha1" for component MAX32690 Examples. [458416] Downloading archive "1.2.0-21Examples.7z" for component MAX32690 Examples. [459801] Downloading archive "1.2.0-21Tools.7z.sha1" for component MAX32690 Openocd Config File. [460373] Downloading archive "1.2.0-21Tools.7z" for component MAX32690 Openocd Config File. [461010] Downloading archive "1.2.0-21Libraries.7z.sha1" for component MAX32690 Peripheral Drivers. [461622] Downloading archive "1.2.0-21Libraries.7z" for component MAX32690 Peripheral Drivers. [463772] Downloading archive "1.2.0-58Documentation.7z.sha1" for component MAX78000 SDK Documentation. [464366] Downloading archive "1.2.0-58Documentation.7z" for component MAX78000 SDK Documentation. [464927] Downloading archive "1.2.0-58Libraries.7z.sha1" for component MAX78000 Boards. [465555] Downloading archive "1.2.0-58Libraries.7z" for component MAX78000 Boards. [466155] Downloading archive "1.2.0-58Libraries.7z.sha1" for component MAX78000 CMSIS. [466714] Downloading archive "1.2.0-58Libraries.7z" for component MAX78000 CMSIS. [467575] Downloading archive "1.2.0-58Examples.7z.sha1" for component MAX78000 Examples. [468144] Downloading archive "1.2.0-58Examples.7z" for component MAX78000 Examples. [491939] Downloading archive "1.2.0-58Tools.7z.sha1" for component MAX78000 Openocd Config File. [492513] Downloading archive "1.2.0-58Tools.7z" for component MAX78000 Openocd Config File. [493111] Downloading archive "1.2.0-58Libraries.7z.sha1" for component MAX78000 Peripheral Drivers. [493694] Downloading archive "1.2.0-58Libraries.7z" for component MAX78000 Peripheral Drivers. [495340] Downloading archive "1.2.0-25Documentation.7z.sha1" for component MAX78002 SDK Documentation. [495901] Downloading archive "1.2.0-25Documentation.7z" for component MAX78002 SDK Documentation. [496488] Downloading archive "1.2.0-25Libraries.7z.sha1" for component MAX78002 Boards. [497064] Downloading archive "1.2.0-25Libraries.7z" for component MAX78002 Boards. [498045] Downloading archive "1.2.0-25Libraries.7z.sha1" for component MAX78002 CMSIS. [498644] Downloading archive "1.2.0-25Libraries.7z" for component MAX78002 CMSIS. [499695] Downloading archive "1.2.0-25Examples.7z.sha1" for component MAX78002 Examples. [500279] Downloading archive "1.2.0-25Examples.7z" for component MAX78002 Examples. [512721] Downloading archive "1.2.0-25Tools.7z.sha1" for component MAX78002 Openocd Config File. [513299] Downloading archive "1.2.0-25Tools.7z" for component MAX78002 Openocd Config File. [513892] Downloading archive "1.2.0-25Libraries.7z.sha1" for component MAX78002 Peripheral Drivers. [514450] Downloading archive "1.2.0-25Libraries.7z" for component MAX78002 Peripheral Drivers. .... ************************************* Invoked: Tue Jun 11 15:41:25 2024 [0] Arguments: ./MaintenanceTool [197] Operations sanity check succeeded. [205] Language: en-US [4847] Preparing meta information download... [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/make" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/vscode-maxim" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/bitmapConverter" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/installer" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/openocd" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/gnu_riscv" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/gnutools" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/sbt" [7207] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/eclipse" [7219] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/eclipse/plugin" [7219] Repository to add: "https://www.mxim.net/product/msdk/toolchain/linux/eclipse/cdt" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/cli" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/coremark" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/lvgl" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/littlefs" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/miscdrivers" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/btle" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/sdhc" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/lwIP" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/maxusb" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/freeRTOS_plus" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/freeRTOS" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/periphdrivers" [7220] Repository to add: "https://www.mxim.net/product/msdk/dist/libs/cmsis_core" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max78002" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max78000" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32690" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32680" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32675" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32672" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32670" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32665" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32662" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32660" [7229] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32655" [7230] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32650" [7230] Repository to add: "https://www.mxim.net/product/msdk/dist/dev/max32520" [7235] Retrieving meta information from remote repository... [10717] Extracting meta information...
Some screenshots of the last steps before it seems to be stuck.