#Connect at 9600 with minicom
minicom -b 9600 -D /dev/ttyUSB0
#After each command send ctrl-J to add the linefeed
#Suppress unwanted sentences:
$PCAS03,1,0,0,9,3,0,0,0*09
import requests | |
import serial | |
#Edit me!! | |
token = "TOKEN" #Token getted from u-blox | |
comPort = "/dev/tty.usbmodem" #GPS Com port | |
print ("Connecting to u-blox") | |
r = requests.get("http://online-live1.services.u-blox.com/GetOnlineData.ashx?token=" + token + ";gnss=gps;datatype=eph,alm,aux,pos;filteronpos;format=aid", stream=True) | |
print ("Downloading A-GPS data") |
#Connect at 9600 with minicom
minicom -b 9600 -D /dev/ttyUSB0
#After each command send ctrl-J to add the linefeed
#Suppress unwanted sentences:
$PCAS03,1,0,0,9,3,0,0,0*09
This guide is for fedora
clone j1939 linux kernel branch git clone git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
cd linux-can-next
switch to j1939 branch
copy your current kernel config cp /boot/config-
uname -r* .config
first part from https://delta-xi.net/#056
Reboot, enter your BIOS/UEFI. Go to Config - Thunderbolt (TM) 3 - set Thunerbolt BIOS Assist Mode to Enabled. It has also been reported that Security - Secure Boot must be disabled.
Install iasl (Intel's compiler/decompiler for ACPI machine language) and cpio from your distribution.
Get a dump of your ACPI DSDT table.
$ cat /sys/firmware/acpi/tables/DSDT > dsdt.aml