例如:
int main(void)
{
// Setup the system clock to run at 50 Mhz from PLL with crystal reference
SysCtlClockSet(SYSCTL_SYSDIV_4|SYSCTL_USE_PLL|SYSCTL_XTAL_16MHZ|SYSCTL_OSC_MAIN);
// Enable and configure the GPIO port for the LED operation.
选择SysCtlClockSet 按F3 自动打开sysctl.h文件 找到
extern void SysCtlClockSet(uint32_t ui32Config);
接着怎么查看 SysCtlClockSet这个函数的原代码
谢谢。