By default the bluetooth module HC-05 sets baud rate at 38400, data bits 8, Stop bits 1 All schematics of this bluetooth module can be found at : http://pan.baidu.com/s/1o6BiNDS I used a USB-> TTL usb module connecting to the bluetooth module. Rx ->…
http://www.cnblogs.com/pang123hui/archive/2011/05/29/2309888.html 在Linux下的串口调试一直使用minicom,虽说Linux的精髓不崇尚图形界面,但有时候图形界面下确实有着不少的好处,而Linux下minicom最好的替代品就算cutecom了. 首先在电脑上安装 cutecom: $sudo apt-get install cutecom 运行 $sudo cutecom 而USB转串口线推荐大家使用 pl2303,这个Li…
1 ES Module 规范 ES Module 是目前使用较多的模块化规范,在 Vue.React 中大量使用,大家应该非常熟悉.TypeScript 中的模块化与 ES 类似. 1.1 导出模块 导出模块有两种方式:按需导出 和 默认导出. 按需导出是使用 export 关键字,将需要导出的成员(变量.函数.对象等)依次导出: export const xxx = '' export const xxx = () => {} 一个模块中可以有多个按需导出,但只能有一个默认导出.假设默认导出…
最近一直在学习其他,导致博客就疏忽了,很不好(其实就是自己懒了......). -- 为什么要使用 .bash_profile和.bashrc ? 在平常的使用中,有些文件夹或者命令很长,在执行时需要键入很长的文件路径来找到这个文件. 这样太繁琐了,我应该更记录一些东西来代替我冗余的命令和文件路径 -- .bash_profile和.bashrc 是什么? 是环境变量的意思,所谓环境变量,就是为了简化定义你的文件路径和命令所产生的. 使得在输入时方便快捷的找到你定义好的路径. -- .bash_…
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding…
https://stackoverflow.com/questions/15636367/nodejs-require-a-global-module-package 1  export NODE_PATH="$(npm config get prefix)/lib/node_modules" 2 2…
#include <linux/init.h>#include <linux/module.h>#include <linux/kernel.h> static int hello_init(void){ printk(KERN_ALERT "hello world!\n"); return 0;} static void hello_exit(void){ printk(KERN_ALERT "exit ok!\n");} mo…
1. mycdev.c #include <linux/init.h> #include <linux/module.h> #include <linux/cdev.h> #include <linux/fs.h> #define MAJOR_NUM 250 struct mycdev { struct cdev cdev; }; int mycdev_open(struct inode *inode, struct file *file) { printk…
转自:http://www.07net01.com/linux/2016/02/1232094.html 参照1:http://blog.csdn.net/girlkoo/article/details/44536447 参照2:http://blog.csdn.net/girlkoo/article/details/44626011 2017-02-04 22:52:54 目录: 1. uboot 的移植 (1)首先是习惯性的make distclean (2)参考上面文档,我的参考平台是mx…
PIC24FJ64GB002 with bluetooth USB dongle I will explain my project (how to control a bluetooth USB dongle by PIC24FJ64G002 on HCI protocol layer) step by step. I recommend you to check your bluetooth USB dongle. Some dongle has a hub construction. He…