-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATtiny814.cpp
24 lines (20 loc) · 919 Bytes
/
ATtiny814.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
///-------------------------------------------------------------------------------------------------
/// @file POC\ATtiny814.cpp.
///
/// @brief Implements the ttiny 814 class
#include "ATtiny814.h"
///-------------------------------------------------------------------------------------------------
/// @fn ATtiny814::ATtiny814(string name, short slaveID, BasicPOCModule* itsPOCModule, list<Component*>& componentList)
///
/// @brief Constructor
///
/// @author Benjamin
/// @date 28.09.2020
///
/// @param name The name.
/// @param slaveID Identifier for the slave.
/// @param [in,out] itsPOCModule If non-null, its poc module.
/// @param [in,out] componentList [in,out] If non-null, list of components.
ATtiny814::ATtiny814(string name, short slaveID, BasicPOCModule* itsPOCModule, list<Component*>& componentList) :
I2CComponent(name, slaveID, false, 100000, itsPOCModule, componentList) {
}