4.模块化编程
模块化编程:
注意事项:
.c 文件
.h 文件
DELAYMS.h
#ifndef _DELAYMS_H_ #define _DELAYMS_H_ // xms 代表需要延时的毫秒数 void delay_ms(unsigned int xms); //@11.0592MHz #endif
#include <INTRINS.H> void delay_ms(unsigned int xms) //@11.0592MHz { unsigned char i, j; while(xms--){ _nop_(); i = 2; j = 199; do { while (--j); } while (--i); //每执行一次 1ms } }
转载于:https://zhuanlan.zhihu.com/p/522779621
本文来自博客园,作者:xiaoxie001,转载请注明原文链接:https://www.cnblogs.com/xiaoxie001/p/16332603.html