找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
楼主: 3020358247

网件R6800刷padavan教程(MTK7621+7615+7615 解锁4*4和160MHZ,超K2P 红米AC2100)

 火.. [复制链接]
发表于 2021-9-6 22:59 | 显示全部楼层
用用看到底咋样
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-9-10 11:42 | 显示全部楼层
这么多PADAVAN,楼主推荐哪个?支持LED灯吗?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-9-12 19:31 | 显示全部楼层
测试完了,HIBOY信号最好,BYBYME功能最多,不是很在乎信号的用BYBYME吧

点评

刷机后Hiboy和原厂固件比哪个信号强?  详情 回复 发表于 2022-3-8 13:53
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-9-24 08:23 | 显示全部楼层
厉害厉害,感谢楼主
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-10-5 22:26 | 显示全部楼层
留下足迹备用
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-10-5 22:26 | 显示全部楼层
留下足迹备用
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-10-6 11:41 来自手机 | 显示全部楼层
楼主提供的固件基本都刷了,只改了区域其他没有改,可能不会设置,但信号是很明显不如原版的,原版的在我这儿比r7000要强一点,但比刷机6800强很多
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-10-15 15:06 | 显示全部楼层
本帖最后由 3020358247 于 2021-10-15 15:15 编辑

按键,灯适配,可以参考下面的信息
#if defined(R6800)
                if(gpio_pin == 17 || gpio_pin == 5)
#endif
                gpio_dir(gpio_pin, GPIO_DIR_OUT);
#endif

#if defined(RTCONFIG_WANPORT2)
                /* Turn on WAN RED LED at system start-up if and only if coresponding WAN unit is enabled. */
                if (is_router_mode()) {
                        if ((!strcmp(led_list, "led_wan_red_gpio") && get_dualwan_by_unit(0) != WANS_DUALWAN_IF_NONE) ||
                            (!strcmp(led_list, "led_wan2_red_gpio") && get_dualwan_by_unit(1) != WANS_DUALWAN_IF_NONE))
                                disable = !disable;
                }
#else
#if defined(RTCONFIG_WANRED_LED)
                /* If WAN RED LED is defined, keep it on until Internet connection ready in router mode. */
                if (!strcmp(led_list, "led_wan_red_gpio") && is_router_mode())
                        disable = !disable;
#endif
#endif
#if defined(R6800)
                if(gpio_pin == 17 || gpio_pin == 5)
#endif
#if !defined(RTCONFIG_CONCURRENTREPEATER)
                set_gpio(gpio_pin, disable);
#endif

#ifdef RT4GAC55U        // save setting value
                { int i; char led[16]; for(i=0; i<LED_ID_MAX; i++) if(gpio_pin == (led_gpio_table&0xff)){snprintf(led, sizeof(led), "led%02d", i); nvram_set_int(led, LED_OFF); break;}}
#endif
        }

#if (defined(PLN12) || defined(PLAC56))
        if((gpio_pin = (use_gpio = nvram_get_int("led_pwr_red_gpio")) & 0xff) != 0xff)
#elif defined(MAPAC1750)
        if((gpio_pin = (use_gpio = nvram_get_int("led_blue_gpio")) & 0xff) != 0xff)
#else
        if((gpio_pin = (use_gpio = nvram_get_int("led_pwr_gpio")) & 0xff) != 0xff)
#endif
        {
                enable = (use_gpio&GPIO_ACTIVE_LOW)==0 ? 1 : 0;
#if defined(R6800)
                i2cled_control(I2CLED_WAN_WHITE, 1);
#else
#if !defined(RTCONFIG_CONCURRENTREPEATER)
                set_gpio(gpio_pin, enable);
#endif
#endif
#ifdef RT4GAC55U        // save setting value
                { int i; char led[16]; for(i=0; i<LED_ID_MAX; i++) if(gpio_pin == (led_gpio_table&0xff)){snprintf(led, sizeof(led), "led%02d", i); nvram_set_int(led, LED_ON); break;}}
#endif
        }

        // Power of USB.
        if((gpio_pin = (use_gpio = nvram_get_int("pwr_usb_gpio")) & 0xff) != 0xff){
                enable = (use_gpio&GPIO_ACTIVE_LOW)==0 ? 1 : 0;
                set_gpio(gpio_pin, enable);
        }
        if((gpio_pin = (use_gpio = nvram_get_int("pwr_usb_gpio2")) & 0xff) != 0xff){
                enable = (use_gpio&GPIO_ACTIVE_LOW)==0 ? 1 : 0;
                set_gpio(gpio_pin, enable);
        }

#if defined(R6800)
        if(which == LED_WPS || which == LED_ALL)
#endif
        set_gpio(gpio_nr, v);
#if defined(R6800)
        if(which == LED_WAN)
                i2cled_control(I2CLED_WAN_WHITE, mode);
        else if (which == LED_USB)
                i2cled_control(I2CLED_USB_WHITE, mode);
        else if (which == LED_5G)
                i2cled_control(I2CLED_5G_WHITE, mode);
        else if (which == LED_2G)
                i2cled_control(I2CLED_2G_WHITE, mode);
        else if (which == LED_POWER)
                i2cled_control(I2CLED_PWR_WHITE, mode);
#endif
#ifndef HND_ROUTER
        if (mode == LED_ON) {
                start_bled(use_gpio);
        }
#endif
        return 0;
}


点评

这些代码该放哪里?我来测试一下。  发表于 2022-9-24 15:52
请问怎么使用  详情 回复 发表于 2022-1-1 16:02
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-11-1 15:39 | 显示全部楼层
ag0 发表于 2021-7-17 17:11
大佬们,一直报这个错误是什么意思呢 Address 192.168.1.1/255.255.255.0 cannot be used on interface net ...

net10?你电脑有这么多网卡驱动吗?如果按着流程,安装winpcap,刷机,应该不会出问题。不过我第一次用台式机刷也没成功,换了一台笔记本刷成功了,台式机才装不久,感觉可能跟运行库之类的有关。

点评

ag0
我也不清楚,我只连接一台设备也显示net10 / 11 / 12  详情 回复 发表于 2021-12-22 19:37
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-11-8 20:34 | 显示全部楼层
奥~~~原来网件也不全是博通方案啊。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-11-18 14:43 | 显示全部楼层
支持一个。....
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-11-24 08:41 来自手机 | 显示全部楼层
收藏备用,支持一个
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-12-13 09:11 | 显示全部楼层
按照教程刷好,从这个固件刷其他,或者刷回官方,怎么操作

点评

一样的步骤,换个固件文件名称  详情 回复 发表于 2021-12-14 20:33
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-12-14 20:33 | 显示全部楼层
朴实的青春 发表于 2021-12-13 09:11
按照教程刷好,从这个固件刷其他,或者刷回官方,怎么操作

一样的步骤,换个固件文件名称

点评

会不会和k2p那样刷丢了errp  详情 回复 发表于 2021-12-15 10:36
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-12-15 10:36 | 显示全部楼层
3020358247 发表于 2021-12-14 20:33
一样的步骤,换个固件文件名称

会不会和k2p那样刷丢了errp
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-20 09:30

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表