This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
不好意思不知道MSP432的问题发表在哪里,所以就在430里面发表。
在调MSP432的时候,用到了lib里面提供的delay函数,但调试的时候发现出不来,于是跟进去看,发现在msp_compatibility.h这个头文件里面定义了,但里面竟然是while(1),其它还有好几个函数都是,请问这是怎么回事,我该怎么修改或使用这些函数呢?
如你图中所示,你现在看的是msp compatibility.h,也就是说这里的函数是为了和以前的普通430产品兼容而做的一些标准函数。
在你看到的这些while(1)定义的函数后面都有注释:/* Using not-supported MSP430 intrinsic. No replacement available. */ }
意思说以前在430里面用的这些函数在MSP432中是没有标准替换函数的。也就是说这些都是不可以用的。。。。。。