stm32f10x_dbgmcu.h
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:3k
源码类别:

uCOS

开发平台:

C/C++

  1. /******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
  2. * File Name          : stm32f10x_dbgmcu.h
  3. * Author             : MCD Application Team
  4. * Version            : V2.0.2
  5. * Date               : 07/11/2008
  6. * Description        : This file contains all the functions prototypes for the
  7. *                      DBGMCU firmware library.
  8. ********************************************************************************
  9. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  10. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
  11. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
  12. * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
  13. * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
  14. * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  15. *******************************************************************************/
  16. /* Define to prevent recursive inclusion -------------------------------------*/
  17. #ifndef __STM32F10x_DBGMCU_H
  18. #define __STM32F10x_DBGMCU_H
  19. /* Includes ------------------------------------------------------------------*/
  20. #include "stm32f10x_map.h"
  21. /* Exported types ------------------------------------------------------------*/
  22. /* Exported constants --------------------------------------------------------*/
  23. #define DBGMCU_SLEEP                 ((u32)0x00000001)
  24. #define DBGMCU_STOP                  ((u32)0x00000002)
  25. #define DBGMCU_STANDBY               ((u32)0x00000004)
  26. #define DBGMCU_IWDG_STOP             ((u32)0x00000100)
  27. #define DBGMCU_WWDG_STOP             ((u32)0x00000200)
  28. #define DBGMCU_TIM1_STOP             ((u32)0x00000400)
  29. #define DBGMCU_TIM2_STOP             ((u32)0x00000800)
  30. #define DBGMCU_TIM3_STOP             ((u32)0x00001000)
  31. #define DBGMCU_TIM4_STOP             ((u32)0x00002000)
  32. #define DBGMCU_CAN_STOP              ((u32)0x00004000)
  33. #define DBGMCU_I2C1_SMBUS_TIMEOUT    ((u32)0x00008000)
  34. #define DBGMCU_I2C2_SMBUS_TIMEOUT    ((u32)0x00010000)
  35. #define DBGMCU_TIM5_STOP             ((u32)0x00020000)
  36. #define DBGMCU_TIM6_STOP             ((u32)0x00040000)
  37. #define DBGMCU_TIM7_STOP             ((u32)0x00080000)
  38. #define DBGMCU_TIM8_STOP             ((u32)0x00100000)
  39.                                            
  40. #define IS_DBGMCU_PERIPH(PERIPH) ((((PERIPH) & 0xFFE000F8) == 0x00) && ((PERIPH) != 0x00))
  41. /* Exported macro ------------------------------------------------------------*/
  42. /* Exported functions ------------------------------------------------------- */
  43. u32 DBGMCU_GetREVID(void);
  44. u32 DBGMCU_GetDEVID(void);
  45. void DBGMCU_Config(u32 DBGMCU_Periph, FunctionalState NewState);
  46. #endif /* __STM32F10x_DBGMCU_H */
  47. /******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/