fprime/Svc/ActiveTextLogger/ActiveTextLogger.fpp
bocchino 380f341b29 Revise uses of internal_interface
Remove pass_by="reference" from port args. It does nothing
in this context.
2021-10-01 08:06:12 -07:00

19 lines
432 B
Fortran

module Svc {
@ A component for printing text logs to the console and optionally a file
active component ActiveTextLogger {
@ Logging port
sync input port TextLogger: Fw.LogText
@ Internal interface to send log text messages to component thread
internal port TextQueue(
$text: string size 256 @< The text string
) \
priority 1 \
drop
}
}