umcan 0.1.1

A no_std rust crate to generate and parse CAN Frames for UltraMotion Actuators.
Documentation
# umcan-rs

A `no_std` rust crate to generate and parse CAN Frames for the [Ultra Motion Servo Cylinder
CAN Protocol](https://www.ultramotion.com/news-feed/new-can-protocol-for-servo-cylinder/).

## Install the crate

``` sh
cargo add umcan
```

## Examples

`socketcan_recrev_cmd.rs` will send and receive CAN frames via the linux
socketcan interface using
[`socketcan-rs`](https://github.com/socketcan-rs/socketcan-rs)

To run the example first bring up a `vcan0` interface:

``` sh
sudo modprobe vcan
sudo ip link add vcan0 type vcan
sudo ip link set vcan0 up
```

Then run `socketcan_recrev_cmd.rs`:

``` sh
cargo run --example socketcan_recrev_cmd
```