[STM32F1] 如何关闭和开启所有中断

[复制链接]
 楼主| lmn2005 发表于 2023-12-1 12:04 | 显示全部楼层 |阅读模式
本帖最后由 lmn2005 于 2023-12-3 09:27 编辑

用STM32F103普通IO口驱动54个WS2812,延时采用最原始的空指令。结果总是出现某个WS2812显示错误色的问题,
问题的原因可能是STM32内部的某个中断导致。
所以想用普通IO口驱动WS2812,就必须知道如何控制中断的关闭和开启。

从网上得知HAL库中有两个函数分别是控制中断的关闭和开启的:
__disable_irq(); //关闭所有中断
__enable_irq();//打开所有中断
但实际应用中发现,
当使用__disable_irq(); 关闭所有中断后,
再用__enable_irq();打开所有中断
就会出现HAL_Delay(xx)不能再使用,所以直接用上述方式也不可取,至此陷入迷茫。
那么,究竟该如何正确地关闭和开启STM32的中断呢?

香水城 发表于 2023-12-3 21:16 | 显示全部楼层
如果你使用CubeMx基于HAL库组织代码。

库默认开启systick以及DMA中断。

_disable_irq(); 的确会影响systick中断,进而影响延时计数,有时可能导致卡死。

你系统里开启了哪些中断是不难搞清楚的。

评论

没有开启其他中断  发表于 2023-12-4 18:08
我执行了_disable_irq(); 没有直接运行HAL_Delay(xx),而是在__enable_irq();后再运行HAL_Delay(xx)  发表于 2023-12-4 18:08
Wxy8030 发表于 2023-12-3 22:04 来自手机 | 显示全部楼层
香水城 发表于 2023-12-3 21:16
如果你使用CubeMx基于HAL库组织代码。

库默认开启systick以及DMA中断。

不对吧,楼主明确说了延时用的空指令,,,
不过空指令延时不能用、确实非常奇怪,楼主确定延时用的是空指令?

评论

驱动WS2812延时用空指令,每秒闪灯用HAL_Delay(xx)  发表于 2023-12-4 18:10
classroom 发表于 2023-12-4 15:11 | 显示全部楼层
关闭所有中断
probedog 发表于 2023-12-4 15:11 | 显示全部楼层
开启所有中断
mnynt121 发表于 2023-12-5 11:01 | 显示全部楼层
可以使用以下代码来关闭所有中断:

__disable_irq();

评论

问题是用了之后,无论如何,HAL_Delay(xx)就不能再使用,即使用__enable_irq();重新开启中断。  发表于 2023-12-5 11:54
earlmax 发表于 2023-12-5 12:36 | 显示全部楼层
使用__enable_irq()函数
usysm 发表于 2023-12-5 13:38 | 显示全部楼层
开启所有中断:

将系统定时器控制器的中断使能位(TIMx_DIER.UDE)设为1,以允许更新中断。
将系统定时器控制器的中断标志位(TIMx_SR.UIF)设为1,以清除任何以前的中断标志。
将NVIC的对应中断使能位(NVIC_EN[n].EN)设为1,以允许该中断。
elsaflower 发表于 2023-12-5 18:08 | 显示全部楼层
// 关闭所有中断
__HAL_AFIO_REMAP_ALL_EXTI_INPUTS();
jonas222 发表于 2023-12-5 19:14 | 显示全部楼层
在stm32f1xx_hal_conf.h文件
 楼主| lmn2005 发表于 2023-12-6 08:19 | 显示全部楼层

