This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 访问 http://192.168.1.1/cgi-bin/telnet.asp 开启猫的 telnet 服务 | |
| 然后 telnet 192.168.1.1 8023 用户名 密码 admin chzhdpl | |
| 查看猫的配置文件: cat /boaroot/html/romfile.cfg 里面超级管理员密码 宽带账号都在里面了 | |
| 其实可以直接尝试默认的超级密码登陆 CMCCAdmin CMCCAdminzfly7aI2 或者 CMCCAdmin chzhdpl | |
| 进入后台可以改下 桥接 这样就能使用自己的路由器来拨号了 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INAV 有点主要是飞控方便 穿越机的各种飞控都行 而且集成度高 OSD 电流计全集成 缺点就是 还处于原始飞控阶段 不是成熟的多轴飞控 | |
| 安全配置: | |
| 》不要使用开关解锁 坚持使用摇杆解锁 更加安全 开关解锁受接收机失控的影响 | |
| 》设置飞行模式 新手建议 ANGLE 模式 并且模式开关的整个范围都是 ANGLE 模式 | |
| 》再设置一个 RTH 和 POS 模式基本够用了 ,ALT HOLD 定高模式也要覆盖整个通道范围 | |
| 》关闭遥控器 观察通道上开启的模式 关闭遥控后 要满足同时开启 RTH + POSH + ALTH + ANGLE 同时 FAILSAFE 的降落伞变成红色 | |
| 》检查参数 failsafe_throttle_low_delay 设置成 0 否则最低油门下降 有可能电机关闭 | |
| 》不要设置 HOME REST 开关 基本用不到 而且容易出问题 | |
| 》接收机的 failsafe 模式最好设置成 no pulses (设置后观察通道变化) | |
| 》INAV 默认定高 气压计的权重太小了 导致室内定高的时候 受陀螺仪影响 高度逐渐升高 解决方法就是设置气压计权重为 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "stdafx.h" | |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <Windows.h> | |
| #define RBUFFER_INIT_LEN 5 | |
| #define RBUFFER_INC_LEN 1.0 | |
| class rbuffer | |
| { | |
| public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DIR="admin,adm,phpinfo.php" | |
| PORT="80,8080" | |
| ip2num() | |
| { | |
| local IFS='.' | |
| local ADDR | |
| local num=0 | |
| local count=0 |
NewerOlder