20 lines
310 B
C++
20 lines
310 B
C++
/*
|
||
* CrcUnit.hh
|
||
*
|
||
* Created on: 21 мая 2023 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#ifndef UMLIBRARY_PERIPHERAL_CRCUNIT_HH_
|
||
#define UMLIBRARY_PERIPHERAL_CRCUNIT_HH_
|
||
|
||
#include "../common/ICrcUnit.hpp"
|
||
|
||
namespace peripheral {
|
||
|
||
extern common::crc::ICrcUnit * crc;
|
||
|
||
}
|
||
|
||
#endif /* UMLIBRARY_PERIPHERAL_CRCUNIT_HH_ */
|