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

📄 wlc_led.h

📁 wi-fi sources for asus wl138g v2 pci card
💻 H
字号:
/* * Required functions exported by the wlc_led.c * to common (os-independent) driver code. * * Copyright 2005-2006, Broadcom Corporation * All Rights Reserved.                 *                                      * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE. * * $Id$ */#ifndef _wlc_led_h_#define _wlc_led_h_#ifdef WLLEDextern led_info_t *wlc_led_attach(wlc_pub_t *pub, uint d11_unit, void *wlc);extern void wlc_led_detach(led_info_t *ledh);extern void wlc_led_init(led_info_t *ledh, uint32 *gpio);extern void wlc_led_event(led_info_t *ledh);extern void wlc_led_timer(led_info_t *ledh);extern void wlc_led_blink_timer(led_info_t *ledh);extern void wlc_led_radioset(led_info_t *ledh, bool led_state);extern void wlc_led_activityset(led_info_t *ledh, bool led_state);#else#define wlc_led_attach(a, b, c) (led_info_t *)0x0dadbeef#define wlc_led_detach(a) do {} while (0)#define wlc_led_init(a, b) do {} while (0)#define wlc_led_event(a) do {} while (0)#define wlc_led_timer(a) do {} while (0)#define wlc_led_blink_timer(a) do {} while (0)#define wlc_led_radioset(a, b) do {} while (0)#define wlc_led_activityset(a, b) do {} while (0)#endif /* WLLED */#endif	/* _wlc_led_h_ */

⌨️ 快捷键说明

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