Вот уже недели две мучусь над тем чтобы заставить эту железяку работать. Даже с Modbus уже разбираться начал

Суть проблемы такова: имееться ячейка в которую нужно записать "1" (команда "Run") или "0". Запись производил согласно инструкции производителя командой для Modbus RTU 01 05 00 01 FF 00.
Записывает и после проверки состояния ячейки выдает 01 01 00 01 00 01 (то есть она в состоянии "1"). Но зелезка упорно не хочет запускаться (индикатор - светодиод, не горит), не говоря уже о том что вообще не возможно записывать значения во временные регистры, а управление то производиться ими

Совсем недавно нашел в интернете "Дополнение" к инструкции в котором в мягкой форме говорится что всё что в инструкции - это совсем не то

вот дополнение в полном виде:
<In the Instruction Manuals for the SJ200 and L200 series inverters, Appendix B contains the function and parameter tables for Modbus/RTU communications. These tables list coil numbers and register addresses in hexadecimal (HEX) format for the available inverter parameters. Attempting to access invalid or reserved addresses will return an error code.
It is important to realize that the hex values in the tables are absolute addresses ONLY within the inverter. When communicating over a Modbus/RTU network, these values instead represent address OFFSETS. These offsets must be ADDED to whatever starting address the master device defines. If the master addressing convention uses decimal values, it is necessary to first convert the HEX offsets to decimal values. Then add that decimal offset value to the starting address.
EXAMPLE 1
We wish to write to the Output Frequency Command, which is contained in inverter register 0001h (0001HEX). This represents an offset of "1" in decimal. The data type is "Holding Register", which is Modbus Data Type 4, and starts at 40001 (NOT 40000!!! VERY IMPORTANT!!!). The data has a length of 1 word. So we add the offset of "1" to "40001" and the result is 40002. This is the Modbus register that will contain the desired value. The data format is "long integer."
EXAMPLE 2
We wish to read the inverter Output Current Monitor, which is in inverter register 000Bh, which equates to "11" decimal. So we would add 11 to 40001, and therefore the desired value we would query is 40012, and a data length of 1 word. The data format is "long integer."
EXAMPLE 3
We want to write the RUN command in order to start and stop the inverter. This is coil number 0001h, which corresponds to "1" decimal. Again this is the OFFSET. A coil is Modbus data type "0", and starts with address "1". Thus we add the offset to the starting address, and the desired Modbus coil number is "2". The data format is "bit."
EXAMPLE 4
We would like to read the Scaled Output Frequency Monitor. This is a two-word value, in inverter registers 0011h (high word) and 0012h (low word). These translate to offset values of 17 and 18 in decimal, so the desired Modbus registers are 40001 plus 17 and 18, or 40018 and 40019. Therefore, we would read holding register 40018, with a data length of 2 words. The data would be formatted as a "swapped long integer."
The scaling and range of the various parameters is indicated in the table. In example 4, a value of "6000" would correspond to a value of 60.00 Hz. However in Example 1, the value of "600" would correspond to 60.0 Hz. The tables also indicate whether a particular coil or register is "read only" or "read/write." Please refer to the tables for further details.>
И теперь у меня много вопросов:
Что такое data type "0"?
Если адрес ячейки на самом деле 2 а не 1, то почему я смог записывать в первую, а во вторую не получаеться?
Когда обращаюсь ко второй ячейке (чтение) выдает ответ от первой.
Как реализовать The data format is "bit."?
И какой коммандой записать "1"? В инструкции сказано что 01 05 00 01 FF 00. Но когда применяю команду 01 05 00 02 FF 00 сразу выдает ошибку

Команды посылал/принимал с помошью утилиты Modbus utility розработчиком которой является ICP-DAS
Так что, люди добрые, помогите кто чем сможет
