位操作里,main中为什么不引用sys.h也是可以的

2019-07-20 21:05发布

#include "stm32f4xx.h"
#include "delay.h"
#include "led.h"

int main(void)
{
        delay_init(168);
        LED_Init();
       
        while(1)
        {
                PFout(9) = 1;
                PFout(10) = 1;
                delay_ms(500);
               
                PFout(9) = 0;
                PFout(10) = 0;
                delay_ms(500);
               
        }
}

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。