We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a GPS module installed in a GrovePI, using the RPISER port. (Raspberry Pi 3).
using ser = serial.Serial('dev/ttyAMA0',9600, timeout=0 ) # open serial port. ... GPS.inp = ser.readline() print(GPS.inp) Result b'' b''
using ser = serial.Serial('dev/ttyAMA0',9600, timeout=0 ) # open serial port. ... GPS.inp = ser.readline() print(GPS.inp)
Using following config setting. dtoverlay=pi3-diable-bt enable_uart=1 core_freq=250
The text was updated successfully, but these errors were encountered:
I am having this problem as well in July. A solution would be nice.
Sorry, something went wrong.
On a Pi3, or Pi3B+ some configuration is needed.
Step 1: in /boot/config.txt, add at the end of the file: dtoverlay=pi3-miniuart-bt dtoverlay=pi3-disable-bt enable_uart=1
dtoverlay=pi3-miniuart-bt
dtoverlay=pi3-disable-bt
enable_uart=1
Step 2: in /boot/cmdline.txt remove : console=ttyAMA0,115200 console=tty1 and add: plymouth.ignore-serial-consoles
console=ttyAMA0,115200 console=tty1
plymouth.ignore-serial-consoles
Step 3: reboot.
No branches or pull requests
I have a GPS module installed in a GrovePI, using the RPISER port. (Raspberry Pi 3).
using ser = serial.Serial('dev/ttyAMA0',9600, timeout=0 ) # open serial port. ... GPS.inp = ser.readline() print(GPS.inp)
Result
b''
b''
Using following config setting.
dtoverlay=pi3-diable-bt
enable_uart=1
core_freq=250
The text was updated successfully, but these errors were encountered: