摘要:
serialEvent()作为串口中断回调函数,需要注意的是,这里的中断与硬件中断有所不同,这个回调函数只会在loop()执行完后才会执行,所以在loop()里的程序不能写成阻塞式的,只能写成轮询式的。 /*通过串口控制LED灯的亮灭,输入o开灯,输入f关灯*/ #define led 13 cha 阅读全文
摘要:
串口dma接收配置 使用的芯片为stm32F407 接收串口为串口六 __IO uint8_t Rx_data[12]={0}; //dma数据存放数组 void Initial_UART6(unsigned long baudrate) { GPIO_InitTypeDef GPIO_InitSt 阅读全文
摘要:
位(bit) 比特是计算机的最小信息单位。只能存储0和1。 字节(byte) 一个字节就是八位。 字(word) 处理器处理数据的自然大小(寄存器大小)。 今天遇到的最常见的字长为8、16、32和64位,但其他大小也是可能的。 例如,有一些36位机器,甚至12位机器。 结论 stm32是32位处理器 阅读全文
摘要:
串口发送 重写fputc函数 /* 优点 直接使用printf函数,发送数据长度无限制,不需要额外的数组空间 缺点 只能对应一个串口,暂时没想到解决方案 */ //头文件中要包含 stdio.h 然后就可以正常使用printf了 int fputc(int ch ,FILE *F) { HAL_UA 阅读全文
摘要:
实测有效 nmap -sS -Pn -p 80 -n --open --min-hostgroup 1024 --min-parallelism 10 --host-timeout 30 -T4 -v -oG results-all.txt -iL ipduan.txt 各参数的含义 -sS:使用S 阅读全文
摘要:
python的pip源 pip install pip -U pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple apt的源 修改 /apt/etc/sources.list 里的网址 https://mi 阅读全文
摘要:
int big = 2; int push = 3; int datain = 4; void setup() { Serial.begin(9600); pinMode(big, OUTPUT); pinMode(push, OUTPUT); pinMode(datain, OUTPUT); } 阅读全文
摘要:
在工作目录编辑c_cpp_properties.json文件 添加defines字段 { "configurations": [ { "name": "Win32", "includePath": [ "D:\\Program Files (x86)\\Arduino\\tools\\**", "D 阅读全文
摘要:
JS获取格式为YYYY MM DD的当前日期 阅读全文