Skip to content
Merged
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,17 @@ but works on all platforms that Python itself supports.

## Building / installing

Before you start, run
```
git pull --tags
```
in you local libsbp repository to pull the tags. This will ensure the correct
version number is generated.

### Using Docker

Before you begin, make sure you have [Docker](https://docs.docker.com/docker-for-mac/install/) installed.
Start [Docker desktop](https://docs.docker.com/docker-for-mac/).
Start [Docker desktop](https://docs.docker.com/docker-for-mac/).

#### Fetching the prebuilt image from DockerHub

Expand Down
1 change: 1 addition & 0 deletions c/include/libsbp/sbp_msg_type.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ typedef enum {
SbpMsgVelNed = SBP_MSG_VEL_NED,
SbpMsgWheeltick = SBP_MSG_WHEELTICK,
SbpMsgAll = SBP_MSG_ALL,
SbpMsgUnknown = SBP_MSG_ALL,
} sbp_msg_type_t;

#ifdef __cplusplus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ typedef enum {
(((m.v4_msg_type))) = (((m.legacy_msg_type))),
((*- endfor *))
SbpMsgAll = SBP_MSG_ALL,
SbpMsgUnknown = SBP_MSG_ALL,
} sbp_msg_type_t;

#ifdef __cplusplus
Expand Down