使用HAL库时无法完成串口同时接收与发送,经过查找资料,发现还有一个LL库可以使用 1.在CubeMX上修改为LL库 2.定义变量与显示 unsigned char UART1_Rx_Buf[MAX_REC_LENGTH] = {0}; //USART1存储接收数据 unsigned char UA ...
分类:
其他好文 时间:
2020-12-19 12:33:21
阅读次数:
1
题目: 题目大意: 在数组中寻找和最大的一段连续的序列 思路: 用贪心的做法,从第一个开始,累加a[i],如果sum<0就把这一段给舍去掉,从新的起点开始,如果sum>max,则进行信息的更新 #include <iostream> using namespace std; const int MA ...
分类:
其他好文 时间:
2020-12-18 12:36:16
阅读次数:
2
Smallest Subtree with all the Deepest Nodes (M) 题目 Given the root of a binary tree, the depth of each node is the shortest distance to the root. Retur ...
分类:
其他好文 时间:
2020-12-17 12:55:47
阅读次数:
3
背景: el-table表格循环的数据,本次发货数量不能大于剩余数量,如果大于剩余数量就默认变为剩余数量 HTML代码: <el-table-column prop="skuDeliveryNum" align="center" label="本次发货数量" min-width="110"> <te ...
分类:
其他好文 时间:
2020-12-16 12:44:23
阅读次数:
2
1.根据屏幕大小改变背景颜色 <style type="text/css"> /* 媒体查询可以根据不同的屏幕尺寸改变不同的样式 */ /* 屏幕最大宽度就是800像素 */ @media screen and (max-width: 399px) { body { background: pink ...
分类:
其他好文 时间:
2020-12-16 12:28:25
阅读次数:
3
题目链接:https://leetcode-cn.com/problems/task-scheduler/ 题意:给你一个大写字母字符串,每个字母表示一类任务,执行每个任务需要消耗一个单位时间,相同任务间必须间隔n,允许某个单位时间内空闲,求执行完所有任务的最小时间。 分析:这个题的题解很不错,值得 ...
分类:
其他好文 时间:
2020-12-16 11:57:47
阅读次数:
2
基于tensorflow的手写数字识别代码 from keras.utils import to_categorical from keras import models, layers, regularizers from keras.optimizers import RMSprop from ...
分类:
其他好文 时间:
2020-12-16 11:52:08
阅读次数:
4
此处的限制是以下几个部分 每一个tcp的网络连接也是一个socket文件 , 所以有文件句柄数限制 系统级:当前系统可打开的最大数量,通过fs.file-max参数可修改用户级:指定用户可打开的最大数量,修改/etc/security/limits.conf进程级:单个进程可打开的最大数量,通过fs ...
分类:
系统相关 时间:
2020-12-15 12:54:25
阅读次数:
10
#include <stdio.h>#include <stdlib.h> int main(){ int add[] = { 1,256,12,621,62,3462,6,89999,87}; int Max=add[0]; int Mini; for (int x = 0; x < g; x++ ...
分类:
编程语言 时间:
2020-12-15 12:25:59
阅读次数:
5
SELECT id FROM users WHERE id = FLOOR( rand() * ( (SELECT max(id) FROM users) - (SELECT min(id) FROM users) ) + (SELECT min(id) FROM users) ); 这是你写的SQ ...
分类:
数据库 时间:
2020-12-15 12:18:35
阅读次数:
5