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