After trying everything in this thread, and still having this issue when startup, I found this beauty which did the trick: sudo ln -s /lib/systemd/system/gpsd.service /etc/systemd/system/multi-user.target.wants/ Got the information from this web-site, which makes a wonderful step to step to configur...
I believe it is 'gpsd' the one that is causing the issues. When the device boots I have no access to any of the UART modules. This is the /etc/default/gpsd content (based on this https://www.raspberrypi.org/forums/viewtopic.php?f=45&t=53644 ): # Default settings for the gpsd init script and the ...
I solved the issue connecting my other UART device to the CP2102, and the GPS to the RPi built-in UART. Though I would prefer this to be the other way, I can't spend much more time giving this a try.
On a python file: #!/usr/bin/python import time import pigpio RX = 3 pi = pigpio.pi() pi.set_mode(RX, pigpio.INPUT) pi.bb_serial_read_open(RX, 9600, 8) while True: (count, data) = pi.bb_serial_read(RX) if count: print data time.sleep(1) Which I run from the console: sudo python pigpio.py Edit: I rea...
I need your help. I installed the library in Raspbian: sudo apt-get install pigpio python-pigpio python3-pigpio And when I try to use it I get an error on the line: pi = pigpio.pi() pigpio.pi() AttributeError: 'module' object has no attribute 'pi' This does not happen when I run python and then manu...
For a GPS module GY-NEO6MV2. I will use python to access the device with PySerial API. I may try to use software UART RX, though I am still working on it. Edit: When connecting the GPS module to the CP2102, the RX led blinks 1Hz, which I believe is the GPS TX frequency. Also when I echo something to...
Dear forum memebers I need your support regarding a CP2102 USB/UART module. I have short-circuited TX and RX pins in order to get echo in a minicom console, but I can't manage to make it do anything. I have connected the module to my windows PC and it works fine with puTTY. dmesg [ 824.495144] usb 1...
Have you made any progress? I am now coneccting the module but getting no response. EDIT: I successfully managed to get a response from the module using minicom. The conections are: - RPi TXD (physical 8) to SIM908 GPRS-RXD - RPi RXD (physical 10) to SIM908 GPRS-TXD - RPi 3.3v (physical 1) to SIM908...