24 lines
401 B
C++
24 lines
401 B
C++
/*
|
|
* PeripheralId.h
|
|
*
|
|
* Created on: 16 àïð. 2019 ã.
|
|
* Author: titov
|
|
*/
|
|
|
|
#ifndef SOURCE_APPLICATION_HARDWARE_PERIPHERALID_H_
|
|
#define SOURCE_APPLICATION_HARDWARE_PERIPHERALID_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace configuration { namespace hardware {
|
|
|
|
typedef uint16_t TypeId;
|
|
typedef uint16_t PeripheralId;
|
|
typedef uint16_t CpuId;
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif /* SOURCE_APPLICATION_HARDWARE_PERIPHERALID_H_ */
|