Midnight Sun Firmware
Loading...
Searching...
No Matches
bms_hw_defs.h
1#pragma once
2
3/************************************************************************************************
4 * @file bms_hw_defs.h
5 *
6 * @brief Header file for BMS hardware definitions
7 *
8 * @date 2025-01-12
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13
14/* Inter-component Headers */
15
16/* Intra-component Headers */
17
24/************************************************************************************************
25 * BMS CAN definitions
26 ************************************************************************************************/
27
29#define BMS_CAN_RX \
30 { .port = GPIO_PORT_B, .pin = 8 }
31
33#define BMS_CAN_TX \
34 { .port = GPIO_PORT_B, .pin = 9 }
35
36/************************************************************************************************
37 * Current sense I2C definitions
38 ************************************************************************************************/
39
41#define CURRENT_SENSE_I2C_PORT I2C_PORT_1
42
44#define CURRENT_SENSE_I2C_SDA_GPIO \
45 { .port = GPIO_PORT_B, .pin = 11 }
46
48#define CURRENT_SENSE_I2C_SCL_GPIO \
49 { .port = GPIO_PORT_B, .pin = 10 }
50
52#define CURRENT_SENSE_MAX17261_I2C_ADDR (0x36U)
53
54/************************************************************************************************
55 * AFEs (LTC6811) SPI definitions
56 ************************************************************************************************/
57
59#define LTC_AFE_SPI_PORT SPI_PORT_2
60
62#define LTC_AFE_SPI_SDO_GPIO \
63 { .port = GPIO_PORT_B, .pin = 15 }
64
66#define LTC_AFE_SPI_SDI_GPIO \
67 { .port = GPIO_PORT_B, .pin = 14 }
68
70#define LTC_AFE_SPI_SCK_GPIO \
71 { .port = GPIO_PORT_B, .pin = 13 }
72
74#define LTC_AFE_SPI_CS_GPIO \
75 { .port = GPIO_PORT_B, .pin = 12 }
76
77/************************************************************************************************
78 * Motor Controller SPI definitions
79 ************************************************************************************************/
80
82#define MCP2515_SPI_PORT SPI_PORT_3
83
85#define MCP2515_SPI_SDO_GPIO \
86 { .port = GPIO_PORT_B, .pin = 5 }
87
89#define MCP2515_SPI_SDI_GPIO \
90 { .port = GPIO_PORT_B, .pin = 4 }
91
93#define MCP2515_SPI_SCK_GPIO \
94 { .port = GPIO_PORT_B, .pin = 3 }
95
97#define MCP2515_SPI_CS_GPIO \
98 { .port = GPIO_PORT_A, .pin = 15 }
99
100/************************************************************************************************
101 * Relays/Contactor definitions
102 ************************************************************************************************/
103
105#define BMS_PRECHARGE_STATUS_GPIO \
106 { .port = GPIO_PORT_A, .pin = 3 }
107
109#define BMS_PRECHARGE_RELAY_ENABLE_GPIO \
110 { .port = GPIO_PORT_A, .pin = 9 }
111
113#define BMS_PRECHARGE_RELAY_SENSE_GPIO \
114 { .port = GPIO_PORT_A, .pin = 10 }
115
117#define BMS_POS_RELAY_ENABLE_GPIO \
118 { .port = GPIO_PORT_A, .pin = 4 }
119
121#define BMS_POS_RELAY_SENSE_GPIO \
122 { .port = GPIO_PORT_A, .pin = 15 }
123
125#define BMS_NEG_RELAY_ENABLE_GPIO \
126 { .port = GPIO_PORT_A, .pin = 13 }
127
129#define BMS_NEG_RELAY_SENSE_GPIO \
130 { .port = GPIO_PORT_A, .pin = 12 }
131
133#define BMS_SOLAR_RELAY_ENABLE_GPIO \
134 { .port = GPIO_PORT_C, .pin = 13 }
135
137#define BMS_SOLAR_RELAY_SENSE_GPIO \
138 { .port = GPIO_PORT_A, .pin = 6 }
139
140/************************************************************************************************
141 * Killswitch definitions
142 ************************************************************************************************/
143
145#define BMS_KILLSWITCH_SENSE_GPIO \
146 { .port = GPIO_PORT_A, .pin = 11 }
147
148/************************************************************************************************
149 * Aux sense definitions
150 ************************************************************************************************/
151
153#define BMS_AUX_BATT_VOLTAGE_ADC \
154 { .port = GPIO_PORT_A, .pin = 5 }
155
156/************************************************************************************************
157 * Fan definitions
158 ************************************************************************************************/
159
161#define BMS_FAN_SENSE_1_GPIO \
162 { .port = GPIO_PORT_B, .pin = 0 }
163
165#define BMS_FAN_SENSE_2_GPIO \
166 { .port = GPIO_PORT_B, .pin = 1 }
167
169#define BMS_FAN_PWM_GPIO \
170 { .port = GPIO_PORT_A, .pin = 8 }
171
172/************************************************************************************************
173 * Battery pack definitions
174 ************************************************************************************************/
175
177#define NUM_SERIES_MODULES 9U
178
180#define NUM_SERIES_CELLS_IN_MODULE 4U
181
183#define NUM_SERIES_CELLS (NUM_SERIES_CELLS_IN_MODULE * NUM_SERIES_MODULES)
184
186#define NUM_PARALLEL_CELLS 8U
187
189#define CELL_CAPACITY_MAH 4850U
190
192#define PACK_CAPACITY_MAH (CELL_CAPACITY_MAH * NUM_PARALLEL_CELLS)
193