Raspberry Pi GPRS/GPS notes === ###### 2019-11-01 I'm focusing on a SIM4320(A) chip: * [Adafruit](https://www.adafruit.com/product/2687) - [simcom](https://cdn-shop.adafruit.com/datasheets/SIMCOM_SIM5320_ATC_EN_V2.02.pdf) - [sim4320 datasheet](https://www.tinyosshop.com/datasheet/SIM5320_Hardware+Design_V1.07.pdf) * [DIYmall](https://www.amazon.com/gp/product/B06Y3N1BD6) * [Arduino SIM5320A](https://www.amazon.com/gp/product/B01HNV3ZXC) GPRS --- | Raspberry Pi Pin | FONA Pin | Description | |---|---|---| | 3.3v (1) | Vio (4) | Sets logic level, must be externally powered (RPi -> FONA) | | GND (6) | GND (3) | | | TXD (8) | RX (6) | RPi transmit -> FONA receive | | RXD (10) | TX (7) | RPi receive <- FONA transmit | | GND (6) | Key (11) | Pulse 3-5s to ground to switch state (initially off) | `Key` is tied to the power button on the FONA. We want this to be permanently on without the need for the Pi to turn it on or off, so this should be tied to ground (?). On the Raspberry Pi (RPi 3B+, Raspbian 2019-07-10 Buster) ``` sudo bash apt-get update apt-get install ppp screen minicom # disable rpi serial interface so we can use it from FONA # also disable bluetooth and wifi as we don't need it # cat >> /boot/config.txt < /etc/ppp/peers/fona <> /etc/modprobe.d/raspi-blacklist.conf <