/** * @file * * @ingroup RTEMSScoreTimecounter * * @brief Timecounter Implementation */ /* * Copyright (c) 2015 embedded brains GmbH. All rights reserved. * * embedded brains GmbH * Dornierstr. 4 * 82178 Puchheim * Germany * * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #ifndef _RTEMS_SCORE_TIMECOUNTERIMPL_H #define _RTEMS_SCORE_TIMECOUNTERIMPL_H #include #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @addtogroup RTEMSScoreTimecounter * * @{ */ void _Timecounter_Set_clock( const struct bintime *bt, ISR_lock_Context *lock_context ); /** @} */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* _RTEMS_SCORE_TIMECOUNTERIMPL_H */