Skip to content

Commit 0e1d787

Browse files
authored
Merge pull request #1282 from arduino/sync/canchebagur/rs485-change
[PC-1368] - RS485 Update to RS-485
2 parents 500f97a + 660736a commit 0e1d787

File tree

3 files changed

+22
-22
lines changed
  • content
    • hardware
      • 04.pro/carriers/portenta-max-carrier/tutorials/getting-started
      • 05.pro-solutions/solutions-and-kits/portenta-machine-control/tutorials/pmc-opta-temp-ctrl
    • software/plc-ide/tutorials/modbus-setup

3 files changed

+22
-22
lines changed

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/getting-started/content.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,25 @@ A Micro USB port is available for debugging on the Portenta Max Carrier. The deb
8080

8181
The Portenta Max Carrier is equipped with a wide spectrum of connectors for expandability. The following table will show briefly the connectors that are available on the carrier.
8282

83-
| Connector (Ref.) | Description |
84-
| ----------------------------------- | --------------------------------------------------------- |
85-
| **USB Hub (U3)** | USB2514Bi/M2 4-port USB 2.0 Hub IC |
86-
| **LoRa® Header (CN2)** | Debug Header |
87-
| **Debug Header (CN3)** | LoRa® Debug Header |
88-
| **High Density Connectors (J1,J2)** | DF40HC(3.5)-80DS-0.4V(51) High Density Connectors |
89-
| **Modem SMA Connector (J3)** | Right-Angle SMA Connector for Modem |
90-
| **LoRa® SMA Connector (J9)** | Right-Angle SMA Connector for LoRa® |
91-
| **FPC Connector (J4)** | 2-1734248-0 FPC Connector |
92-
| **JTAG Header (CN1)** | FTSH-105-01-F-DV 10-pin JTAG Header |
93-
| **USB DBG0 (J10)** | ZX62-AB-5PA(31) Micro USB Debugger Connector with VBUS |
94-
| **USB DBG1 (J19)** | ZX62-AB-5PA(31) Micro USB Debugger Connector without VBUS |
95-
| **Grove Connector for Audio (J20)** | 110990030 Grove Connector for a Speaker |
96-
| **Header Connector (J5)** | FW-20-05-G-D-254-150 Signal Break |
97-
| **4P4C CAN Connector (J7)** | J6 615006138421 RS232/RS485 Connector J7 6 |
98-
| **6P6C Serial Connector (J6)** | 615006138421 RS232/RS485 Connector |
99-
| **PCIe Connector (J8)** | 1759546-1 Mini PCIe Connector |
100-
| **Micro SD Connector (J11)** | 114-00841-68 Micro SD Connector |
101-
| **Ethernet Connector (J17)** | TRJK7003A97NL Gigabit Ethernet Connector |
83+
| **Connector (Ref.)** | **Description** |
84+
|:-----------------------------------:|:---------------------------------------------------------:|
85+
| **USB Hub (U3)** | USB2514Bi/M2 4-port USB 2.0 Hub IC |
86+
| **LoRa® Header (CN2)** | Debug Header |
87+
| **Debug Header (CN3)** | LoRa® Debug Header |
88+
| **High Density Connectors (J1,J2)** | DF40HC(3.5)-80DS-0.4V(51) High Density Connectors |
89+
| **Modem SMA Connector (J3)** | Right-Angle SMA Connector for Modem |
90+
| **LoRa® SMA Connector (J9)** | Right-Angle SMA Connector for LoRa® |
91+
| **FPC Connector (J4)** | 2-1734248-0 FPC Connector |
92+
| **JTAG Header (CN1)** | FTSH-105-01-F-DV 10-pin JTAG Header |
93+
| **USB DBG0 (J10)** | ZX62-AB-5PA(31) Micro USB Debugger Connector with VBUS |
94+
| **USB DBG1 (J19)** | ZX62-AB-5PA(31) Micro USB Debugger Connector without VBUS |
95+
| **Grove Connector for Audio (J20)** | 110990030 Grove Connector for a Speaker |
96+
| **Header Connector (J5)** | FW-20-05-G-D-254-150 Signal Break |
97+
| **4P4C CAN Connector (J7)** | J6 615006138421 RS-232/RS-485 Connector J7 6 |
98+
| **6P6C Serial Connector (J6)** | 615006138421 RS-232/RS-485 Connector |
99+
| **PCIe Connector (J8)** | 1759546-1 Mini PCIe Connector |
100+
| **Micro SD Connector (J11)** | 114-00841-68 Micro SD Connector |
101+
| **Ethernet Connector (J17)** | TRJK7003A97NL Gigabit Ethernet Connector |
102102

103103
***PCIe connector is available on-board. However, only USB and I<sub>2</sub>C is available for use at the moment.***
104104

content/hardware/05.pro-solutions/solutions-and-kits/portenta-machine-control/tutorials/pmc-opta-temp-ctrl/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ After clicking on `New Project` in the previous step, a window will appear. Set
101101
#### Modbus Server Configuration
102102
<br></br>
103103

104-
Once created, you will configure the Modbus RTU connection through the RS485 Serial Port. To do this, go to the resources window and double-click on `RS485 SerialPort`. If you can't see the `Resources` tab, try going to ```View > Tool windows > Resources```.
104+
Once created, you will configure the Modbus RTU connection through the RS-485 serial port. To do this, go to the resources window and double-click on `RS485 SerialPort`. If you can't see the `Resources` tab, try going to ```View > Tool windows > Resources```.
105105

106106
![RS-485 Resources Window](assets/RS485-Resources.png)
107107

108108
On the `Modbus Configuration` window, set the following parameters to configure Portenta Machine Control as a Server:
109109

110110
- Mode: Modbus RTU Slave
111-
- Port Type: RS485
111+
- Port Type: `RS485`
112112
- Baud rate: 19200 b/s
113113
- Serial Mode: N,8,2 (No parity, 8 data bits, 2 stop bits)
114114
- Modbus address: 17

content/software/plc-ide/tutorials/modbus-setup/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Inside the Arduino PLC IDE navigate to the left side panel and click on the "Res
4545

4646
To configure the Modbus communication click on the "RS485 Serialport" label, it will open a new window in the middle to customize:
4747

48-
![Arduino PLC IDE Resources panel, -> RS485 settings](assets/PLC-IDE-ModBus.png)
48+
![Arduino PLC IDE Resources panel, -> RS-485 settings](assets/PLC-IDE-ModBus.png)
4949

5050
Then you can attach some functions to the Generic Modbus item, they will appear also in the **Catalog Tile Window**, you need to select first the **Generic Modbus_01**
5151

0 commit comments

Comments
 (0)