1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-08-10 08:12:27 -04:00
sdrangel/modemm17/Convolution.h
2022-07-20 09:57:59 +02:00

26 lines
425 B
C++

// Copyright 2020 Mobilinkd LLC.
#pragma once
#include <cstdint>
#include <cstddef>
#include "Util.h"
namespace modemm17
{
inline constexpr uint32_t convolve_bit(uint32_t poly, uint32_t memory)
{
return popcount(poly & memory) & 1;
}
template <size_t K, size_t k = 1>
inline constexpr uint32_t update_memory(uint32_t memory, uint32_t input)
{
return (memory << k | input) & ((1 << (K + 1)) - 1);
}
} // modemm17