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.
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace interface {
|
|
|
|
|
|
|
|
enum MemoryOffset {
|
|
|
|
SOFT_VERSION_OFFSET = static_cast<uint16_t>(0x0),
|
|
|
|
DISCRETE_DATA_OFFSET = static_cast<uint16_t>(0xA),
|
|
|
|
PROFIBUS_OFFSET = static_cast<uint16_t>(0x14)
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|