Skip to content

Commit dc179bb

Browse files
committed
Initial commit - User manual Pro 4G Module section update pin config
1 parent cd51223 commit dc179bb

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed
1.69 MB
Loading
209 KB
Loading
280 KB
Loading

content/hardware/04.pro/carriers/portenta-mid-carrier/tutorials/user-manual/content.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,8 @@ To accommodate the power requirements and ensure reliable connectivity, jumper c
659659
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:
660660

661661
- **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
663664

664665
***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.***
665666

@@ -2502,6 +2503,23 @@ It will show a similar result when the Portenta C33 is used as the core device w
25022503

25032504
![Portenta C33 & Pro 4G Module - HTTPClient Example](assets/portentaMIDcarrier_c33_mpcie_4gmodem_result.png)
25042505

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+
![Portenta C33 & Pro 4G Module - HTTPClient Example](assets/portentaMIDcarrier_c33_mpcie_4gmodem_result_2.png)
2522+
25052523
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:
25062524

25072525
- [**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

Comments
 (0)