diff --git a/TODO b/TODO index b9a1ea621a7bc3c92a301358dee9e8fd0e13bdc9..81fc8bdbbdb16addc100872589c8e9a5dbb37063 100644 --- a/TODO +++ b/TODO @@ -20,6 +20,7 @@ Version 1.5.0: - Output error after usage. - Implement ranges for slaves and domains. * Fix casting away constness during expected WC calculation. +* Include SoE drive_no in ethercat tool. Future issues: diff --git a/tool/CommandSoeRead.cpp b/tool/CommandSoeRead.cpp index 74367e795f431379412f692f5240926f1dcefb25..1653ce64763b428908c728dfc1f40efd0cae16d3 100644 --- a/tool/CommandSoeRead.cpp +++ b/tool/CommandSoeRead.cpp @@ -90,6 +90,8 @@ void CommandSoeRead::execute(const StringVector &args) throwInvalidUsageException(err); } + ioctl.drive_no = 0; // FIXME + try { ioctl.idn = parseIdn(args[0]); } catch (runtime_error &e) { diff --git a/tool/CommandSoeWrite.cpp b/tool/CommandSoeWrite.cpp index ee98b11a30ab43e9ed4978f0121d5ea07a824622..4c5424269613f126d51fab80102971e5663f2a8a 100644 --- a/tool/CommandSoeWrite.cpp +++ b/tool/CommandSoeWrite.cpp @@ -92,6 +92,8 @@ void CommandSoeWrite::execute(const StringVector &args) throwInvalidUsageException(err); } + ioctl.drive_no = 0; // FIXME + try { ioctl.idn = parseIdn(args[0]); } catch (runtime_error &e) {