mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 03:38:57 -06:00
* Add sequence dispatcher component * Add seq start port to cmd sequencer * Update author names and some include paths * Get fully compiling, move consts/enums to correct places, check for connections on init * Add spelling exceptions * Get unit tests almost compiling... * Fix string type in port, call component init in test * Fix unit test compilation errors and assertions * Switch back to using StringBase * Switch to FwIndexType, remove textLogIn * UpperCamel events, add warning for unexpected seq start * remove init method, add check for connected to getNextAvailableIdx * Update sdd, change event from low to high, static cast a portnum * Add state diagram, add more warnings, fix wrong header types, use assert instead of warning for runSeq --------- Co-authored-by: Zimri Leisher <zimri.leisher@fireflyspace.com>
13 lines
205 B
Fortran
13 lines
205 B
Fortran
module Svc {
|
|
|
|
@ Port to request a sequence be run
|
|
port CmdSeqIn(
|
|
filename: string size 240 @< The sequence file
|
|
)
|
|
|
|
@ Port to cancel a sequence
|
|
port CmdSeqCancel
|
|
|
|
}
|
|
|