3 Star 0 Fork 0

MAMAMA / MyNotes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

一些个人写的日志

1. Example.md

Markdown文件书写格式

2. Ubuntu-Uboot.md

如何制作一个ubuntu的启动盘

3. Ubuntu-ISO.md

如何制作ubuntu镜像

4. Win10-openssh-client

在win10下打开ssh的方法:

  • 打开windows powershell(Admin)
  • 输入Add-WindowsCapability -Online -Name OpenSSH-Client

5. Pibot-Protocol-plus.md

修改过的pibot通信协议,唯一改动就是加了帧尾0x7E

6. vscode-Cplus

如何应用vscode配置C++开发环境(WIN32/Ubuntu)

7. Chocolatey.md

windows下的包管理工具choco的使用以及ROS的安装

8. Win10-ROS.md

windows下ROS开发环境的搭建

9. Ubuntu-Vnc.md

在Ubuntu下配置vnc server

10. Raspberry-Boot-Task.md

how to set up boot task for raspberry pi

11. stm32 usb串口驱动问题

如果出现黄色叹号,主要的原因有:

  1. VBUS_SENSING的问题,如果没有用到vbus,必须把vbus相关引脚禁用,关注下是否启用了VBUS_SENSING_ENABLED
  2. Heap_Size的问题,默认的0x200的大小肯定会出问题,可以改大一些,比如改到0x800

12. 树莓派时间同步

  1. sudo timedatectl set-ntp true启用时间同步
  2. sudo dpkg-reconfigure tzdata设置时间
  3. date查看时间

13. Raspberry-Createap.md

在树莓派上建立AP热点遇到的问题

14. ubuntu设置静态ip

ifconfig #列出可用的网卡
sudo vim /etc/network/interfaces
#增加下列内容
auto ethX 
iface ethX inet static 
address 192.168.1.101 
netmask 255.255.255.0
#如果设置了gateway,但gateway不存在的话会导致上不了网
gateway 192.168.1.1
#保存,然后重启网络
/etc/init.d/networking restart
  • 开了两个网卡可能会冲突,可以用sudo ifconfig eth0 down(up)来暂时关闭或打开有线网卡

15. ubuntu配置ttySx权限

#列出所属组别
ls -l /dev/ttyS*
crw-rw---- 1 root dialout 4, 64 3月  18 09:24 /dev/ttyS0
crw-rw---- 1 root dialout 4, 65 3月  18 09:24 /dev/ttyS1
crw-rw---- 1 root dialout 4, 74 3月  18 09:24 /dev/ttyS10
crw-rw---- 1 root dialout 4, 75 3月  18 09:24 /dev/ttyS11
#可以看到ttyS属于dialout组别,把当前用户添加进dialout组别
ubuntu@ubuntu-desktop:~$ sudo usermod -a -G dialout ubuntu
sudo reboot
MIT License Copyright (c) 2020 MAMAMA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

一些笔记 展开 收起
CMake 等 2 种语言
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/MAMAMAisused/MyNotes.git
git@gitee.com:MAMAMAisused/MyNotes.git
MAMAMAisused
MyNotes
MyNotes
master

搜索帮助