We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf37a1 commit 750cff7Copy full SHA for 750cff7
1 file changed
default/config/AcConstants.fpp
@@ -62,5 +62,5 @@ constant AssertFatalAdapterEventFileSize = FileNameStringSize
62
63
@ The maximum size in bytes for passing sequence arguments through CmdSeqIn ports
64
@ Note: This must fit within FW_CMD_ARG_BUFFER_MAX_SIZE along with cmd arguments using Svc::SeqArgs
65
-@ Total serialized size: fileName (~200 bytes) + Fw::Wait (4 bytes) + SeqArgs (8 + buffer_size)
66
-constant SequenceArgumentsMaxSize = FW_CMD_ARG_BUFFER_MAX_SIZE - FileNameStringSize - 8 - 8
+@ Total serialized size: string length prefix + fileName + BlockState + SeqArgs.size field + buffer
+constant SequenceArgumentsMaxSize = FW_CMD_ARG_BUFFER_MAX_SIZE - sizeof(FwSizeStoreType) - FileNameStringSize - sizeof(U8) - sizeof(FwSizeType)
0 commit comments