Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SDR I-Gate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CATS
SDR I-Gate
Commits
c3e87e8f
Commit
c3e87e8f
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
more config options
parent
6ab590de
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#4530
passed
1 year ago
Stage: test
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
config.example.toml
+15
-0
15 additions, 0 deletions
config.example.toml
src/config.rs
+6
-0
6 additions, 0 deletions
src/config.rs
src/decoder/mod.rs
+4
-8
4 additions, 8 deletions
src/decoder/mod.rs
src/decoder/rtl.rs
+27
-27
27 additions, 27 deletions
src/decoder/rtl.rs
src/main.rs
+1
-1
1 addition, 1 deletion
src/main.rs
with
53 additions
and
36 deletions
config.example.toml
+
15
−
0
View file @
c3e87e8f
# rtl_fm parameters
frequency
=
430_500_000
# center frequency, Hz
device_id
=
0
# ID of your RTL-SDR; 0 is default
# if set to true:
# - expects 48k samples/second, 16-bit LE IQ.
# - will not start rtl_fm process
# - will ignore above settings
# probably don't want to touch this unless you're bypassing rtl_fm for some reason
use_stdin
=
false
# max FSK deviation, Hz
# if you don't know what this means, leave it as-is
max_deviation
=
15_000
[felinet]
address
=
"https://felinet.cats.radio"
callsign
=
"CHANGEME"
...
...
This diff is collapsed.
Click to expand it.
src/config.rs
+
6
−
0
View file @
c3e87e8f
...
...
@@ -30,6 +30,12 @@ pub struct FelinetConfig {
#[derive(Deserialize,
Clone)]
pub
struct
Config
{
pub
frequency
:
u32
,
#[serde(default)]
pub
device_id
:
u32
,
#[serde(default)]
pub
use_stdin
:
bool
,
pub
max_deviation
:
i32
,
pub
felinet
:
Option
<
FelinetConfig
>
,
}
...
...
This diff is collapsed.
Click to expand it.
src/decoder/mod.rs
+
4
−
8
View file @
c3e87e8f
...
...
@@ -6,7 +6,7 @@ use uuid::Uuid;
use
crate
::{
codec2
::{
Complex
,
Fsk
},
config
::
Felinet
Config
,
config
::
Config
,
decoder
::
rtl
::
RtlSdr
,
felinet
::
PacketIn
as
SemiPacketIn
,
util
::{
append_internet_to_packet_route
,
print_packet
},
...
...
@@ -19,11 +19,7 @@ mod demod;
mod
packet
;
mod
rtl
;
pub
fn
decode_forever
(
felinet_send
:
mpsc
::
Sender
<
SemiPacketIn
>
,
felinet_config
:
&
Option
<
FelinetConfig
>
,
uuid
:
&
Uuid
,
)
{
pub
fn
decode_forever
(
felinet_send
:
mpsc
::
Sender
<
SemiPacketIn
>
,
config
:
&
Config
,
uuid
:
&
Uuid
)
{
const
USE_STDIN
:
bool
=
false
;
let
bytes
:
Box
<
dyn
Iterator
<
Item
=
u8
>>
=
if
USE_STDIN
{
...
...
@@ -31,7 +27,7 @@ pub fn decode_forever(
Box
::
new
(
stdin
.bytes
()
.map
(|
x
|
x
.expect
(
"Could not read from stdin"
)))
}
else
{
let
rtl
=
RtlSdr
::
new
()
.unwrap
();
let
rtl
=
RtlSdr
::
new
(
config
.frequency
,
config
.device_id
)
.unwrap
();
Box
::
new
(
rtl
)
};
...
...
@@ -51,7 +47,7 @@ pub fn decode_forever(
demod
.demod
(|
mut
p
|
{
print_packet
(
&
p
);
if
let
Some
(
fc
)
=
felinet
_config
{
if
let
Some
(
fc
)
=
&
config
.
felinet
{
if
append_internet_to_packet_route
(
&
fc
.callsign
,
fc
.ssid
,
&
mut
p
)
.is_none
()
{
return
;
};
...
...
This diff is collapsed.
Click to expand it.
src/decoder/rtl.rs
+
27
−
27
View file @
c3e87e8f
...
...
@@ -4,26 +4,19 @@ use anyhow::Context;
use
subprocess
::{
Communicator
,
Popen
,
PopenConfig
,
Redirection
};
pub
struct
RtlSdr
{
process
:
Popen
,
comms
:
Communicator
,
out_buf
:
VecDeque
<
u8
>
,
err_buf
:
Vec
<
u8
>
,
}
impl
RtlSdr
{
pub
fn
new
()
->
anyhow
::
Result
<
Self
>
{
let
mut
p
=
Popen
::
create
(
pub
fn
new
(
freq
:
u32
,
device_id
:
u32
)
->
anyhow
::
Result
<
Self
>
{
let
freq
=
format!
(
"{freq}"
);
let
device_id
=
format!
(
"{device_id}"
);
let
mut
process
=
Popen
::
create
(
&
[
"rtl_fm"
,
"-f"
,
"430500000"
,
"-M"
,
"raw"
,
"-F9"
,
"-p"
,
"0"
,
"-d"
,
"0"
,
"-s"
,
"rtl_fm"
,
"-f"
,
&
freq
,
"-M"
,
"raw"
,
"-F9"
,
"-p"
,
"0"
,
"-d"
,
&
device_id
,
"-s"
,
"48000"
,
],
PopenConfig
{
...
...
@@ -35,9 +28,10 @@ impl RtlSdr {
)
.context
(
"Error starting rtl-fm"
)
?
;
let
comms
=
p
.communicate_start
(
None
)
.limit_size
(
1024
);
let
comms
=
p
rocess
.communicate_start
(
None
)
.limit_size
(
1024
);
Ok
(
Self
{
process
,
comms
,
out_buf
:
VecDeque
::
new
(),
err_buf
:
vec!
[],
...
...
@@ -49,28 +43,34 @@ impl Iterator for RtlSdr {
type
Item
=
u8
;
fn
next
(
&
mut
self
)
->
Option
<
Self
::
Item
>
{
if
let
Some
(
b
)
=
self
.out_buf
.pop_front
()
{
return
Some
(
b
);
}
while
self
.out_buf
.is_empty
()
{
let
(
out
,
err
)
=
self
.comms
.read
()
.ok
()
?
;
let
out
=
out
.expect
(
"Missing stdout"
);
let
err
=
err
.expect
(
"Missing stderr"
);
let
(
out
,
err
)
=
self
.comms
.read
()
.ok
()
?
;
let
out
=
out
.expect
(
"Missing stdout"
);
let
err
=
err
.expect
(
"Missing stderr"
);
self
.out_buf
.extend
(
out
.iter
());
for
e
in
err
{
if
e
==
b'\n'
{
handle_err
(
&
self
.err_buf
);
self
.err_buf
.clear
();
}
else
{
self
.err_buf
.push
(
e
);
}
}
self
.out_buf
.extend
(
out
.iter
());
for
e
in
err
{
if
e
==
b'\n'
{
if
self
.process
.poll
()
.is_some
()
{
handle_err
(
&
self
.err_buf
);
self
.err_buf
.clear
();
}
else
{
self
.err_buf
.push
(
e
);
return
None
;
}
}
self
.out_buf
.pop_front
()
Some
(
self
.out_buf
.pop_front
()
.unwrap
())
}
}
fn
handle_err
(
err
:
&
[
u8
])
{
eprintln!
(
"[rtl_fm] {}"
,
String
::
from_utf8_lossy
(
err
));
if
!
err
.is_empty
()
{
eprintln!
(
"[rtl_fm] {}"
,
String
::
from_utf8_lossy
(
err
));
}
}
This diff is collapsed.
Click to expand it.
src/main.rs
+
1
−
1
View file @
c3e87e8f
...
...
@@ -72,7 +72,7 @@ async fn gate_forever(config: Config) -> anyhow::Result<()> {
}
tokio
::
task
::
spawn_blocking
(
move
||
{
decoder
::
decode_forever
(
tx
,
&
config
.felinet
,
&
uuid
);
decoder
::
decode_forever
(
tx
,
&
config
,
&
uuid
);
})
.await
?
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment