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.
12 lines
216 B
C
12 lines
216 B
C
1 month ago
|
#pragma once
|
||
|
|
||
|
namespace interface {
|
||
|
|
||
|
enum MemoryOffset {
|
||
|
SOFT_VERSION_OFFSET = static_cast<Uint16>(0x0),
|
||
|
DISCRETE_DATA_OFFSET = static_cast<Uint16>(0xA),
|
||
|
PROFIBUS_OFFSET = static_cast<Uint16>(0x14)
|
||
|
};
|
||
|
|
||
|
}
|