Statistics
| Branch: | Tag: | Revision:

amiro-os / unittests / periphery-lld / src / ut_alld_ltc4412.c @ 2e69d671

History | View | Annotate | Download (2.262 KB)

1
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2018  Thomas Schöpping et al.
4

5
This program is free software: you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9

10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
GNU General Public License for more details.
14

15
You should have received a copy of the GNU General Public License
16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
*/
18

    
19
#include <ut_alld_ltc4412.h>
20

    
21
#if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_LTC4412)) || defined(__DOXYGEN__)
22

    
23
#include <aos_debug.h>
24
#include <chprintf.h>
25
#include <aos_thread.h>
26
#include <alld_ltc4412.h>
27

    
28
aos_utresult_t utAlldLtc4412Func(BaseSequentialStream* stream, aos_unittest_t* ut)
29
{
30
  aosDbgCheck(ut->data != NULL);
31

    
32
  // local variables
33
  aos_utresult_t result = {0,0};
34
  uint32_t status;
35

    
36
  chprintf(stream, "read ctrl pin... \n");
37
  ltc4412_lld_ctrl_t ctrl;
38
  status = ltc4412_lld_get_ctrl((LTC4412Driver*)ut->data, &ctrl);
39
  if(status == APAL_STATUS_SUCCESS){
40
    aosUtPassed(stream, &result);
41
  } else {
42
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
43
  }
44

    
45
  chprintf(stream, "write ctrl pin... \n");
46
  status = ltc4412_lld_set_ctrl((LTC4412Driver*)ut->data, LTC4412_LLD_CTRL_ACTIVE);
47
  status |= ltc4412_lld_get_ctrl((LTC4412Driver*)ut->data, &ctrl);
48
  if (status == APAL_STATUS_SUCCESS && ctrl == LTC4412_LLD_CTRL_ACTIVE) {
49
    aosUtPassed(stream, &result);
50
  } else {
51
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
52
  }
53

    
54
  chprintf(stream, "read stat pin... \n");
55
  ltc4412_lld_stat_t stat;
56
  status = ltc4412_lld_get_stat((LTC4412Driver*)ut->data, &stat);
57
  if(status == APAL_STATUS_SUCCESS){
58
    aosUtPassed(stream, &result);
59
  } else {
60
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
61
  }
62

    
63
  aosUtInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(LTC4412Driver));
64

    
65
  return result;
66
}
67

    
68
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_LTC4412) */