septentrio_gnss::Reply currently caps its body at 512 B
(MAX_REPLY_BODY in lib/septentrio_gnss/command.h). That fits
normal setX command acks but is too small for replies that dump
the receiver state, e.g. lstConfigFile, Current or
getReceiverCapabilities, which can run into many KB.
The wire parser will drop such replies as if malformed.
Options when this becomes a problem:
- Raise the cap (more static memory per parser).
- Switch to a streaming/chunked reply callback.
septentrio_gnss::Replycurrently caps its body at 512 B(
MAX_REPLY_BODYinlib/septentrio_gnss/command.h). That fitsnormal
setXcommand acks but is too small for replies that dumpthe receiver state, e.g.
lstConfigFile, CurrentorgetReceiverCapabilities, which can run into many KB.The wire parser will drop such replies as if malformed.
Options when this becomes a problem: