📄 beep.c
字号:
/****************************************Copyright (c)**************************************************
**
**
**
**
**--------------File Info-------------------------------------------------------------------------------
** File name: BEEP.c
** Last modified Date:
** Last Version: 1.0
** Descriptions: 蜂鸣器
**
**------------------------------------------------------------------------------------------------------
** Created by: 潘妙青
** Created date: 2002-2-25
** Version: 1.0
** Descriptions: The original version
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
********************************************************************************************************/
#include "config.h"
#define __SRC
#include"BEEP.h"
#undef __SRC
volatile uint8 beep_time = 0;
void beep_init(void)
{
IO0DIR = IO0DIR | BEEPCON;
}
void beep(void)
{
beep_time = 40; //0.2s
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -