View rtkrcv.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rtkrcv options (2010/08/12 07:12:16, v.2.4.0) | |
console-passwd =admin | |
console-timetype =gpst # (0:gpst,1:utc,2:jst,3:tow) | |
console-soltype =deg # (0:dms,1:deg,2:xyz,3:enu,4:pyl) | |
console-solflag =2 # (0:off,1:std+2:age/ratio/ns) | |
inpstr1-type =ntrip # (0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,7:ntripcli,8:ftp,9:http) | |
inpstr2-type =ntrip # (0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,7:ntripcli,8:ftp,9:http) | |
inpstr3-type =off # (0:off,1:serial,2:file,3:tcpsvr,4:tcpcli,7:ntripcli,8:ftp,9:http) | |
inpstr1-path =ntrip.phys.info.hiroshima-cu.ac.jp:80/ROV |
View lora-server.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Copyright (C) 2019 by Satoshi Takahashi, all right reserved. | |
# https://s-taka.org/ | |
# BSD 2-clause license | |
import re | |
import serial | |
import time |
View lora-client.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Copyright (C) 2019 by Satoshi Takahashi, all right reserved. | |
# https://s-taka.org/ | |
# BSD 2-clause license | |
import re | |
import serial | |
import sys | |
import threading |
View osmosdr.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[GNSS-SDR] | |
;######### GLOBAL OPTIONS ################## | |
GNSS-SDR.internal_fs_sps=4000000 | |
;######### CONTROL_THREAD CONFIG ############ | |
;ControlThread.wait_for_flowgraph=false | |
;######### SIGNAL_SOURCE CONFIG ############ | |
;https://gnss-sdr.org/docs/sp-blocks/signal-source/#implementation-osmosdr_signal_source | |
SignalSource.implementation=RtlTcp_Signal_Source |
View Vagrantfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "bento/debian-9.3" | |
config.vm.hostname = "gnuradio" | |
config.vm.provider :virtualbox do |vbox| | |
vbox.name = "gnuradio" | |
vbox.gui = true | |
vbox.cpus = 2 |
View lte-m-sample.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <WioCellLibforArduino.h> | |
#include <math.h> | |
#define L_EQUIP 100 | |
#define L_MSG 100 | |
#define T_SEND 1800 | |
#define APN "soracom.io" | |
#define USERNAME "sora" | |
#define PASSWORD "sora" | |
#define WEBHOOK_URL "http://beam.soracom.io:8888/lte-m/" |
View sigfox-una-shieldv2s-temp-humid-pressure.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <SPI.h> | |
#include <Adafruit_Sensor.h> | |
#include <Adafruit_BME280.h> | |
#include <Adafruit_MMA8451.h> | |
#include <SIGFOX.h> | |
/* | |
#define BME_SCK 13 | |
#define BME_MISO 12 |
View osr.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Setting for ssr2osr's conversion models | |
pos1-posmode =ssr2osr # (10:ssr2osr,11:ssr2osr-fixed) | |
#pos1-frequency =l1+l2+l5 # (2:l1+l2, 3:l1+l2+l5) | |
pos1-frequency =l1+l2 # (2:l1+l2, 3:l1+l2+l5) | |
pos1-elmask =15 # (deg) | |
pos1-snrmask_r =on # (0:off,1:on) | |
pos1-snrmask_L1 =10,10,10,10,30,30,30,30,30 | |
pos1-snrmask_L2 =10,10,10,10,30,30,30,30,30 | |
pos1-snrmask_L5 =10,10,10,10,30,30,30,30,30 | |
pos1-tidecorr =on # (0:off,1:on) |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# makefile for ssr2obs | |
CC = gcc | |
CFLAGS = \ | |
-DCSSR2OSR_VRS \ | |
-DENAGAL \ | |
-DENAGLO \ | |
-DENAQZS \ | |
-DLAPACK \ | |
-DNEXOBS=2 \ |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# makefile for ssr2osr | |
CC = gcc | |
CFLAGS = \ | |
-DENAGAL \ | |
-DENAQZS \ | |
-DENA_SSR2OSR \ | |
-DLAPACK \ | |
-DNFREQ=3 \ | |
-DTRACE \ |
OlderNewer