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
9498885a
Commit
9498885a
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
add bias-T config
parent
a3274abc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#4746
passed
1 year ago
Stage: test
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
config.example.toml
+1
-0
1 addition, 0 deletions
config.example.toml
src/config.rs
+2
-0
2 additions, 0 deletions
src/config.rs
src/decoder/mod.rs
+7
-1
7 additions, 1 deletion
src/decoder/mod.rs
src/decoder/rtl.rs
+9
-1
9 additions, 1 deletion
src/decoder/rtl.rs
with
19 additions
and
2 deletions
config.example.toml
+
1
−
0
View file @
9498885a
# rtl_fm parameters
frequency
=
430_500_000
# center frequency, Hz
device_id
=
"0"
# ID of your RTL-SDR; 0 is default
bias_t
=
false
# gain = 30.0 # dB. Uses AGC when not specified
# if set to true:
...
...
This diff is collapsed.
Click to expand it.
src/config.rs
+
2
−
0
View file @
9498885a
...
...
@@ -37,6 +37,8 @@ pub struct Config {
pub
frequency
:
u32
,
#[serde(default
=
"default_device_id"
)]
pub
device_id
:
String
,
#[serde(default)]
pub
bias_t
:
bool
,
pub
gain
:
Option
<
f32
>
,
#[serde(default)]
pub
use_stdin
:
bool
,
...
...
This diff is collapsed.
Click to expand it.
src/decoder/mod.rs
+
7
−
1
View file @
9498885a
...
...
@@ -27,7 +27,13 @@ pub fn decode_forever(felinet_send: mpsc::Sender<SemiPacketIn>, config: &Config,
Box
::
new
(
stdin
.bytes
()
.map
(|
x
|
x
.expect
(
"Could not read from stdin"
)))
}
else
{
let
rtl
=
RtlSdr
::
new
(
config
.frequency
,
&
config
.device_id
,
config
.gain
)
.unwrap
();
let
rtl
=
RtlSdr
::
new
(
config
.frequency
,
&
config
.device_id
,
config
.gain
,
config
.bias_t
,
)
.unwrap
();
Box
::
new
(
rtl
)
};
...
...
This diff is collapsed.
Click to expand it.
src/decoder/rtl.rs
+
9
−
1
View file @
9498885a
...
...
@@ -11,7 +11,12 @@ pub struct RtlSdr {
}
impl
RtlSdr
{
pub
fn
new
(
freq
:
u32
,
device_id
:
&
str
,
gain
:
Option
<
f32
>
)
->
anyhow
::
Result
<
Self
>
{
pub
fn
new
(
freq
:
u32
,
device_id
:
&
str
,
gain
:
Option
<
f32
>
,
bias_t
:
bool
,
)
->
anyhow
::
Result
<
Self
>
{
let
freq
=
format!
(
"{freq}"
);
let
mut
args
=
vec!
[
"rtl_fm"
,
"-f"
,
&
freq
,
"-M"
,
"raw"
,
"-F9"
,
"-p"
,
"0"
,
"-d"
,
device_id
,
"-s"
,
"48000"
,
...
...
@@ -22,6 +27,9 @@ impl RtlSdr {
gain_s
.push_str
(
&
format!
(
"{:.2}"
,
g
));
args
.push
(
&
gain_s
);
}
if
bias_t
{
args
.push
(
"-T"
);
}
let
mut
process
=
Popen
::
create
(
&
args
,
PopenConfig
{
...
...
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