Whats the correct way to remove all links (including appdata) to a serialport

조회 수: 2 (최근 30일)
Jason
Jason 2020년 1월 8일
편집: Jason 2020년 1월 8일
I often create a serial port object, s and save it from a button callback using
s = serialport('COM2',19200)
setappdata(0,'serial',s).
I understand using the new serialport there is no need for fclose(s).
Whats the correct way to clear up both the serialport object and the appdata (from a seperate button callback that created the serialport object)
Is it
1. S1=getappdata(0,'serial')
2. delete(S1)
3. clear S1
4. rmappdata(0,'serial')
Thanks

답변 (0개)

카테고리

Help CenterFile Exchange에서 Serial and USB Communication에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by