mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-25 12:07:49 +02:00
Switched to a custom logging lib instead of that spdlog junk
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include <crc16.h>
|
||||
#include <spdlog/spdlog.h>
|
||||
#include <utils/flog.h>
|
||||
|
||||
bool M17CheckCRC(uint8_t* data, int len) {
|
||||
// TODO: Implement
|
||||
|
@ -227,7 +227,7 @@ namespace dsp {
|
||||
detect = true;
|
||||
outCount = 0;
|
||||
type = 0;
|
||||
//spdlog::warn("Found sync frame");
|
||||
//flog::warn("Found sync frame");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -236,7 +236,7 @@ namespace dsp {
|
||||
detect = true;
|
||||
outCount = 0;
|
||||
type = 1;
|
||||
//spdlog::warn("Found stream frame");
|
||||
//flog::warn("Found stream frame");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -245,7 +245,7 @@ namespace dsp {
|
||||
detect = true;
|
||||
outCount = 0;
|
||||
type = 2;
|
||||
//spdlog::warn("Found packet frame");
|
||||
//flog::warn("Found packet frame");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user