This is an automated email from the ASF dual-hosted git repository.
sruehl pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git
from 9abacd0432 build(deps): bump org.apache.maven:maven-artifact from
3.9.15 to 3.9.16 (#2557)
new 7e07c8b94f feat(plc4go): provide builtin bitreader
new dbd320ac92 fix(plc4go): reader writer todos
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
plc4go/go.mod | 11 +-
plc4go/go.sum | 24 +-
.../bacgopes/tests/test_network/test_net_2_test.go | 4 +-
plc4go/internal/cbus/Reader_test.go | 4 +-
plc4go/spi/utils/BitBuffer.go | 223 +++++++++++++++
plc4go/spi/utils/BitBuffer_test.go | 309 +++++++++++++++++++++
plc4go/spi/utils/ReadBufferByteBased.go | 186 +++++--------
plc4go/spi/utils/ReadBufferByteBased_test.go | 274 +++++++++---------
plc4go/spi/utils/WriteBufferByteBased.go | 115 ++++----
plc4go/spi/utils/WriteBufferByteBased_test.go | 254 ++++++-----------
10 files changed, 886 insertions(+), 518 deletions(-)
create mode 100644 plc4go/spi/utils/BitBuffer.go
create mode 100644 plc4go/spi/utils/BitBuffer_test.go