% out=typecast(uint16(1000),'uint8')
% 1000=3E8,E8=232,out=232 3
function [y,len] = myfcn(u1)
head=uint8([255 85]);%帧头
out1=typecast(uint16(u1),'uint8');
% out2=typecast(uint16(u2),'uint8');
y=[head,out1];
len=uint16(length(y));
2023b版本,stm32硬件支持包。
参考网页:STM32F103基于Simulink自动代码生成之ADC采集_simulink stm32 adc-CSDN博客