?? 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 + -