Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,8 @@ build*
Testing

# VSCode files
.vscode
.vscode

# SEGGER Embedded studio
*.emSession
/projects/nRF5340-DK/Output
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![build](https://github.com/quentinlampin/cschc/actions/workflows/cmake.yml/badge.svg)](https://github.com/quentinlampin/cschc/actions/workflows/cmake.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
# CSCHC - Implementation of Static Context Header Compression (SCHC), RFC 8724


## In a nutshell

C implementation of Static Context Header Compression (SCHC), RFC 8724
Expand Down Expand Up @@ -44,6 +43,10 @@ cmake -S. -B build-release -DCMAKE_BUILD_TYPE=Release;
cmake --build build-release --verbose;
```

- Build for nRF5340-DK:
- open `projects/nRF5340-DK/cschc.emProject/`
- build and load

## Note for Darwin users (macOS)

For debugging and testing, it is recommended to build using the LLVM toolchain provided by Homebrew
Expand Down
Loading