使用外挂 NOR FLASH 跑程序, 但执行速度有问题 #define LED1_ON GPIOB->BSRR = GPIO_Pin_12 #define LED1_OFF GPIOB->BRR = GPIO_Pin_12 Void main(void) { While(1) { LED1_ON; Delay1S(); // 1Sec 延迟 LED1_OFF; Delay1S(); } 在STM32 内 Flash 执行延迟为1sec, 但在 NOR FLASH 执行却延迟16sec ?? |