请问F28M35中
#define InitAnalogSystemClock (unsigned short (**) (unsigned short ClockDivider)) 0x0024021E
怎么理解
Eason Wang:
Move to the right forum
请问F28M35中
#define InitAnalogSystemClock (unsigned short (**) (unsigned short ClockDivider)) 0x0024021E
怎么理解
user4151188:
回复 Eason Wang:
什么意思,应该在哪个论坛
请问F28M35中
#define InitAnalogSystemClock (unsigned short (**) (unsigned short ClockDivider)) 0x0024021E
怎么理解
Jay:
你好。
这个定义是定义了一个函数指针的指针,也就是说模拟子系统时钟初始化函数的指针存放在0x0024021E处。
调用时如下:
(**InitAnalogSystemClock)(ClockDivider);
其中,ClockDivider为分频系数。