Skip to content

3.2.0

Compare
Choose a tag to compare
@JPHutchins JPHutchins released this 27 May 21:33
· 67 commits to main since this release
26a3a2d

Features

  • Serial (USB) transport can specify line_length, line_buffers, and size (e.g. line_length * buffers). These correspond to SMP Server UART buffer settings:
    Zephyr (application)
    CONFIG_UART_MCUMGR_RX_BUF_SIZE=512  # line length
    CONFIG_UART_MCUMGR_RX_BUF_COUNT=8  # buffers
    CONFIG_MCUMGR_TRANSPORT_NETBUF_SIZE=4096  # total
    
    Zephyr (mcuboot)
    CONFIG_BOOT_MAX_LINE_INPUT_LEN=4096  # line length
    CONFIG_BOOT_LINE_BUFS=2  # buffers
    CONFIG_BOOT_SERIAL_MAX_RECEIVE_SIZE=8192  # total
    

What's Changed

  • feat: add serial transport line_length (default 128) and line_bufs (d… by @JPHutchins in #25

Full Changelog: 3.1.0...3.2.0