Example

Top  Previous 

 

Examples


 

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 input registers address range: 30001 to 30010, baud rate=19200

 

Please see screenshot of model below:

 

example1_emModbusReadInputRegs

 

 

In "Setup Target" block, we choose "PIC24/Dspic30/Dspic33"  platform.   Double click "emModbusServerDebugSetup", we will see the Modbus Server/Debug parameters settings below:

 

example1_setup_param

 

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:

 

DebugTool_Setting

 

 

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 "emMBSlaveReadInputRegs1", we will see the "emMBSlaveReadInputRegs1" parameters settings below:

 

example1_readinputregs1_param

 

It means this block will update Input register from Modbus server ID=1 and Input register data type is "16 bits of unsigned integer".  This block's in-port "StartAddr" connects Constant block with value= 1 which denotes Input register starting address is 30001.  This block's in-port "Data" connects "Counter Limited" block output,  which provide 0 to 1034 increasing counter output value (uint16 data type) to in-port "Data". So we will see Modbus server (ID=1) input register 30001 increase 1 from 0 to 1034 every sampling period.

 

Double click "emMBSlaveReadInputRegs2", we will see the "emMBSlaveReadInputRegs2" parameters settings below:

 

example1_readinputregs2_param

 

 

It means this block will update Input register from Modbus server ID=1 and Input register data type is "32 bits of signed integer" (big-endian).  This block's in-port "StartAddr" connects Constant block with value= 2 which denotes Input register starting address is 30002.  This block's in-port "Data" connects "Constant" block output,  which provide vector [2.7 -23.8 ] to in-port "Data". So we will see Modbus server (ID=1) input register 30002 value= 0 and input register 30003=27 (big-endian, and factor =10, so 2.7x10 =27) . We also see input register 30004 value= -1 and input register 30005=-238 (big-endian, and factor =10, so -23.8 x10 = -238.  The first word is -1 not 0 due to 2's complement reason)

 

"Probe" block is just for watching "Counter Limited" 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"

 

 

embedded_build

 

 

 

It will start build, and popup dialog window to input base sampling period:

 

embedded_sample

 

 

 

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.

 

embedded_projectDir

 

 

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:

 

example1_ModSAN_result

 

 

We can see address 30001 value changing from 0 to 1034 every 0.5 sec, and 30002 is 0, 30003 is 27, 30004 is -1 , 30005 is -238.  All results are what we expect.

 

Disconnect ModScan32 software, we can use Simulink directly view results.  By select stop time= inf, and click "Run" button,  you will see result below:

 

example1_simulink_result

 

 

You will see all results in all "Display" Blocks.

 

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.

 

Please open "Your embedded creator library folder"/examples/example1_emReadInputRegs.slx  (You must change "PC Com Port for Debug or Monitor" in emModbusServerDebugSetup block according to your physical USB port number)