foxBMS - Unit Tests  1.2.1
The foxBMS Unit Tests API Documentation
test_ltc_afe.c
Go to the documentation of this file.
1 /**
2  *
3  * @copyright © 2010 - 2021, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
4  * All rights reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright notice, this
12  * list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright notice,
15  * this list of conditions and the following disclaimer in the documentation
16  * and/or other materials provided with the distribution.
17  *
18  * 3. Neither the name of the copyright holder nor the names of its
19  * contributors may be used to endorse or promote products derived from
20  * this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * We kindly request you to use one or more of the following phrases to refer to
34  * foxBMS in your hardware, software, documentation or advertising materials:
35  *
36  * - ″This product uses parts of foxBMS®″
37  * - ″This product includes parts of foxBMS®″
38  * - ″This product is derived from foxBMS®″
39  *
40  */
41 
42 /**
43  * @file test_ltc_afe.c
44  * @author foxBMS Team
45  * @date 2020-05-25 (date of creation)
46  * @updated 2021-12-01 (date of last update)
47  * @ingroup UNIT_TEST_IMPLEMENTATION
48  * @prefix TEST
49  *
50  * @brief Test of the afe.c module
51  *
52  */
53 
54 /*========== Includes =======================================================*/
55 #include "general.h"
56 
57 #include "unity.h"
58 #include "MockHL_sys_dma.h"
59 #include "Mockltc.h"
60 
61 #include "ltc_cfg.h"
62 
63 #include "afe.h"
64 
65 /* it's important to mention the implementation in ltc_afe.c
66 here in order to test the correct implementation */
67 TEST_FILE("ltc_afe.c")
68 
69 /*========== Definitions and Implementations for Unit Test ==================*/
72 
73 #define DMA_REQ_LINE_SPI1_TX (DMA_REQ1)
74 #define DMA_REQ_LINE_SPI1_RX (DMA_REQ0)
75 #define DMA_REQ_LINE_SPI2_TX (DMA_REQ3)
76 #define DMA_REQ_LINE_SPI2_RX (DMA_REQ2)
77 #define DMA_REQ_LINE_SPI3_TX (DMA_REQ15)
78 #define DMA_REQ_LINE_SPI3_RX (DMA_REQ14)
79 
80 #define BIG_ENDIAN (3U)
81 #define ELEMENT_COUNT (1U)
82 #define DMAREQEN_BIT (0x10000U)
83 #define SPIEN_BIT (0x1000000U)
84 
85 #define DMA_REQ_LINE_TX (DMA_REQ_LINE_SPI1_TX)
86 #define DMA_REQ_LINE_RX (DMA_REQ_LINE_SPI1_RX)
87 
88 /* - configuring dma control packets */
90  .SADD = 0u, /* source address */
91  .DADD = 0u, /* destination address */
92  .CHCTRL = 0U, /* channel control */
93  .FRCNT = LTC_N_BYTES_FOR_DATA_TRANSMISSION, /* frame count */
94  .ELCNT = ELEMENT_COUNT, /* element count */
95  .ELDOFFSET = 0U, /* element destination offset */
96  .ELSOFFSET = 0U, /* element destination offset */
97  .FRDOFFSET = 0U, /* frame destination offset */
98  .FRSOFFSET = 0U, /* frame destination offset */
99  .PORTASGN = PORTA_READ_PORTB_WRITE, /* port assignment */
100  .RDSIZE = ACCESS_8_BIT, /* read size */
101  .WRSIZE = ACCESS_8_BIT, /* write size */
102  .TTYPE = FRAME_TRANSFER, /* transfer type */
103  .ADDMODERD = ADDR_INC1, /* address mode read */
104  .ADDMODEWR = ADDR_FIXED, /* address mode write */
105  .AUTOINIT = AUTOINIT_OFF, /* autoinit */
106 };
107 
109  .SADD = 0u, /* source address */
110  .DADD = 0u, /* destination address */
111  .CHCTRL = 0U, /* channel control */
112  .FRCNT = LTC_N_BYTES_FOR_DATA_TRANSMISSION, /* frame count */
113  .ELCNT = ELEMENT_COUNT, /* element count */
114  .ELDOFFSET = 0U, /* element destination offset */
115  .ELSOFFSET = 0U, /* element destination offset */
116  .FRDOFFSET = 0U, /* frame destination offset */
117  .FRSOFFSET = 0U, /* frame destination offset */
118  .PORTASGN = PORTB_READ_PORTA_WRITE, /* port assignment */
119  .RDSIZE = ACCESS_8_BIT, /* read size */
120  .WRSIZE = ACCESS_8_BIT, /* write size */
121  .TTYPE = FRAME_TRANSFER, /* transfer type */
122  .ADDMODERD = ADDR_FIXED, /* address mode read */
123  .ADDMODEWR = ADDR_INC1, /* address mode write */
124  .AUTOINIT = AUTOINIT_OFF, /* autoinit */
125 };
126 
128 
129 /*========== Setup and Teardown =============================================*/
130 void setUp(void) {
131 }
132 
133 void tearDown(void) {
134 }
135 
136 /*========== Test Cases =====================================================*/
138  LTC_Trigger_Expect(&ltc_stateBase);
139  TEST_ASSERT_EQUAL(STD_OK, AFE_TriggerIc());
140 }
AFE driver header.
STD_RETURN_TYPE_e AFE_TriggerIc(void)
@ STD_OK
Definition: fstd_types.h:81
General macros and definitions for the whole platform.
Headers for the configuration for the LTC monitoring chip.
#define LTC_N_BYTES_FOR_DATA_TRANSMISSION
Definition: ltc_cfg.h:77
uint8_t ltc_RXPECbuffer[LTC_N_BYTES_FOR_DATA_TRANSMISSION]
Definition: test_ltc_afe.c:70
uint8_t ltc_TXPECbuffer[LTC_N_BYTES_FOR_DATA_TRANSMISSION]
Definition: test_ltc_afe.c:71
g_dmaCTRL afe_ltcDmaControlPacketTx
Definition: test_ltc_afe.c:89
void setUp(void)
Definition: test_ltc_afe.c:130
void tearDown(void)
Definition: test_ltc_afe.c:133
LTC_STATE_s ltc_stateBase
Definition: test_ltc_afe.c:127
#define ELEMENT_COUNT
Definition: test_ltc_afe.c:81
void testAFE_TriggerIcAlwaysReturnsSTD_OK(void)
Definition: test_ltc_afe.c:137
g_dmaCTRL afe_ltcDmaControlPacketRx
Definition: test_ltc_afe.c:108