필터 지우기
필터 지우기

passing hex data to .NET

조회 수: 1 (최근 30일)
gujax
gujax 2012년 9월 27일
Hi, This is quite basic but I am missing it.
An object in C# has to be passed a value, which is an operational code '0x20'.
This code is being sent to an instrument. I understand that the instrument can only decipher binary formatted numbers.
I am using .NET interface for accessing the C# code which is interfacing with the instrument. However, I am unable to set the instrument to the above value.
If the object is 'pkt' whose property is 'opcode' and the 'opcode' needs a value of 0x20 this is what I tried:
pkt.opcode=sscanf('0x20','%x'); This did not work.
Then I tried pkt.opcode=hex2dec('0x20') - not happy.
I tried pkt.opcode=20 - not happy.
Tried pkt.opcode=00100000 - again no results. (A light is supposed to switch on when this number is transferred).
The instrument manual says that the opcode value is 0x20 and the return type is uint32 (it has both read and write enabled).
This is now really confusing. Does it mean it needs an integer decimal value? If that is the case is my first step correct? Thanks

채택된 답변

Walter Roberson
Walter Roberson 2012년 9월 27일
편집: Walter Roberson 2012년 9월 27일
Try
pkt.opcode = uint8(hex2dec('20'));

추가 답변 (1개)

gujax
gujax 2012년 9월 28일
Thanks, it worked!

카테고리

Help CenterFile Exchange에서 Call Web Services from MATLAB Using HTTP에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by