It is a part of a SPI code
The part between the "[ and ]"...Code:SHIFTOUT MOSI,SCLK,0,[$3000\16]
I know it is a 16 bit row, but what is its value?
I don't know what "$" means.
Thanks...
Kodiak
 wat is the value binairy of this codepiece
 wat is the value binairy of this codepiece
		It is a part of a SPI code
The part between the "[ and ]"...Code:SHIFTOUT MOSI,SCLK,0,[$3000\16]
I know it is a 16 bit row, but what is its value?
I don't know what "$" means.
Thanks...
Kodiak
 
 
		$ for hex
% for binary
$3000 = 12288 decimal
$3000 = 0011 0000 0000 0000 binary
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
 
 
		Ok That figures!
Thanks
Bookmarks