/* Cesar project {{{ * * Copyright (C) 2010 Spidcom * * <<>> * * }}} */ /** * \file bsu/test/utest/src/phy.c * \brief Phy stubs. * \ingroup bsu */ #include "common/std.h" #include "hal/phy/phy.h" u32 phy_clock_get_zero_cross_captured_date (phy_t *ctx) __attribute__((weak)); u32 phy_clock_get_zero_cross_captured_date (phy_t *ctx) { return 0; } u32 phy_sysdate (void) __attribute__((weak)); u32 phy_sysdate (void) { return 0; } void phy_clock_set_numerator (phy_t *ctx, uint numerator) {}