-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBQ76952.cpp
More file actions
60 lines (51 loc) · 1.56 KB
/
BQ76952.cpp
File metadata and controls
60 lines (51 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
///-------------------------------------------------------------------------------------------------
/// @file POC\BQ76952.cpp.
///
/// @brief Implements the bq 76952 class
#include "BQ76952.h"
///-------------------------------------------------------------------------------------------------
/// @fn BQ76952::BQ76952(BasicPOCModule* itsPOCModule, list<Component*>& componentList)
///
/// @brief Constructor
///
/// @author Benjamin
/// @date 28.09.2020
///
/// @param [in,out] itsPOCModule If non-null, its poc module.
/// @param [in,out] componentList [in,out] If non-null, list of components.
BQ76952::BQ76952(BasicPOCModule* itsPOCModule, list<Component*>& componentList) : I2CComponent("BQ76952", 0x42, false, 100000, itsPOCModule, componentList) {
//TODO
}
///-------------------------------------------------------------------------------------------------
/// @fn void BQ76952::init()
///
/// @brief Initializes this object
///
/// @author Benjamin
/// @date 28.09.2020
void BQ76952::init() {
//TODO
}
///-------------------------------------------------------------------------------------------------
/// @fn void BQ76952::selfTest()
///
/// @brief Tests self
///
/// @author Benjamin
/// @date 28.09.2020
void BQ76952::selfTest() {
//TODO
}
///-------------------------------------------------------------------------------------------------
/// @fn TimedState<Status5> BQ76952::getStatus5()
///
/// @brief Gets status 5
///
/// @author Benjamin
/// @date 28.09.2020
///
/// @returns The status 5.
TimedState<Status5> BQ76952::getStatus5() {
//TODO
return status5;
}