Skip to content

Commit

Permalink
decrease the buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Mar 15, 2024
1 parent 1740ada commit 0e3d175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipettes/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function(target_pipettes_core_single TARGET REVISION)
target_pipettes_core_common(${TARGET} ${REVISION})
target_compile_definitions(${TARGET} PUBLIC PIPETTE_TYPE_DEFINE=SINGLE_CHANNEL)
if(${USE_PRESSURE_MOVE})
target_compile_definitions(${TARGET} PUBLIC P_BUFF_SIZE=3000)
target_compile_definitions(${TARGET} PUBLIC P_BUFF_SIZE=2800)
endif()
target_sources(${TARGET} PUBLIC
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/can_task_low_throughput.cpp)
Expand All @@ -28,7 +28,7 @@ function(target_pipettes_core_multi TARGET REVISION)
target_pipettes_core_common(${TARGET} ${REVISION})
target_compile_definitions(${TARGET} PUBLIC PIPETTE_TYPE_DEFINE=EIGHT_CHANNEL)
if(${USE_PRESSURE_MOVE})
target_compile_definitions(${TARGET} PUBLIC P_BUFF_SIZE=3000)
target_compile_definitions(${TARGET} PUBLIC P_BUFF_SIZE=2800)
endif()
target_sources(${TARGET} PUBLIC
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/can_task_low_throughput.cpp)
Expand Down

0 comments on commit 0e3d175

Please sign in to comment.