Before importing the System object™ to Simulink®, it is recommended that you check the operation of the System object in the MATLAB® command line.
Create an instance of the DigitalWrite
class.
dw = DigitalWrite()
Execute the stepImpl
method
step(dw,1)
Remove the dw
system object and
test the releaseImpl
method.
clear dw
Validating the behavior of the System object at the MATLAB command line helps to identify potential issues or errors in the code. These issues or errors become harder to isolate when the System object is used in a MATLAB System block.
In the next section, you will Create the MATLAB System Block.
Create a Digital Write Block | Create the MATLAB System Block | Specify the Initialization, Output, and Termination Behavior