1. 系統(tǒng)提供的模板,systick延時(shí)函數(shù)如下,我看了幾個(gè)工程,不管定義的時(shí)鐘是多少兆,#define SYSCLK_FREQ_120MHz_HSE? 120000000,p_us都是systemcoreclock除以8M,這是為什么?
void Delay_Init(void)
{
p_us=SystemCoreClock/8000000;
p_ms=(uint16_t)p_us*1000;
}
2. CH32V307的中斷函數(shù)向量表在哪個(gè)文件里面,想使用串口4中斷,不知道如何定義?
void USART4_IRQHandler(void) __attribute__((interrupt("WCH-Interrupt-fast")));,還是
void UART4_IRQHandler(void) __attribute__((interrupt("WCH-Interrupt-fast")));
3. 在MounRiver Studio中,類似于其它iar / keil IDE中的Find in files功能能否實(shí)現(xiàn),在哪里?如果有這個(gè)功能,上面的問題就解決了,一找就知道了。另外,MounRiver 能不能實(shí)現(xiàn)選定文本自動縮進(jìn)排版功能?
謝謝大家,預(yù)祝春節(jié)愉快!