Statistics
| Branch: | Tag: | Revision:

amiro-os / test / periphery-lld / PN532_v1 / aos_test_PN532.c @ 7e674331

History | View | Annotate | Download (1.834 KB)

1
#include <amiroos.h>
2
#include <aos_test_PN532.h>
3

    
4
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
5

    
6
#include <math.h>
7

    
8
/******************************************************************************/
9
/* LOCAL DEFINITIONS                                                          */
10
/******************************************************************************/
11

    
12
/******************************************************************************/
13
/* EXPORTED VARIABLES                                                         */
14
/******************************************************************************/
15

    
16
/******************************************************************************/
17
/* LOCAL TYPES                                                                */
18
/******************************************************************************/
19

    
20
/******************************************************************************/
21
/* LOCAL VARIABLES                                                            */
22
/******************************************************************************/
23

    
24
/******************************************************************************/
25
/* LOCAL FUNCTIONS                                                            */
26
/******************************************************************************/
27

    
28
/******************************************************************************/
29
/* EXPORTED FUNCTIONS                                                         */
30
/******************************************************************************/
31

    
32

    
33
aos_testresult_t aosTestP9221rFunc(BaseSequentialStream* stream, const aos_test_t* test)
34
{
35
    aosDbgCheck(test->data != NULL && ((aos_test_p9221rdata_t*)(test->data))->PRd != NULL);
36

    
37
    // local variables
38
   
39
    return result;
40
}
41

    
42
#endif /* AMIROOS_CFG_TESTS_ENABLE == true */
43