foxBMS - Unit Tests  1.6.0
The foxBMS Unit Tests API Documentation
test_nxp_mc33775a.c File Reference

Test of some module. More...

#include "unity.h"
#include "MockHL_gio.h"
#include "MockHL_system.h"
#include "Mockafe_dma.h"
#include "Mockdatabase.h"
#include "Mockdiag.h"
#include "Mockftask.h"
#include "Mockio.h"
#include "Mockmcu.h"
#include "Mocknxp_mc33775a-ll.h"
#include "Mocknxp_mc33775a_cfg.h"
#include "Mockos.h"
#include "Mockspi.h"
#include "MC33775A.h"
#include "nxp_mc33775a.h"
#include "spi_cfg-helper.h"
#include "uc_msg_t.h"
#include <stdbool.h>
#include <stdint.h>
Include dependency graph for test_nxp_mc33775a.c:

Go to the source code of this file.

Functions

void setUp (void)
 
void tearDown (void)
 

Variables

static spiDAT1_t spi_kNxp775DataConfigTx [BS_NR_OF_STRINGS]
 
static spiDAT1_t spi_kNxp775DataConfigRx [BS_NR_OF_STRINGS]
 
SPI_INTERFACE_CONFIG_s spi_nxp775InterfaceTx [BS_NR_OF_STRINGS]
 
SPI_INTERFACE_CONFIG_s spi_nxp775InterfaceRx [BS_NR_OF_STRINGS]
 
N775_MUX_CH_CFG_s n775_muxSequence [N775_MUX_SEQUENCE_LENGTH]
 
volatile bool ftsk_allQueuesCreated = false
 
OS_QUEUE ftsk_afeToI2cQueue
 
OS_QUEUE ftsk_afeFromI2cQueue
 

Detailed Description

Test of some module.

SPDX-License-Identifier: BSD-3-Clause

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:

  • ″This product uses parts of foxBMS®″
  • ″This product includes parts of foxBMS®″
  • ″This product is derived from foxBMS®″
Author
foxBMS Team
Date
2021-10-20 (date of creation)
Updated
2023-10-12 (date of last update)
Version
v1.6.0
Prefix
TEST

Definition in file test_nxp_mc33775a.c.

Function Documentation

◆ setUp()

void setUp ( void  )

Definition at line 179 of file test_nxp_mc33775a.c.

◆ tearDown()

void tearDown ( void  )

Definition at line 182 of file test_nxp_mc33775a.c.

Variable Documentation

◆ ftsk_afeFromI2cQueue

OS_QUEUE ftsk_afeFromI2cQueue

Definition at line 176 of file test_nxp_mc33775a.c.

◆ ftsk_afeToI2cQueue

OS_QUEUE ftsk_afeToI2cQueue

handle of the I2C transmission over NXP slave queue

Definition at line 175 of file test_nxp_mc33775a.c.

◆ ftsk_allQueuesCreated

volatile bool ftsk_allQueuesCreated = false

indicator whether the queues have successfully been initialized to be used in other parts of the software

Definition at line 174 of file test_nxp_mc33775a.c.

◆ n775_muxSequence

Default multiplexer measurement sequence Must be adapted to the application

Definition at line 138 of file test_nxp_mc33775a.c.

◆ spi_kNxp775DataConfigRx

spiDAT1_t spi_kNxp775DataConfigRx[BS_NR_OF_STRINGS]
static
Initial value:
= {
{.CS_HOLD = TRUE,
.WDEL = TRUE,
.DFSEL = SPI_FMT_0,
}
#define SPI_HARDWARE_CHIP_SELECT_0_ACTIVE

SPI data configuration struct for NXP MC33775A communication, Rx part

Definition at line 105 of file test_nxp_mc33775a.c.

◆ spi_kNxp775DataConfigTx

spiDAT1_t spi_kNxp775DataConfigTx[BS_NR_OF_STRINGS]
static
Initial value:
= {
{.CS_HOLD = TRUE,
.WDEL = TRUE,
.DFSEL = SPI_FMT_0,
}
#define SPI_HARDWARE_CHIP_SELECT_2_ACTIVE

SPI data configuration struct for NXP MC33775A communication, Tx part

Definition at line 97 of file test_nxp_mc33775a.c.

◆ spi_nxp775InterfaceRx

SPI_INTERFACE_CONFIG_s spi_nxp775InterfaceRx[BS_NR_OF_STRINGS]
Initial value:
= {
{
.pConfig = &spi_kNxp775DataConfigRx[0u],
.pNode = spiREG4,
.pGioPort = &(spiREG4->PC3),
.csPin = 0u,
},
}
@ SPI_CHIP_SELECT_HARDWARE
Definition: spi_cfg.h:117
static spiDAT1_t spi_kNxp775DataConfigRx[BS_NR_OF_STRINGS]

SPI interface configuration for N775 communication, Rx part

Definition at line 124 of file test_nxp_mc33775a.c.

◆ spi_nxp775InterfaceTx

SPI_INTERFACE_CONFIG_s spi_nxp775InterfaceTx[BS_NR_OF_STRINGS]
Initial value:
= {
{
.pConfig = &spi_kNxp775DataConfigTx[0u],
.pNode = spiREG1,
.pGioPort = &(spiREG1->PC3),
.csPin = 2u,
},
}
static spiDAT1_t spi_kNxp775DataConfigTx[BS_NR_OF_STRINGS]

SPI interface configuration for N775 communication Tx part

Definition at line 113 of file test_nxp_mc33775a.c.