|
Example |
Top Previous |
|
Example1:
Our embedded platform is dsPIC33EP256GP502 . Uart2 connects RS485 Transceiver, and TX_transmit Enable is controlled by RB11. Logic High will enable RS485 transmit and disable RS485 receiver. Our embedded Modbus Server ID=1, and supports coil registers address range: 00008 to 00025, baud rate=19200
Please see screenshot of model below:
In "Setup Target" block, we choose "PIC24/Dspic30/Dspic33" platform. Double click "emModbusServerDebugSetup", we will see the Modbus Server/Debug parameters settings below:
In our hardware environment, we use "Modbus RTU/ASCII Dual Masters adaptor" as debugger/monitor. Please plug into "Modbus RTU/ASCII Dual Masters adaptor" to your PC USB Port. And if you are the first time to use this adaptor, run software "ConfigTool.exe" to config debug/monitor tool:
In above configuration, The first Uart setting must match Target including baud rate and physical interface (RS485/RS422/RS232). The second part setting can be different, but you must make sure parameter "PC Side USB/Bluetooth Serial Port Baud Rate" in "emModbusServerDebugSetup" block matches it. Double click "emMBSlaveWriteCoils", we will see the "emMBSlaveWriteCoils" parameters settings below:
It means this block will receive coil register from Modbus server ID=1 Uart No =2. This block's in-port "StartAddr" connects Constant block with value= 8 which denotes coil register starting address is 00008. This block's in-port "Data" connects "Constant" block output, which provide boolean vector [1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 1] to in-port "Data". So we will see Modbus server (ID=1) coil register 00008 to 00010 with value "true", coil register 00011 to 00013 with value "false", ... , coil register 00020 to 00024 with value "true" if we start running simulation. "Probe" block is just for watching "emMBSlaveWriteCoils" block output. For any block output except "Constant block", if its name does not contain "Right Arrow" (à), you must use "Probe" block to watch its value.
Before you build this simulink model, you must create the firmware project by your IDE. and remember the firmware project directory name. In our example, it is microchip MPLAX IDE software, you must use MCC to configure timer1 as 1ms timer and interrupt enabled. You must use MCC to enable Uart2 with interrupt enabled and both "software Transmit Buffer Size" and "software Receive Buffer Size" =255 or 254. Timer1 interrupt priority is below UART (you can choose equal too). We put our MCC configuration file BasePrj.mc3 into example folder for your reference. You must modify according to your hardware. You'd better compile your firmware which is created by MCC to identify any error by MCC.
After your "Modbus RTU/ASCII Dual Masters adaptor" connects to Target (dspic33) and PC USB, right click on any empty space of simulink model, pop up context menu, click on menu item "Build Embedded Target and open its IDE"
It will start build, and popup dialog window to input base sampling period:
Input your base sample time and click OK. If any error occurs, it will stop building, and display error information. The error block will display in Yellow color. If build successfully, it will popup window to ask you firmware directory for your IDE project.
If you give out the correct IDE project directory, Simulink will open IDE software automatically. And you can compile firmware in your IDE, and program into Target by emulator IDE supported.
If your firmware program into target successfully, you can use ModScan32 software to view result below:
However, we see all coil regsiter values are 0 (false). All results seem not what we expect. The reason is input port Data for "emMBSlaveWriteCoils" is from PC Side. If we didn't run simulink, embedded target didn't receive coil register writing command, so all coil register value are zero (false).
Disconnect ModScan32 software, we can use Simulink directly view results. By select stop time= inf, and click "Run" button, you will see result below:
You will see all results in all "Display" Blocks. It is what we expect.
Notes: You can run both ".ModScan32 " and "Simulink" at the same time. But you must enable "Modbus RTU/ASCII Dual Masters adaptor" Bluetooth, .and "ModScan32" cannot use the same COM port as Simulink. We recommend to use Simulink instead of ".ModScan32 " because " ModScan32 " cannot watch general variables. Simulink can watch any variables by "Probe" (also called emProbe) blocks.
Now, we can stop simulink, and run ModScan32 software, you can use ModScan32 software to view result below:
We can see coil register 00008 to 00024 value are as what we expect.
Please open "Your embedded creator library folder"/examples/example6_emWriteCoils.slx (You must change "PC Com Port for Debug or Monitor" in emModbusServerDebugSetup block according to your physical USB port number)
|