timing_delay.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. ******************************************************************************
  3. * @file timing_delay.h
  4. * @author MCD Application Team
  5. * @version V2.1.3
  6. * @date 28-June-2013
  7. * @brief Header for timing_delay.c
  8. ******************************************************************************
  9. *
  10. * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
  11. * You may not use this file except in compliance with the License.
  12. * You may obtain a copy of the License at:
  13. *
  14. * http://www.st.com/software_license_agreement_liberty_v2
  15. *
  16. * Unless required by applicable law or agreed to in writing, software
  17. * distributed under the License is distributed on an "AS IS" BASIS,
  18. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  19. * See the License for the specific language governing permissions and
  20. * limitations under the License.
  21. *
  22. ******************************************************************************
  23. */
  24. /* Define to prevent recursive inclusion -------------------------------------*/
  25. #ifndef __TIMING_DELAY_H
  26. #define __TIMING_DELAY_H
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm8l15x.h"
  29. /* Exported types ------------------------------------------------------------*/
  30. /* Exported constants --------------------------------------------------------*/
  31. /* Exported macro ------------------------------------------------------------*/
  32. /* Exported variables --------------------------------------------------------*/
  33. /* Exported functions --------------------------------------------------------*/
  34. void Delay(__IO uint32_t nTime);
  35. void TimingDelay_Decrement(void);
  36. void TimingDelay_Init(void);
  37. #endif /* __TIMING_DELAY_H */
  38. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/