mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Quick correlator fix
This commit is contained in:
parent
d57ec9fc65
commit
1c4e4e6b8c
1 changed files with 2 additions and 3 deletions
|
|
@ -6,7 +6,6 @@
|
|||
*/
|
||||
|
||||
#include "correlator.h"
|
||||
#include <SatHelper/exceptions/WordSizeException.h>
|
||||
#include <memory.h>
|
||||
#include <iostream>
|
||||
|
||||
|
|
@ -29,7 +28,7 @@ Correlator::~Correlator() {
|
|||
|
||||
void Correlator::addWord(uint32_t word) {
|
||||
if (currentWordSize != 0 && currentWordSize != 32) {
|
||||
throw WordSizeException(32, currentWordSize);
|
||||
// throw WordSizeException(32, currentWordSize);
|
||||
}
|
||||
VecU8 wordVec;
|
||||
|
||||
|
|
@ -46,7 +45,7 @@ void Correlator::addWord(uint32_t word) {
|
|||
|
||||
void Correlator::addWord(uint64_t word) {
|
||||
if (currentWordSize != 0 && currentWordSize != 64) {
|
||||
throw WordSizeException(64, currentWordSize);
|
||||
//throw WordSizeException(64, currentWordSize);
|
||||
}
|
||||
VecU8 wordVec;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue