Skip to content

Commit

Permalink
fix linux compil
Browse files Browse the repository at this point in the history
  • Loading branch information
bha-evs committed Nov 23, 2023
1 parent e1b2377 commit 62c652a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/src/bofuart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ BofUart::BofUart(const BOF_UART_PARAM &_rUartParam_X)
BofRawCircularBufferParam_X.Reset();
BofRawCircularBufferParam_X.MultiThreadAware_B = true;
BofRawCircularBufferParam_X.BufferSizeInByte_U32 = mUartParam_X.BaseChannelParam_X.SndBufferSize_U32;
BofRawCircularBufferParam_X.NbMaxSlot_U32 = 0;
BofRawCircularBufferParam_X.SlotMode_B = false;
BofRawCircularBufferParam_X.NbMaxBufferEntry_U32 = 128;
BofRawCircularBufferParam_X.pData_U8 = nullptr;
mpTxData_O = new BofRawCircularBuffer(BofRawCircularBufferParam_X);

Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ configure_file(
@ONLY
)
include(${CMAKE_CURRENT_BINARY_DIR}/vld.cmake)
### VLD ###########################################
### VLD ########################################

target_link_libraries(ut_bofstd
PRIVATE
Expand Down

0 comments on commit 62c652a

Please sign in to comment.