From a94cdc229c4201cacf17ba95b904a78931d90e11 Mon Sep 17 00:00:00 2001 From: Wojciech Kaczmarski <44336093+sp5wwp@users.noreply.github.com> Date: Wed, 7 Dec 2022 17:52:32 +0100 Subject: [PATCH] Delete golay.h --- SP5WWP/golay.h | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 SP5WWP/golay.h diff --git a/SP5WWP/golay.h b/SP5WWP/golay.h deleted file mode 100644 index fc83a6b..0000000 --- a/SP5WWP/golay.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef GOLAY_H -#define GOLAY_H - -void IntToSoft(uint16_t* out, const uint16_t in, uint8_t len); -uint16_t SoftToInt(const uint16_t* in, uint8_t len); -uint16_t Div16(uint16_t a, uint16_t b); -uint16_t Mul16(uint16_t a, uint16_t b); -uint16_t SoftBitXOR(const uint16_t a, const uint16_t b); -void SoftXOR(uint16_t* out, const uint16_t* a, const uint16_t* b, uint8_t len); -uint32_t spopcount(const uint16_t* in, uint8_t siz); -void calcChecksumS(uint16_t* out, const uint16_t* value); -uint32_t SdetectErrors(const uint16_t* codeword); -uint16_t golay24_sdecode(const uint16_t* codeword); - -#endif