Skip to content
This repository was archived by the owner on Jul 7, 2022. It is now read-only.

Commit 0303a6b

Browse files
committed
Improving usage example given in header file
1 parent b1c50cf commit 0303a6b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This Arduino library provides a simple interface to perform checkum calculations
66
## Usage
77

88
```C++
9+
#include <Arduino_CRC32.h>
10+
/* ... */
11+
Arduino_CRC32 crc32;
12+
/* ... */
913
char const str[] = "Hello CRC32 ;)";
1014
uint32_t const crc32_res = crc32.calc((uint8_t const *)str, strlen(str));
1115
```

0 commit comments

Comments
 (0)