mdk5 输出 bin 和 asm 文件

工程的配置中, user 的选项卡,after build/rebuild 的两条命令可以设置为 fromelf --text -c -o "$L@L.asm" "#L" fromelf --bin -o "$L@L.bin" "#L"

qt 调用 linux 命令,读取输出信息

class Process : public QObject { Q_OBJECT public: Process() { connect(&m_process, SIGNAL(readyReadStandardOutput()), this, ...

git 生成 ssh key

git 生成 ssh key,执行下面代码即可: git config --global --list git config --global user.name "这里换上你的用户名" git config --global user.email "这里换上你的邮箱" ssh-keyg...

ros 串口库 rosserial

ros 中,用到的串口库是 rosserial。 参考 STM32通过rosserial接入ROS通讯开发 ros-drivers / rosserial yoneken / rosserial_stm32 Hrilug/stm32_roslib 在STM32中实现ROS节点——Rosser...

python 学习笔记

python 3 学习笔记

x5 学习笔记

x5 610 平台, ros 系统平台,学习笔记。

100ask 韦东山 驱动大全 子系统 interrupt 学习笔记

异常与中断的概念及处理流程 异常向量表 _start: b reset ldr pc, _undefined_instruction ldr pc, _software_interrupt ldr pc, _prefetch_abort ldr pc, _d...

cmake 出现大量的警告 deprecated-declarations

只需要修改 CMakeLists.txt,增加下面的属性即可。 set(CMAKE_CXX_FLAGS "-Wno-error=deprecated-declarations -Wno-deprecated-declarations ")

ubuntu 使用 docker

今天先参照 https://www.jianshu.com/p/ddf7c0153644 这个里面的说明写了相应的配置文件,结果一启动容器就报错了。 Creating docker-test_mysql_1 ... Creating docker-test_mysql_1 ... error...

ubuntu 安装 docker

没有安装过 docker 的 ubuntu 安装 docker的步骤: $ sudo apt-get update $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ ...