mirror of
https://github.com/eddyem/STM8_samples.git
synced 2025-12-06 10:45:12 +03:00
7 lines
111 B
Matlab
7 lines
111 B
Matlab
function u = U(ADU)
|
|
adu = uint32(ADU)
|
|
adu *= 35840;
|
|
adu = bitshift(adu, -17);
|
|
u = uint32(adu);
|
|
endfunction
|