全部博文(685)
发布时间:2014-09-29 15:55:43
package/basefiles/config.in中的所有菜单内容均在menuconfig-->Image configuration下。## Copyright (C) 2007-2013 OpenWrt.org# Copyright (C) 2010 Vertical Communications## This is free software, licensed under.........【阅读全文】
发布时间:2014-09-28 17:19:52
/** * mii_check_gmii_support - check if the MII supports Gb interfacesnetdev_info * @mii: the MII interface */int mii_check_gmii_support(struct mii_if_info *mii){ int reg; reg = mii->mdio_read(mii->dev, mii->phy_id, MII_BMSR); if (reg & BMSR_ESTATEN) {&nbs.........【阅读全文】
发布时间:2014-09-28 15:27:46
linux-3.3.8\drivers\tty\serial\serial_core.c------>uart_set_options,可使用该函数接口设置串口波特率。原文地址:http://bbs.chinaunix.net/thread-1975888-1-1.html我的mini2440板串口终端的默认波特率是115200 但是我的USB转串口线很垃圾 显示乱码, 在9600下可以正常显示,我想降低波特率。 不知道改哪.........【阅读全文】
发布时间:2014-09-26 20:05:10
# # Copyright (C) 2010 OpenWrt.org## This is free software, licensed under the GNU General Public License v2.# See /LICENSE for more information.#include $(TOPDIR)/rules.mkinclude $(INCLUDE_DIR)/image.mkUIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImagedefine MkuImagemkimage -A arm -O lin.........【阅读全文】
发布时间:2014-09-26 16:10:21
#!/bin/sh /etc/rc.common# (C) 2008 openwrt.orgSTART=96#从/etc/config目录中的system文件中获取配置参数。load_led() { local name local sysfs local trigger local dev local mode local default local delayon local delayoff local interval&nb.........【阅读全文】