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.

在ccs6.0版本下,使用driverlib方法新建一个工程,为何在.h库中,函数参数列表中没有了baseaddress这个参数?

Other Parts Discussed in Thread: MSP430FR5969

新手,使用的ccs6.0版本,自己使用driverlib方法新建一个工程,打开cs.h文件,发现函数声明为

extern void CS_setDCOFreq(uint16_t dcorsel,
uint16_t dcofsel);

在导入的例程文件中,cs.h文件,函数声明为:

extern void CS_setDCOFreq(uint32_t baseAddress,
uint16_t dcorsel,
uint16_t dcofsel);

好多其他的文件也是一样,都没哟了baseAddress参数,请问是什么原因?