mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* Interfaces * Point to new fpp alpha release * Fix the fprime-gds version * Update for framer/deframer work * Fix cmake tests * Clean up annotations * Clean up final fpp
38 lines
923 B
Fortran
38 lines
923 B
Fortran
module Drv {
|
|
|
|
passive component LinuxSpiDriver {
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Interfaces
|
|
# ----------------------------------------------------------------------
|
|
|
|
import Drv.Spi
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Special ports
|
|
# ----------------------------------------------------------------------
|
|
|
|
event port Log
|
|
|
|
telemetry port Tlm
|
|
|
|
text event port LogText
|
|
|
|
time get port Time
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Events
|
|
# ----------------------------------------------------------------------
|
|
|
|
include "Events.fppi"
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Telemetry
|
|
# ----------------------------------------------------------------------
|
|
|
|
include "Telemetry.fppi"
|
|
|
|
}
|
|
|
|
}
|