How to convert a 24 bit, two’s complement value into a signed integer?

65 次查看(过去 30 天)
I want to read an AD converter using the Raspberry Pi SPI interface controlled by Matlab. The AD converter outputs 24 bit data in the two's complement format, MSD first. The Matlab writeRead command returns the data as a row vector of data type char
How can I quickly translate the data into an integer of data type int32 ?
  8 个评论
Walter Roberson
Walter Roberson 2018-4-19
>> P=[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1]
P =
Columns 1 through 23
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 24 through 46
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 47 through 64
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1
>> swapbytes(typecast(uint8(bin2dec(char(reshape(P,8,[]).' + '0'))),'int64'))
ans =
int64
-3
Looks like -3 to me.

请先登录,再进行评论。

采纳的回答

James Tursa
James Tursa 2014-6-10
编辑:James Tursa 2014-6-10
s = 2's complement 24-bit string to convert
b = [s([1 1 1 1 1 1 1 1]) s]; % sign extension
k = typecast(uint32(bin2dec(b)),'int32'); % equivalent decimal number
  5 个评论
Evangelos
Evangelos 2014-10-17
This is also very helpful to me. However I have one question. When you say 24-bit string you mean something like 0bxxxxxxxxxxxxxxxxxxxxxxxx or a 24-bit hex string like 0xaaaaaa ?
Guillaume
Guillaume 2014-10-17
This is is obviously a 24-bit binary string. Hence the extension by 8 bits to 32 bits.

请先登录,再进行评论。

更多回答(1 个)

Murat Belge
Murat Belge 2014-6-10
There is an example MATLAB class in Raspberry Pi support package that does something similar for MCP300x ADC's. Here is the readVoltage() method for this class:
function voltage = readVoltage(obj, adcChannel)
validateattributes(adcChannel, {'numeric'}, ...
{'scalar', '>=', 0, '<=', obj.NumAdcChannels-1}, '', 'adcChannel');
adc = obj.getAdcChannelSelect(adcChannel);
data = uint16(obj.spiObj.writeRead([1, adc, 0]));
highbits = bitand(data(2), obj.Lsb2);
voltage = double(bitor(bitshift(highbits, 8), data(3)));
voltage = (obj.VoltageReference/1024) * voltage;
end
where obj.Lsb2 is defined as bin2dec('00000011'). The value read from ADC is 10-bits stashed into two 8-bit values. The upper two-bits is in byte 2 and the 8 least significant bits are in byte 3.
You can take a look at the entire class definition here:
<Support package installe dir>\raspi\+raspi\+internal\mcp300x.m

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by