summaryrefslogtreecommitdiff
path: root/cesar/hal/phy/maximus/src/maximus_spoc.c
blob: 9572b01704e288edf0b4426ee547ce89b73262a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Cesar project {{{
 *
 * Copyright (C) 2009 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    hal/phy/maximus/src/maximus_spoc.c
 * \brief   Empty SPOC maximus stub.
 * \ingroup maximus
 */
#include "common/std.h"

#include "hal/phy/spoc/spoc.h"
#include "hal/phy/spoc/inc/defs.h"

void
phy_spoc_compute_all (s32 rho_q30, phy_spoc_coeff_t *coeff)
{
    dbg_assert (rho_q30 >= -PHY_SPOC_RHO_MAX_Q30
                && rho_q30 <= PHY_SPOC_RHO_MAX_Q30);
    dbg_assert_ptr (coeff);
    dbg_assert_ptr (coeff->part2);
}

void
phy_spoc_tx_set (phy_t *ctx, phy_spoc_coeff_t *coeff)
{
    dbg_assert (ctx);
    dbg_assert_ptr (coeff);
    dbg_assert_ptr (coeff->part2);
}

void
phy_spoc_rx_set (phy_t *ctx, phy_spoc_coeff_t *coeff)
{
    dbg_assert (ctx);
    dbg_assert_ptr (coeff);
    dbg_assert_ptr (coeff->part2);
}