summaryrefslogtreecommitdiff
path: root/cesar/hle/test/src/ipmbox.c
blob: 6b3b34714c5b25bb37e89f3a83ba291b401e6c6b (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
/* Cesar project {{{
 *
 * Copyright (C) 2007 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    test/hle_recv.c
 * \brief   unit test to test the hle when it sends a data to the CL. 
 * \ingroup hle
 *
 * « long description »
 */

#include "common/std.h"

#include "lib/blk.h"
#include "hal/hle/forward.h"
#include "hal/hle/ipmbox.h"


ipmbox_t *ipmbox_init (void *user_data, ipmbox_rx_cb_t rx_cb)
{
    return user_data;
}

void ipmbox_tx (ipmbox_t *ctx, u32 *msg_buffer, uint length)
{
    
}

void
ipmbox_activate (ipmbox_t *ctx, bool activation)
{

}