STM32CubeMX—串口空闲中断+DMA接收 1)、串口一配置。 

2)、开启中断模式 
3)、生成工程代
' O" M n& Q1 n! e4 G5 a
1 b; V! D8 m$ R8 a7 u3 d0 |" v/ [
在stm32g0xx_it.c中添 - <p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">uint8_t recv_end_flag=0;</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">void USART1_IRQHandler(void)$ d7 ?/ H0 T+ M. w* R. P! B7 K+ J
- {
/ D/ l7 t* { t3 c- E1 c/ q - /* USER CODE BEGIN USART1_IRQn 0 */
- ^# D- h8 @9 V4 W( C - recv_end_flag = 1;
' P- `4 b) L, ? [ - __HAL_UART_CLEAR_IDLEFLAG(&huart1);
# P! j5 t; V2 E4 h- b - /* USER CODE END USART1_IRQn 0 */
0 o& z m) |7 O& U5 R( @9 @ - HAL_UART_IRQHandler(&huart1);0 `' y) g, F# u/ i
- /* USER CODE BEGIN USART1_IRQn 1 */</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px"> /* USER CODE END USART1_IRQn 1 */</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">}</font></font></font></p>
复制代码
8 Z/ j4 ^- @) q在main.c中加上 - <p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">#include"stm32g0xx_it.h"</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">extern uint8_t recv_end_flag;</font></font></font></p>) |- U5 c# {! Q; h. x
- <p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px">MX_GPIO_Init();8 j% x" V, ?, E
- MX_DMA_Init();) C' c4 ~7 \- u
- MX_ADC1_Init();
# ~7 D8 e3 o( _; c" O - MX_USART1_UART_Init();
* ?1 C) ]' o2 ^ - /* USER CODE BEGIN 2 */" L1 }8 _# d/ x$ D
- __HAL_UART_ENABLE_IT(&huart1, UART_IT_IDLE);2 b3 j1 r; B5 d, x# W: V: \
- HAL_UART_Receive_DMA(&huart1,rx_buffer,sizeof(rx_buffer));( j0 \9 Z. q& f+ Y- p) m
- /* USER CODE END 2 */</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px"> /* Infinite loop */& b+ ?7 k4 l. E. G, k
- /* USER CODE BEGIN WHILE */4 b* o% n+ }4 c6 ]6 g
- while (1)6 M$ P' W. Y% a8 H/ K
- {</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px"> HAL_GPIO_WritePin(GPIOC,GPIO_PIN_13,GPIO_PIN_RESET);
4 l8 O8 o' W- e' W: i - HAL_Delay(200);
% G% D k% u* d - HAL_GPIO_WritePin(GPIOC,GPIO_PIN_13,GPIO_PIN_SET);</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px"> HAL_Delay(200);
1 Z) t8 p/ M: \- b# j - if(recv_end_flag ==1){
2 {5 I. t: K4 z a" N7 a - + Q) n" x9 d$ E* T/ Z- b* p' b& y4 U
- }( I+ B& P0 g* w6 g% X, M
- /* USER CODE END WHILE */</font></font></font></p><p style="line-height: 26px;"><font color="rgb(77, 77, 77)"><font face="-apple-system, " "=""><font style="font-size: 16px"> /* USER CODE BEGIN 3 */
- g9 [9 Y0 {7 N - }2 Y9 c1 v* ?3 \/ Z7 M
- /* USER CODE END 3 */- n; A/ y" @" U- j6 E. o
- }</font></font></font></p>
复制代码 2 q9 t# H- {- t7 k# `/ h
' w1 R8 j+ H4 \+ v, f; E" g
|