📄 rfcomms_server_tx_freeport0_test.m
字号:
% send on COM'1', at 115200 bps, using channel '0', '1' data elements, data type: 'UINT8' (ID = 2)
% this test program works with model 'RFComm_server_TX_freePort0.mdl' on the
% MiniDragon+ board (fw-09-06)
% send next character...
i = 0;
while(i < 4)
disp(['sending ' num2str(i)]);
freePortSend(1, 115200, 0, 1, 2, i)
i = i + 1;
if(i == 4) i = 0; end
pause
end
disp('never reached')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -