mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-14 17:27:39 +00:00
Remove commented, dead code.
This commit is contained in:
@@ -39,13 +39,6 @@ void AISProcessor::execute(const buffer_c8_t& buffer) {
|
|||||||
|
|
||||||
/* 38.4kHz, 32 samples */
|
/* 38.4kHz, 32 samples */
|
||||||
feed_channel_stats(decimator_out);
|
feed_channel_stats(decimator_out);
|
||||||
/* No spectrum display while AIS decoding.
|
|
||||||
feed_channel_spectrum(
|
|
||||||
channel,
|
|
||||||
decimator_out.sampling_rate * channel_filter_taps.pass_frequency_normalized,
|
|
||||||
decimator_out.sampling_rate * channel_filter_taps.stop_frequency_normalized
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
for(size_t i=0; i<decimator_out.count; i++) {
|
for(size_t i=0; i<decimator_out.count; i++) {
|
||||||
if( mf.execute_once(decimator_out.p[i]) ) {
|
if( mf.execute_once(decimator_out.p[i]) ) {
|
||||||
|
@@ -40,7 +40,6 @@ float ERTProcessor::abs(const complex8_t& v) {
|
|||||||
|
|
||||||
void ERTProcessor::execute(const buffer_c8_t& buffer) {
|
void ERTProcessor::execute(const buffer_c8_t& buffer) {
|
||||||
/* 4.194304MHz, 2048 samples */
|
/* 4.194304MHz, 2048 samples */
|
||||||
// auto decimator_out = decimator.execute(buffer);
|
|
||||||
|
|
||||||
const complex8_t* src = &buffer.p[0];
|
const complex8_t* src = &buffer.p[0];
|
||||||
const complex8_t* const src_end = &buffer.p[buffer.count];
|
const complex8_t* const src_end = &buffer.p[buffer.count];
|
||||||
|
@@ -60,13 +60,6 @@ void TPMSProcessor::execute(const buffer_c8_t& buffer) {
|
|||||||
|
|
||||||
/* 307.2kHz, 256 samples */
|
/* 307.2kHz, 256 samples */
|
||||||
feed_channel_stats(decimator_out);
|
feed_channel_stats(decimator_out);
|
||||||
/* No spectrum display while FSK decoding.
|
|
||||||
feed_channel_spectrum(
|
|
||||||
channel,
|
|
||||||
decimator_out.sampling_rate * channel_filter_taps.pass_frequency_normalized,
|
|
||||||
decimator_out.sampling_rate * channel_filter_taps.stop_frequency_normalized
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
|
|
||||||
for(size_t i=0; i<decimator_out.count; i++) {
|
for(size_t i=0; i<decimator_out.count; i++) {
|
||||||
if( mf.execute_once(decimator_out.p[i]) ) {
|
if( mf.execute_once(decimator_out.p[i]) ) {
|
||||||
|
Reference in New Issue
Block a user