stm32f1xx_hal_conf.h里面好像没有:

  1. /**
  2.   ******************************************************************************
  3.   * [url=home.php?mod=space&uid=288409]@file[/url]    stm32f1xx_hal_conf.h
  4.   * [url=home.php?mod=space&uid=247401]@brief[/url]   HAL configuration file.
  5.   ******************************************************************************
  6.   * @attention
  7.   *
  8.   * <h2><center>© Copyright (c) 2017 STMicroelectronics.
  9.   * All rights reserved.</center></h2>
  10.   *
  11.   * This software component is licensed by ST under BSD 3-Clause license,
  12.   * the "License"; You may not use this file except in compliance with the
  13.   * License. You may obtain a copy of the License at:
  14.   *                        opensource.org/licenses/BSD-3-Clause
  15.   *
  16.   ******************************************************************************
  17.   */

  18. /* Define to prevent recursive inclusion -------------------------------------*/
  19. #ifndef __STM32F1xx_HAL_CONF_H
  20. #define __STM32F1xx_HAL_CONF_H

  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif

  24. /* Exported types ------------------------------------------------------------*/
  25. /* Exported constants --------------------------------------------------------*/

  26. /* ########################## Module Selection ############################## */
  27. /**
  28.   * @brief This is the list of modules to be used in the HAL driver
  29.   */

  30. #define HAL_MODULE_ENABLED
  31.   /*#define HAL_ADC_MODULE_ENABLED   */
  32. /*#define HAL_CRYP_MODULE_ENABLED   */
  33. /*#define HAL_CAN_MODULE_ENABLED   */
  34. /*#define HAL_CAN_LEGACY_MODULE_ENABLED   */
  35. /*#define HAL_CEC_MODULE_ENABLED   */
  36. /*#define HAL_CORTEX_MODULE_ENABLED   */
  37. /*#define HAL_CRC_MODULE_ENABLED   */
  38. /*#define HAL_DAC_MODULE_ENABLED   */
  39. /*#define HAL_DMA_MODULE_ENABLED   */
  40. /*#define HAL_ETH_MODULE_ENABLED   */
  41. /*#define HAL_FLASH_MODULE_ENABLED   */
  42. #define HAL_GPIO_MODULE_ENABLED
  43. /*#define HAL_I2C_MODULE_ENABLED   */
  44. /*#define HAL_I2S_MODULE_ENABLED   */
  45. /*#define HAL_IRDA_MODULE_ENABLED   */
  46. /*#define HAL_IWDG_MODULE_ENABLED   */
  47. /*#define HAL_NOR_MODULE_ENABLED   */
  48. /*#define HAL_NAND_MODULE_ENABLED   */
  49. /*#define HAL_PCCARD_MODULE_ENABLED   */
  50. #define HAL_PCD_MODULE_ENABLED
  51. /*#define HAL_HCD_MODULE_ENABLED   */
  52. /*#define HAL_PWR_MODULE_ENABLED   */
  53. /*#define HAL_RCC_MODULE_ENABLED   */
  54. /*#define HAL_RTC_MODULE_ENABLED   */
  55. /*#define HAL_SD_MODULE_ENABLED   */
  56. /*#define HAL_MMC_MODULE_ENABLED   */
  57. /*#define HAL_SDRAM_MODULE_ENABLED   */
  58. /*#define HAL_SMARTCARD_MODULE_ENABLED   */
  59. /*#define HAL_SPI_MODULE_ENABLED   */
  60. /*#define HAL_SRAM_MODULE_ENABLED   */
  61. /*#define HAL_TIM_MODULE_ENABLED   */
  62. /*#define HAL_UART_MODULE_ENABLED   */
  63. /*#define HAL_USART_MODULE_ENABLED   */
  64. /*#define HAL_WWDG_MODULE_ENABLED   */

  65. #define HAL_CORTEX_MODULE_ENABLED
  66. #define HAL_DMA_MODULE_ENABLED
  67. #define HAL_FLASH_MODULE_ENABLED
  68. #define HAL_EXTI_MODULE_ENABLED
  69. #define HAL_GPIO_MODULE_ENABLED
  70. #define HAL_PWR_MODULE_ENABLED
  71. #define HAL_RCC_MODULE_ENABLED

  72. /* ########################## Oscillator Values adaptation ####################*/
  73. /**
  74.   * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
  75.   *        This value is used by the RCC HAL module to compute the system frequency
  76.   *        (when HSE is used as system clock source, directly or through the PLL).
  77.   */
  78. #if !defined  (HSE_VALUE)
  79.   #define HSE_VALUE    8000000U /*!< Value of the External oscillator in Hz */
  80. #endif /* HSE_VALUE */

  81. #if !defined  (HSE_STARTUP_TIMEOUT)
  82.   #define HSE_STARTUP_TIMEOUT    100U   /*!< Time out for HSE start up, in ms */
  83. #endif /* HSE_STARTUP_TIMEOUT */

  84. /**
  85.   * @brief Internal High Speed oscillator (HSI) value.
  86.   *        This value is used by the RCC HAL module to compute the system frequency
  87.   *        (when HSI is used as system clock source, directly or through the PLL).
  88.   */
  89. #if !defined  (HSI_VALUE)
  90.   #define HSI_VALUE    8000000U /*!< Value of the Internal oscillator in Hz*/
  91. #endif /* HSI_VALUE */

  92. /**
  93.   * @brief Internal Low Speed oscillator (LSI) value.
  94.   */
  95. #if !defined  (LSI_VALUE)
  96. #define LSI_VALUE               40000U    /*!< LSI Typical Value in Hz */
  97. #endif /* LSI_VALUE */                     /*!< Value of the Internal Low Speed oscillator in Hz
  98.                                                 The real value may vary depending on the variations
  99.                                                 in voltage and temperature. */

  100. /**
  101.   * @brief External Low Speed oscillator (LSE) value.
  102.   *        This value is used by the UART, RTC HAL module to compute the system frequency
  103.   */
  104. #if !defined  (LSE_VALUE)
  105.   #define LSE_VALUE    32768U /*!< Value of the External oscillator in Hz*/
  106. #endif /* LSE_VALUE */

  107. #if !defined  (LSE_STARTUP_TIMEOUT)
  108.   #define LSE_STARTUP_TIMEOUT    5000U   /*!< Time out for LSE start up, in ms */
  109. #endif /* LSE_STARTUP_TIMEOUT */

  110. /* Tip: To avoid modifying this file each time you need to use different HSE,
  111.    ===  you can define the HSE value in your toolchain compiler preprocessor. */

  112. /* ########################### System Configuration ######################### */
  113. /**
  114.   * @brief This is the HAL system configuration section
  115.   */
  116. #define  VDD_VALUE                    3300U /*!< Value of VDD in mv */
  117. #define  TICK_INT_PRIORITY            0U    /*!< tick interrupt priority (lowest by default)  */
  118. #define  USE_RTOS                     0U
  119. #define  PREFETCH_ENABLE              1U

  120. #define  USE_HAL_ADC_REGISTER_CALLBACKS         0U /* ADC register callback disabled       */
  121. #define  USE_HAL_CAN_REGISTER_CALLBACKS         0U /* CAN register callback disabled       */
  122. #define  USE_HAL_CEC_REGISTER_CALLBACKS         0U /* CEC register callback disabled       */
  123. #define  USE_HAL_DAC_REGISTER_CALLBACKS         0U /* DAC register callback disabled       */
  124. #define  USE_HAL_ETH_REGISTER_CALLBACKS         0U /* ETH register callback disabled       */
  125. #define  USE_HAL_HCD_REGISTER_CALLBACKS         0U /* HCD register callback disabled       */
  126. #define  USE_HAL_I2C_REGISTER_CALLBACKS         0U /* I2C register callback disabled       */
  127. #define  USE_HAL_I2S_REGISTER_CALLBACKS         0U /* I2S register callback disabled       */
  128. #define  USE_HAL_MMC_REGISTER_CALLBACKS         0U /* MMC register callback disabled       */
  129. #define  USE_HAL_NAND_REGISTER_CALLBACKS        0U /* NAND register callback disabled      */
  130. #define  USE_HAL_NOR_REGISTER_CALLBACKS         0U /* NOR register callback disabled       */
  131. #define  USE_HAL_PCCARD_REGISTER_CALLBACKS      0U /* PCCARD register callback disabled    */
  132. #define  USE_HAL_PCD_REGISTER_CALLBACKS         0U /* PCD register callback disabled       */
  133. #define  USE_HAL_RTC_REGISTER_CALLBACKS         0U /* RTC register callback disabled       */
  134. #define  USE_HAL_SD_REGISTER_CALLBACKS          0U /* SD register callback disabled        */
  135. #define  USE_HAL_SMARTCARD_REGISTER_CALLBACKS   0U /* SMARTCARD register callback disabled */
  136. #define  USE_HAL_IRDA_REGISTER_CALLBACKS        0U /* IRDA register callback disabled      */
  137. #define  USE_HAL_SRAM_REGISTER_CALLBACKS        0U /* SRAM register callback disabled      */
  138. #define  USE_HAL_SPI_REGISTER_CALLBACKS         0U /* SPI register callback disabled       */
  139. #define  USE_HAL_TIM_REGISTER_CALLBACKS         0U /* TIM register callback disabled       */
  140. #define  USE_HAL_UART_REGISTER_CALLBACKS        0U /* UART register callback disabled      */
  141. #define  USE_HAL_USART_REGISTER_CALLBACKS       0U /* USART register callback disabled     */
  142. #define  USE_HAL_WWDG_REGISTER_CALLBACKS        0U /* WWDG register callback disabled      */

  143. /* ########################## Assert Selection ############################## */
  144. /**
  145.   * @brief Uncomment the line below to expanse the "assert_param" macro in the
  146.   *        HAL drivers code
  147.   */
  148. /* #define USE_FULL_ASSERT    1U */

  149. /* ################## Ethernet peripheral configuration ##################### */

  150. /* Section 1 : Ethernet peripheral configuration */

  151. /* MAC ADDRESS: MAC_ADDR0:MAC_ADDR1:MAC_ADDR2:MAC_ADDR3:MAC_ADDR4:MAC_ADDR5 */
  152. #define MAC_ADDR0   2U
  153. #define MAC_ADDR1   0U
  154. #define MAC_ADDR2   0U
  155. #define MAC_ADDR3   0U
  156. #define MAC_ADDR4   0U
  157. #define MAC_ADDR5   0U

  158. /* Definition of the Ethernet driver buffers size and count */
  159. #define ETH_RX_BUF_SIZE                ETH_MAX_PACKET_SIZE /* buffer size for receive               */
  160. #define ETH_TX_BUF_SIZE                ETH_MAX_PACKET_SIZE /* buffer size for transmit              */
  161. #define ETH_RXBUFNB                    8U       /* 4 Rx buffers of size ETH_RX_BUF_SIZE  */
  162. #define ETH_TXBUFNB                    4U       /* 4 Tx buffers of size ETH_TX_BUF_SIZE  */

  163. /* Section 2: PHY configuration section */

  164. /* DP83848_PHY_ADDRESS Address*/
  165. #define DP83848_PHY_ADDRESS           0x01U
  166. /* PHY Reset delay these values are based on a 1 ms Systick interrupt*/
  167. #define PHY_RESET_DELAY                 0x000000FFU
  168. /* PHY Configuration delay */
  169. #define PHY_CONFIG_DELAY                0x00000FFFU

  170. #define PHY_READ_TO                     0x0000FFFFU
  171. #define PHY_WRITE_TO                    0x0000FFFFU

  172. /* Section 3: Common PHY Registers */

  173. #define PHY_BCR                         ((uint16_t)0x00)    /*!< Transceiver Basic Control Register   */
  174. #define PHY_BSR                         ((uint16_t)0x01)    /*!< Transceiver Basic Status Register    */

  175. #define PHY_RESET                       ((uint16_t)0x8000)  /*!< PHY Reset */
  176. #define PHY_LOOPBACK                    ((uint16_t)0x4000)  /*!< Select loop-back mode */
  177. #define PHY_FULLDUPLEX_100M             ((uint16_t)0x2100)  /*!< Set the full-duplex mode at 100 Mb/s */
  178. #define PHY_HALFDUPLEX_100M             ((uint16_t)0x2000)  /*!< Set the half-duplex mode at 100 Mb/s */
  179. #define PHY_FULLDUPLEX_10M              ((uint16_t)0x0100)  /*!< Set the full-duplex mode at 10 Mb/s  */
  180. #define PHY_HALFDUPLEX_10M              ((uint16_t)0x0000)  /*!< Set the half-duplex mode at 10 Mb/s  */
  181. #define PHY_AUTONEGOTIATION             ((uint16_t)0x1000)  /*!< Enable auto-negotiation function     */
  182. #define PHY_RESTART_AUTONEGOTIATION     ((uint16_t)0x0200)  /*!< Restart auto-negotiation function    */
  183. #define PHY_POWERDOWN                   ((uint16_t)0x0800)  /*!< Select the power down mode           */
  184. #define PHY_ISOLATE                     ((uint16_t)0x0400)  /*!< Isolate PHY from MII                 */

  185. #define PHY_AUTONEGO_COMPLETE           ((uint16_t)0x0020)  /*!< Auto-Negotiation process completed   */
  186. #define PHY_LINKED_STATUS               ((uint16_t)0x0004)  /*!< Valid link established               */
  187. #define PHY_JABBER_DETECTION            ((uint16_t)0x0002)  /*!< Jabber condition detected            */

  188. /* Section 4: Extended PHY Registers */
  189. #define PHY_SR                          ((uint16_t)0x10U)    /*!< PHY status register Offset                      */

  190. #define PHY_SPEED_STATUS                ((uint16_t)0x0002U)  /*!< PHY Speed mask                                  */
  191. #define PHY_DUPLEX_STATUS               ((uint16_t)0x0004U)  /*!< PHY Duplex mask                                 */

  192. /* ################## SPI peripheral configuration ########################## */

  193. /* CRC FEATURE: Use to activate CRC feature inside HAL SPI Driver
  194. * Activated: CRC code is present inside driver
  195. * Deactivated: CRC code cleaned from driver
  196. */

  197. #define USE_SPI_CRC                     0U

  198. /* Includes ------------------------------------------------------------------*/
  199. /**
  200.   * @brief Include module's header file
  201.   */

  202. #ifdef HAL_RCC_MODULE_ENABLED
  203. #include "stm32f1xx_hal_rcc.h"
  204. #endif /* HAL_RCC_MODULE_ENABLED */

  205. #ifdef HAL_GPIO_MODULE_ENABLED
  206. #include "stm32f1xx_hal_gpio.h"
  207. #endif /* HAL_GPIO_MODULE_ENABLED */

  208. #ifdef HAL_EXTI_MODULE_ENABLED
  209. #include "stm32f1xx_hal_exti.h"
  210. #endif /* HAL_EXTI_MODULE_ENABLED */

  211. #ifdef HAL_DMA_MODULE_ENABLED
  212. #include "stm32f1xx_hal_dma.h"
  213. #endif /* HAL_DMA_MODULE_ENABLED */

  214. #ifdef HAL_ETH_MODULE_ENABLED
  215. #include "stm32f1xx_hal_eth.h"
  216. #endif /* HAL_ETH_MODULE_ENABLED */

  217. #ifdef HAL_CAN_MODULE_ENABLED
  218. #include "stm32f1xx_hal_can.h"
  219. #endif /* HAL_CAN_MODULE_ENABLED */

  220. #ifdef HAL_CAN_LEGACY_MODULE_ENABLED
  221.   #include "Legacy/stm32f1xx_hal_can_legacy.h"
  222. #endif /* HAL_CAN_LEGACY_MODULE_ENABLED */

  223. #ifdef HAL_CEC_MODULE_ENABLED
  224. #include "stm32f1xx_hal_cec.h"
  225. #endif /* HAL_CEC_MODULE_ENABLED */

  226. #ifdef HAL_CORTEX_MODULE_ENABLED
  227. #include "stm32f1xx_hal_cortex.h"
  228. #endif /* HAL_CORTEX_MODULE_ENABLED */

  229. #ifdef HAL_ADC_MODULE_ENABLED
  230. #include "stm32f1xx_hal_adc.h"
  231. #endif /* HAL_ADC_MODULE_ENABLED */

  232. #ifdef HAL_CRC_MODULE_ENABLED
  233. #include "stm32f1xx_hal_crc.h"
  234. #endif /* HAL_CRC_MODULE_ENABLED */

  235. #ifdef HAL_DAC_MODULE_ENABLED
  236. #include "stm32f1xx_hal_dac.h"
  237. #endif /* HAL_DAC_MODULE_ENABLED */

  238. #ifdef HAL_FLASH_MODULE_ENABLED
  239. #include "stm32f1xx_hal_flash.h"
  240. #endif /* HAL_FLASH_MODULE_ENABLED */

  241. #ifdef HAL_SRAM_MODULE_ENABLED
  242. #include "stm32f1xx_hal_sram.h"
  243. #endif /* HAL_SRAM_MODULE_ENABLED */

  244. #ifdef HAL_NOR_MODULE_ENABLED
  245. #include "stm32f1xx_hal_nor.h"
  246. #endif /* HAL_NOR_MODULE_ENABLED */

  247. #ifdef HAL_I2C_MODULE_ENABLED
  248. #include "stm32f1xx_hal_i2c.h"
  249. #endif /* HAL_I2C_MODULE_ENABLED */

  250. #ifdef HAL_I2S_MODULE_ENABLED
  251. #include "stm32f1xx_hal_i2s.h"
  252. #endif /* HAL_I2S_MODULE_ENABLED */

  253. #ifdef HAL_IWDG_MODULE_ENABLED
  254. #include "stm32f1xx_hal_iwdg.h"
  255. #endif /* HAL_IWDG_MODULE_ENABLED */

  256. #ifdef HAL_PWR_MODULE_ENABLED
  257. #include "stm32f1xx_hal_pwr.h"
  258. #endif /* HAL_PWR_MODULE_ENABLED */

  259. #ifdef HAL_RTC_MODULE_ENABLED
  260. #include "stm32f1xx_hal_rtc.h"
  261. #endif /* HAL_RTC_MODULE_ENABLED */

  262. #ifdef HAL_PCCARD_MODULE_ENABLED
  263. #include "stm32f1xx_hal_pccard.h"
  264. #endif /* HAL_PCCARD_MODULE_ENABLED */

  265. #ifdef HAL_SD_MODULE_ENABLED
  266. #include "stm32f1xx_hal_sd.h"
  267. #endif /* HAL_SD_MODULE_ENABLED */

  268. #ifdef HAL_NAND_MODULE_ENABLED
  269. #include "stm32f1xx_hal_nand.h"
  270. #endif /* HAL_NAND_MODULE_ENABLED */

  271. #ifdef HAL_SPI_MODULE_ENABLED
  272. #include "stm32f1xx_hal_spi.h"
  273. #endif /* HAL_SPI_MODULE_ENABLED */

  274. #ifdef HAL_TIM_MODULE_ENABLED
  275. #include "stm32f1xx_hal_tim.h"
  276. #endif /* HAL_TIM_MODULE_ENABLED */

  277. #ifdef HAL_UART_MODULE_ENABLED
  278. #include "stm32f1xx_hal_uart.h"
  279. #endif /* HAL_UART_MODULE_ENABLED */

  280. #ifdef HAL_USART_MODULE_ENABLED
  281. #include "stm32f1xx_hal_usart.h"
  282. #endif /* HAL_USART_MODULE_ENABLED */

  283. #ifdef HAL_IRDA_MODULE_ENABLED
  284. #include "stm32f1xx_hal_irda.h"
  285. #endif /* HAL_IRDA_MODULE_ENABLED */

  286. #ifdef HAL_SMARTCARD_MODULE_ENABLED
  287. #include "stm32f1xx_hal_smartcard.h"
  288. #endif /* HAL_SMARTCARD_MODULE_ENABLED */

  289. #ifdef HAL_WWDG_MODULE_ENABLED
  290. #include "stm32f1xx_hal_wwdg.h"
  291. #endif /* HAL_WWDG_MODULE_ENABLED */

  292. #ifdef HAL_PCD_MODULE_ENABLED
  293. #include "stm32f1xx_hal_pcd.h"
  294. #endif /* HAL_PCD_MODULE_ENABLED */

  295. #ifdef HAL_HCD_MODULE_ENABLED
  296. #include "stm32f1xx_hal_hcd.h"
  297. #endif /* HAL_HCD_MODULE_ENABLED */

  298. #ifdef HAL_MMC_MODULE_ENABLED
  299. #include "stm32f1xx_hal_mmc.h"
  300. #endif /* HAL_MMC_MODULE_ENABLED */

  301. /* Exported macro ------------------------------------------------------------*/
  302. #ifdef  USE_FULL_ASSERT
  303. /**
  304.   * @brief  The assert_param macro is used for function's parameters check.
  305.   * @param  expr If expr is false, it calls assert_failed function
  306.   *         which reports the name of the source file and the source
  307.   *         line number of the call that failed.
  308.   *         If expr is true, it returns no value.
  309.   * @retval None
  310.   */
  311. #define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__))
  312. /* Exported functions ------------------------------------------------------- */
  313. void assert_failed(uint8_t* file, uint32_t line);
  314. #else
  315. #define assert_param(expr) ((void)0U)
  316. #endif /* USE_FULL_ASSERT */

  317. #ifdef __cplusplus
  318. }
  319. #endif

  320. #endif /* __STM32F1xx_HAL_CONF_H */

  321. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/


