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.
18
StatusCode
ltc_afe_impl_init(
LtcAfeStorage
*afe,
const
LtcAfeSettings
*settings);
19
20
// Write an LTC config based on the given storage settings
21
StatusCode
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.
25
StatusCode
ltc_afe_impl_trigger_cell_conv(
LtcAfeStorage
*afe);
26
StatusCode
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.
29
StatusCode
ltc_afe_impl_read_cells(
LtcAfeStorage
*afe);
30
StatusCode
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)
33
StatusCode
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
36
StatusCode
ltc_afe_impl_set_discharge_pwm_cycle(
LtcAfeStorage
*afe, uint8_t duty_cycle);
StatusCode
StatusCode
StatusCodes for various errors.
Definition:
status.h:27
LtcAfeSettings
Definition:
ltc_afe.h:46
LtcAfeStorage
Definition:
ltc_afe.h:67
libraries
ms-drivers
inc
ltc_afe_impl.h
Generated by
1.9.5