Skip to content

Commit

Permalink
add ./release.sh, release dir
Browse files Browse the repository at this point in the history
  • Loading branch information
driftregion committed Dec 15, 2023
1 parent c4e86eb commit ea0b196
Show file tree
Hide file tree
Showing 10 changed files with 4,773 additions and 82 deletions.
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ refresh_compile_commands(
targets = {
"//examples/s32k144/...": "--config=s32k",
}
)
)
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ iso14229 is an implementation of UDS (ISO14229-1:2013) targeting embedded system

API status: **not yet stable**.


## Quick Start

1. Get `iso14229.c` and `iso14229.h` from the [release](./release) directory, copy into your source tree and build.
2. See [examples](./examples).

## Features

- static memory allocation. does not use `malloc`, `calloc`
Expand All @@ -25,10 +31,6 @@ API status: **not yet stable**.
- server has fuzz test, see [test/README.md](test/README.md)
-

## Quick Start

See [examples](./examples).

## Preprocessor Defines

| Define | Description | Valid values |
Expand Down
15 changes: 0 additions & 15 deletions examples/client_multiserver/BUILD

This file was deleted.

59 changes: 0 additions & 59 deletions examples/client_multiserver/main.c

This file was deleted.

1 change: 0 additions & 1 deletion examples/client_multiserver/server1.c

This file was deleted.

Empty file.
4 changes: 4 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
rm -f release/iso14229.c release/iso14229.h
cp bazel-bin/iso14229.c release/iso14229.c && chmod 644 release/iso14229.c
cp bazel-bin/iso14229.h release/iso14229.h && chmod 644 release/iso14229.h
Loading

0 comments on commit ea0b196

Please sign in to comment.