From 3c6c9f2eaf5bd5b5029ac9230a489c62dec94f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 14 Apr 2017 01:15:57 +0200 Subject: [PATCH] Clean up file. --- right/src/buspal/microseconds/microseconds.h | 23 +------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/right/src/buspal/microseconds/microseconds.h b/right/src/buspal/microseconds/microseconds.h index a87a7ca..44434f3 100644 --- a/right/src/buspal/microseconds/microseconds.h +++ b/right/src/buspal/microseconds/microseconds.h @@ -1,25 +1,8 @@ -/* - * @file microseconds.h - * @brief Microseconds timer driver based on PIT(Periodic Interrupt Timer) - * - * Notes: - */ - #ifndef ___MICROSECONDS_H__ #define ___MICROSECONDS_H__ -#include #include "fsl_device_registers.h" -//////////////////////////////////////////////////////////////////////////////// -// Prototypes -//////////////////////////////////////////////////////////////////////////////// - -#if defined(__cplusplus) -extern "C" { -#endif // __cplusplus - -/********************************************************************/ //! @brief Initialize timer facilities. void microseconds_init(void); @@ -43,8 +26,4 @@ void microseconds_delay(uint32_t us); //! @brief Gets the clock value used for microseconds driver uint32_t microseconds_get_clock(void); -#if defined(__cplusplus) -} -#endif // __cplusplus - -#endif /* ___MICROSECONDS_H__ */ +#endif