mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 23:38:06 -06:00
19 lines
432 B
Fortran
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
|
|
|
|
}
|
|
|
|
}
|