mirror of https://github.com/thesofproject/sof.git
20 lines
299 B
Mathematica
20 lines
299 B
Mathematica
|
function blob_write(fn, blob8)
|
||
|
|
||
|
%% Write blob
|
||
|
fh = fopen(fn, 'wb');
|
||
|
fwrite(fh, blob8, 'uint8');
|
||
|
fclose(fh);
|
||
|
|
||
|
%% Print as 8 bit hex
|
||
|
nb = length(blob8);
|
||
|
nl = ceil(nb/16);
|
||
|
for i = 1:nl
|
||
|
m = min(16, nb-(i-1)*16);
|
||
|
for j = 1:m
|
||
|
fprintf(1, "%02x ", blob8((i-1)*16 + j));
|
||
|
end
|
||
|
fprintf(1, "\n");
|
||
|
end
|
||
|
|
||
|
end
|