20 lines
306 B
C++
20 lines
306 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_ */
|