Midnight Sun Firmware
Loading...
Searching...
No Matches
ltc_afe_impl.h
1#pragma once
2// Helper functions for the LTC6811
3//
4// This module is mostly exposed for the FSM. Do not use functions in this module directly.
5// Requires SPI, soft timers to be initialized
6//
7// Assumes that:
8// Requires GPIO, Interrupts and Soft Timers to be initialized
9//
10// Note that all units are in 100uV.
11//
12// This module supports AFEs with fewer than 12 cells using the |input_bitset|.
13#include "ltc_afe.h"
14
15// Initialize the LTC6811.
16// |settings.cell_bitset| and |settings.aux_bitset| should be an array of bitsets where bits 0 to 11
17// represent whether we should monitor the cell input for the given device.
18StatusCode ltc_afe_impl_init(LtcAfeStorage *afe, const LtcAfeSettings *settings);
19
20// Write an LTC config based on the given storage settings
21StatusCode ltc_afe_impl_write_config(LtcAfeStorage *afe);
22
23// Triggers a conversion. Note that we need to wait for the conversions to complete before the
24// readback will be valid.
25StatusCode ltc_afe_impl_trigger_cell_conv(LtcAfeStorage *afe);
26StatusCode ltc_afe_impl_trigger_aux_conv(LtcAfeStorage *afe, uint8_t device_cell);
27
28// Reads converted voltages from the AFE into the storage result arrays.
29StatusCode ltc_afe_impl_read_cells(LtcAfeStorage *afe);
30StatusCode ltc_afe_impl_read_aux(LtcAfeStorage *afe, uint8_t device_cell);
31// Mark cell for discharging (takes effect after config is re-written)
32// |cell| should be [0, LTC_AFE_MAX_CELLS)
33StatusCode ltc_afe_impl_toggle_cell_discharge(LtcAfeStorage *afe, uint16_t cell, bool discharge);
34
35// Sets the duty cycle to the same value for all cells on all afes
36StatusCode ltc_afe_impl_set_discharge_pwm_cycle(LtcAfeStorage *afe, uint8_t duty_cycle);
StatusCode
StatusCodes for various errors.
Definition: status.h:27
Definition: ltc_afe.h:46
Definition: ltc_afe.h:67