Program Listing for File clock.hpp

Return to documentation for file (src/tap/architecture/clock.hpp)

/*
 * Copyright (c) 2020-2021 Advanced Robotics at the University of Washington <robomstr@uw.edu>
 *
 * This file is part of Taproot.
 *
 * Taproot is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Taproot is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Taproot.  If not, see <https://www.gnu.org/licenses/>.
 */

#ifndef TAPROOT_CLOCK_HPP_
#define TAPROOT_CLOCK_HPP_

#include <cstdint>

#ifndef PLATFORM_HOSTED
#include "modm/platform.hpp"
#else
#include "modm/architecture/interface/clock.hpp"
#endif

namespace tap::arch::clock
{
#if defined(PLATFORM_HOSTED) && defined(ENV_UNIT_TESTS)
class ClockStub final
{
public:
    ClockStub();
    ~ClockStub();
    uint32_t time = 0;
};

uint32_t getTimeMilliseconds();
uint32_t getTimeMicroseconds();
#else
inline uint32_t getTimeMilliseconds() { return modm::Clock().now().time_since_epoch().count(); }

inline uint32_t getTimeMicroseconds()
{
    return modm::PreciseClock().now().time_since_epoch().count();
}
#endif
}  // namespace tap::arch::clock

#endif  // TAPROOT_CLOCK_HPP_