.hex file converter
-
There is any we understand or convert or any other way we use .hex file and creat any plc language or program in plc language
-
There is any we understand or convert or any other way we use .hex file and creat any plc language or program in plc language
And what is your question?
-
There is any we understand or convert or any other way we use .hex file and creat any plc language or program in plc language
Yes many ways, but you will need more information before you can start. Firstly you need to understand the format of the data in the "hex" file. Then you need to understand the instruction set (and format) of the plc language. Once you understand both those things you can start to design your converter.
-
Yes many ways, but you will need more information before you can start. Firstly you need to understand the format of the data in the "hex" file. Then you need to understand the instruction set (and format) of the plc language. Once you understand both those things you can start to design your converter.
I want the way how can we learn these ways I have some knowledge about plc languages but didn't know about the C,C++,asemly language too. Please help me the way I can understand
-
I want the way how can we learn these ways I have some knowledge about plc languages but didn't know about the C,C++,asemly language too. Please help me the way I can understand
Like I said, you first need to understand the format of the "hex" (whatever that means) file. You also need to understand exactly what it is you want to convert it into. And without a lot more information it is impossible to make any better suggestions.
-
I want the way how can we learn these ways I have some knowledge about plc languages but didn't know about the C,C++,asemly language too. Please help me the way I can understand
This is an example of what you're in for. Get any HEX editor, like HxD[^], and install it. Now go grab the Notepad.exe file from C:\Windows and open it in the hex editor. Now you're looking at a whole of bunch of bytes that make up the content of the file, and you need documentation to tell you what every one of those bytes means. You're going to start here[^] to figure that out. Oh, and when you get to actual executable code, you're going to have to understand the Intel instruction set, all the addressing modes, and the operands each instruction requires. All of that is in the bytes that make up the executable code. Notice, you're not going to get back C/C++ code. You're getting back assembly code. Once you're brain melts from trying to understand all that, now you have to do that same thing for the .hex file you're looking at for your PLC's. Oh, and you'll need all the relevant documentation similar to this example of disassembling Notepad. Do you get it now?
Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles.
Dave Kreskowiak -
There is any we understand or convert or any other way we use .hex file and creat any plc language or program in plc language