- 博客(4)
- 收藏
- 关注
原创 stm32串口相关笔记:HAL_UART_Transmit的区别
1. HAL_UART_Transmit 阻塞模式。初始化后可直接使用,无需中断。在实时性要求较高的RTOS中不宜使用。2.HAL_UART_Transmit_IT 非阻塞模式,通过中断方式发送。必要准备工作:1)使能USARTx_IRQn中断2)启用中断服务函数USARTx_IRQHandler,在里面清除标志位。每发送一个字符会进一次USARTx_IRQHandler。3. HAL_UART_Transmit_DMA 非阻塞模式,先发送到DMA,再通过中断方式发送。必要准备工作:.
2021-04-29 16:06:30 12405
原创 VHDL练习_基本语法
--21片选library IEEE;USE IEEE.STD_LOGIC_1164.ALL;entity mux21 is port ( a,b: IN STD_LOGIC; s: IN STD_LOGIC; y: OUT STD_LOGIC );END entity mux21;architecture one of mux21 is begin y<=a...
2018-02-23 16:23:36 447
原创 C练习_双向链表操作
#include <stdio.h>#include <stdlib.h>typedef struct snode{ int val; struct snode *pre; struct snode *next;}node, *pnode; //定义双链表节点,其中多数情况使用指针pnode创建新节点pnode creatD...
2018-02-23 16:16:34 193
原创 C练习_大数(数字字符串)相乘
#include <stdio.h>#include <stdlib.h>#include <string.h>int mul(int a[],int b[], int res[]); int str_to_arr(char *str, int *arr);#define N 100 //定义输入数字的最大位数int main(void){...
2018-02-23 16:07:50 964
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人