新版本的keil已经不包含mdk 5了,而且mdk 6的编译速度和性能都好上不少,因此花了一些时间将项目移植到mdk 6。现分享给大家
1.include设置中删除core的include,添加cmsis/core的pack
2.改system_n32wb03x.c 256行函数为
void system_delay_cycles(uint32_t i) {
__asm volatile
(
"SUBS r0, #1 \n"
"BNE system_delay_cycles \n"
"BX LR \n"
);
}
3.ns_delay.h 54行改为"void delay_cycles(uint32_t ui32Cycles) __attribute__((naked));"
4.改asm为armclang(auto select)
5.在n32wb03x.h 45行加入
#define __align(x) __attribute__((aligned(x)))
#define __weak __attribute__((weak))
6.reg_ipcore.h中__INLINE替换为__STATIC_INLINE
7.co_utils.h中__INLINE替换为__STATIC_INLINE(除最后一个static __INLINE不替换)
8.co_list.h中__INLINE替换为__STATIC_INLINE
9.ke_msg.h中__INLINE替换为__STATIC_INLINE
10.co_math.h中__INLINE替换为__STATIC_INLINE(static __INLINE不替换)
11.reg_blecore.h中__INLINE替换为__STATIC_INLINE
|