mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 17:47:10 -06:00
For all FPP enums in the framework, set the representing type to the minimum width that can represent the enum's member constants.
14 lines
387 B
Fortran
14 lines
387 B
Fortran
# ======================================================================
|
|
# \title Os/Models/Generic.fpp
|
|
# \brief FPP type definitions for Os/Os.hpp concepts
|
|
# ======================================================================
|
|
|
|
module Os {
|
|
@ FPP shadow-enum representing Os::Generic::Status
|
|
enum GenericStatus : U8 {
|
|
OP_OK, @< operation okay
|
|
ERROR, @< error return value
|
|
}
|
|
}
|
|
|