⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 led.c

📁 blob2.0.4.tar,Blob的源码,完整
💻 C
字号:
/*------------------------------------------------------------------------- * Filename:      led.c * Version:       $Id: led.c,v 1.2 2001/08/06 22:44:52 erikm Exp $ * Copyright:     Copyright (C) 1999, Erik Mouw * Author:        Erik Mouw <J.A.K.Mouw@its.tudelft.nl> * Description:    * Created at:    Mon Aug 16 15:39:12 1999 * Modified by:   Erik Mouw <J.A.K.Mouw@its.tudelft.nl> * Modified at:   Mon Aug 16 16:55:21 1999 *-----------------------------------------------------------------------*//* * led.c: simple LED control functions * * Copyright (C) 1999 2001  Erik Mouw (J.A.K.Mouw@its.tudelft.nl) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * *//* * All functions assume that the LED is properly initialised by the code * in ledasm.S. * */#ident "$Id: led.c,v 1.2 2001/08/06 22:44:52 erikm Exp $"#ifdef HAVE_CONFIG_H# include "config.h"#endif#include "led.h"#include "sa1100.h"static int led_state;void led_on(void){	GPSR = LED_GPIO;	led_state = 1;}void led_off(void){	GPCR = LED_GPIO;	led_state = 0;}void led_toggle(void){	if(led_state)		led_off();	else		led_on();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -