From 6bfbc4ed665cedfa819e6cc5e63eb698e02bfdd0 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Tue, 13 Apr 2021 14:58:12 +0200 Subject: [PATCH] CRC is in CODE namespace --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12b0842..044ed00 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ For example, if we need to integrate CRC32 checking for a few bytes, like in the ``` We can add it to our project as simple as that: ``` -DSP::CRC crc(0xEDB88320, 0xFFFFFFFF); +CODE::CRC crc(0xEDB88320, 0xFFFFFFFF); for (uint8_t c: std::string("Hello World!")) crc(c); assert(~crc() == 0x1C291CA3); ```