You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
C++
24 lines
380 B
C++
4 weeks ago
|
/*
|
||
|
* Periphery.cpp
|
||
|
*
|
||
|
* Author: Aleksey Gerasimenko
|
||
|
* gerasimenko.aleksey.n@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include "PERIPHERY/Periphery.h"
|
||
|
// #include "PERIPHERY/CAN.h"
|
||
|
|
||
|
namespace PERIPHERY
|
||
|
{
|
||
|
//CONSTRUCTOR
|
||
|
Periphery::Periphery():
|
||
|
p_memzone(0),
|
||
|
dio(),
|
||
|
adc(),
|
||
|
dac(),
|
||
|
fram(),
|
||
|
analog_faults()
|
||
|
{}//CONSTRUCTOR
|
||
|
|
||
|
} /* namespace PERIPHERY */
|