1 Star 0 Fork 1

蒹葭平台/smartWinery51

forked from Lisq/smartWinery51 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
misc.c 348 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lisq 提交于 2020-05-23 09:38 . 增加OLED显示部分
#include <REG51.h>
#include <INTRINS.H>
#include "misc.h"
extern void _delay(unsigned i)
{
int j = 500;
_nop_();
while (i--)
{
while (j--)
;
}
}
void delayms(uint count) //@12.000MHz
{
unsigned char i, j;
do
{
_nop_();
_nop_();
_nop_();
i = 11;
j = 190;
do
{
while (--j)
;
} while (--i);
} while (count--);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jianjia_paltform/smartWinery51.git
git@gitee.com:jianjia_paltform/smartWinery51.git
jianjia_paltform
smartWinery51
smartWinery51
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385