You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/04.pro/carriers/portenta-mid-carrier/tutorials/user-manual/content.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -659,7 +659,8 @@ To accommodate the power requirements and ensure reliable connectivity, jumper c
659
659
This precaution is necessary to prevent wire overheating and ensure reliable power transmission for the connected Mini PCIe-compatible module, such as Cat.4 modems. A minimum requirement to set the mini PCIe interface with the Portenta Mid Carrier consists of:
660
660
661
661
-**3V3 PCIE** pin connected to **3V3 BUCK** pin
662
-
- Properly inserted mini PCIe module, e.g., Pro 4G GNSS Module Global (EG25) / Pro 4G EMEA (EC200A-EU) Module
662
+
-**OUT VCC** pin connected to **3V3 BUCK EN** pin
663
+
- Properly inserted mini PCIe module, e.g., [Pro 4G GNSS Module Global (EG25)](https://store.arduino.cc/products/4g-module-global) / [Pro 4G EMEA (EC200A-EU)](https://store.arduino.cc/products/4g-module-emea) Module
663
664
664
665
***Please use a 5.0 V external power source when using an Arduino Pro 4G Module (EMEA / GNSS Global) or any other mPCIe modules due to their high power consumption. This is important for maintaining a stable power supply to the Portenta SOM and the carrier, particularly for extended periods of use.***
665
666
@@ -2502,6 +2503,23 @@ It will show a similar result when the Portenta C33 is used as the core device w
2502
2503
2503
2504

2504
2505
2506
+
In case the example encounters a `301` error like the following:
2507
+
2508
+
```bash
2509
+
<head><title>301 Moved Permanently</title></head>
2510
+
```
2511
+
2512
+
Try updating the `server[]` and `resource[]` to use a different HTTP endpoint of your preference, or use this testing service:
2513
+
2514
+
```
2515
+
const char server[] = "httpbin.org";
2516
+
const char resource[] = "/get";
2517
+
```
2518
+
2519
+
You should see a result similar to the following:
2520
+
2521
+

2522
+
2505
2523
You may find additional examples within the library to try various functionalities such as deleting SMS, getting GPS location, and connecting to web servers securely:
2506
2524
2507
2525
-[**HTTPSClient**](https://github.com/arduino-libraries/Arduino_Cellular/blob/main/examples/HTTPSClient/HTTPSClient.ino): Establishes a secure connection to a web server with [*BearSSL*](https://bearssl.org/) and [*ArduinoHttpClient*](https://github.com/arduino-libraries/ArduinoHttpClient).
0 commit comments