chenqianqian 发表于 2023-12-6 10:02 来自手机 | 显示全部楼层
用SPI和PWM模式控制更方便,网上很多教程。
caigang13 发表于 2023-12-6 10:49 来自手机 | 显示全部楼层
一般都是单独调用对应外设的中断使能函数接口。
wilhelmina2 发表于 2023-12-6 15:49 | 显示全部楼层
__enable_interrupt();
ingramward 发表于 2023-12-6 17:40 | 显示全部楼层
使用NVIC              
eefas 发表于 2023-12-8 09:34 | 显示全部楼层
  // 遍历所有可用的处理器,并禁用它们上的IRQ
    for (int i = 0; i < sizeof(NVIC_INTERRUPT_TABLE) / sizeof(NVIC_INTERRUPT_ENTRY); i++)
    {
        NVIC_DisableIRQ((IRQn_Type)i);
    }
ccook11 发表于 2023-12-8 10:03 | 显示全部楼层
需要使用到中断控制器NVIC              

评论

在哪个地方?  发表于 2023-12-8 10:49
modesty3jonah 发表于 2023-12-9 14:44 | 显示全部楼层
__set_IE(0); // 关闭所有中断使能
biechedan 发表于 2023-12-9 15:48 | 显示全部楼层
可以使用NVIC来控制中断的开启和关闭
sanfuzi 发表于 2023-12-9 21:18 | 显示全部楼层
当中断被触发时,STM32会执行相应的中断服务程序(ISR)。为了保证ISR的正确执行,应当在ISR中尽可能减少额外的逻辑操作,并在完成操作后及时返回,以便CPU继续执行其他任务。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

73

主题

597

帖子

1

粉丝
快速回复 在线客服 返回列表 返回顶部

73

主题

597

帖子

1

粉丝
快速回复 在线客服 返回列表 返回顶部