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
d2e7f658
Commit
d2e7f658
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
remove DC bias
parent
07b12eba
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
integrate codec2 fsk demodulator.
Pipeline
#4463
passed
1 year ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/codec2/mod.rs
+47
-4
47 additions, 4 deletions
src/codec2/mod.rs
src/decoder/dc_bias.rs
+40
-0
40 additions, 0 deletions
src/decoder/dc_bias.rs
src/decoder/demod.rs
+3
-3
3 additions, 3 deletions
src/decoder/demod.rs
src/decoder/mod.rs
+5
-2
5 additions, 2 deletions
src/decoder/mod.rs
with
95 additions
and
9 deletions
src/codec2/mod.rs
+
47
−
4
View file @
d2e7f658
use
std
::
collections
::
VecDeque
;
use
std
::{
collections
::
VecDeque
,
ops
::{
AddAssign
,
Div
,
Sub
},
};
const
MODE_M_MAX
:
usize
=
4
;
const
M
:
i32
=
2
;
const
N_SYM
:
i32
=
5
0
;
const
N_SYM
:
i32
=
3
5
;
#[link(name
=
"fsk"
,
kind
=
"static"
)]
extern
"C"
{
...
...
@@ -88,11 +91,50 @@ struct InternalFsk {
}
#[repr(C)]
#[derive(Debug,
Copy,
Clone)]
pub
struct
Complex
{
pub
real
:
libc
::
c_float
,
pub
imag
:
libc
::
c_float
,
}
impl
Complex
{
pub
const
fn
zero
()
->
Self
{
Self
{
real
:
0.0
,
imag
:
0.0
,
}
}
}
impl
Sub
for
Complex
{
type
Output
=
Complex
;
fn
sub
(
self
,
rhs
:
Self
)
->
Complex
{
Complex
{
real
:
self
.real
-
rhs
.real
,
imag
:
self
.imag
-
rhs
.imag
,
}
}
}
impl
AddAssign
for
Complex
{
fn
add_assign
(
&
mut
self
,
rhs
:
Self
)
{
self
.real
+=
rhs
.real
;
self
.imag
+=
rhs
.imag
;
}
}
impl
Div
<
f32
>
for
Complex
{
type
Output
=
Complex
;
fn
div
(
self
,
rhs
:
f32
)
->
Complex
{
Complex
{
real
:
self
.real
/
rhs
,
imag
:
self
.imag
/
rhs
,
}
}
}
pub
struct
Fsk
<
I
:
Iterator
<
Item
=
Complex
>>
{
internal
:
*
mut
InternalFsk
,
input_cache
:
Vec
<
Complex
>
,
...
...
@@ -102,9 +144,10 @@ pub struct Fsk<I: Iterator<Item = Complex>> {
impl
<
I
:
Iterator
<
Item
=
Complex
>>
Fsk
<
I
>
{
pub
fn
new
(
iq_iter
:
I
)
->
Self
{
const
FS
:
i32
=
9600
*
5
;
const
P
:
i32
=
10
;
const
FS
:
i32
=
9600
*
P
;
let
internal
=
unsafe
{
fsk_create_hbr
(
FS
,
9600
,
M
,
5
,
N_SYM
,
-
1
,
0
)
};
let
internal
=
unsafe
{
fsk_create_hbr
(
FS
,
9600
,
M
,
P
,
N_SYM
,
-
1
,
0
)
};
// Set upper/lower bound on the FSK peaks, from center
// (Hz)
...
...
This diff is collapsed.
Click to expand it.
src/decoder/dc_bias.rs
0 → 100644
+
40
−
0
View file @
d2e7f658
use
crate
::
codec2
::
Complex
;
// 1 seconds @ 48KHz
const
AVERAGE_TIME
:
usize
=
48_000
;
pub
struct
RemoveDcBias
<
I
:
Iterator
<
Item
=
Complex
>>
{
iter
:
I
,
sum
:
Complex
,
i
:
usize
,
avg
:
Complex
,
}
impl
<
I
:
Iterator
<
Item
=
Complex
>>
RemoveDcBias
<
I
>
{
pub
fn
new
(
iter
:
I
)
->
Self
{
Self
{
iter
,
sum
:
Complex
::
zero
(),
i
:
0
,
avg
:
Complex
::
zero
(),
}
}
}
impl
<
I
:
Iterator
<
Item
=
Complex
>>
Iterator
for
RemoveDcBias
<
I
>
{
type
Item
=
Complex
;
fn
next
(
&
mut
self
)
->
Option
<
Self
::
Item
>
{
let
val
=
self
.iter
.next
()
?
;
self
.sum
+=
val
;
self
.i
+=
1
;
if
self
.i
==
AVERAGE_TIME
{
self
.avg
=
self
.sum
/
(
self
.i
as
f32
);
self
.i
=
0
;
self
.sum
=
Complex
::
zero
();
}
Some
(
val
-
self
.avg
)
}
}
This diff is collapsed.
Click to expand it.
src/decoder/demod.rs
+
3
−
3
View file @
d2e7f658
...
...
@@ -8,7 +8,7 @@ use crate::MAX_PACKET_LEN;
use
super
::
packet
::{
PacketDecoder
,
Status
};
const
SYNC_WORD
:
u32
=
0xABCDEF12
;
const
MAX_BIT_FLIPS
:
u32
=
3
;
const
MAX_BIT_FLIPS
:
u32
=
5
;
pub
struct
Demod
<
T
:
DecodeFrom
,
I
:
Iterator
<
Item
=
T
>>
{
rolling_sync
:
u32
,
...
...
@@ -49,8 +49,8 @@ impl<T: DecodeFrom, I: Iterator<Item = T>> Demod<T, I> {
}
}
for
i
in
to_remove
{
self
.decoders
.swap_remove
(
i
);
for
i
in
to_remove
.iter
()
.rev
()
{
self
.decoders
.swap_remove
(
*
i
);
}
if
self
.sync_matches
()
{
...
...
This diff is collapsed.
Click to expand it.
src/decoder/mod.rs
+
5
−
2
View file @
d2e7f658
...
...
@@ -11,8 +11,9 @@ use crate::{
util
::{
append_internet_to_packet_route
,
print_packet
},
};
use
self
::
demod
::
Demod
;
use
self
::
{
dc_bias
::
RemoveDcBias
,
demod
::
Demod
}
;
mod
dc_bias
;
mod
demod
;
mod
packet
;
...
...
@@ -34,7 +35,9 @@ pub fn decode_forever(
Complex
{
real
,
imag
}
});
let
soft_bits
=
Fsk
::
new
(
iq
);
let
iq_no_dc
=
RemoveDcBias
::
new
(
iq
);
let
soft_bits
=
Fsk
::
new
(
iq_no_dc
);
let
demod
=
Demod
::
new
(
soft_bits
);
...
...
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