Skip to content

Commit

Permalink
[Docs] Correct small typos (#3165)
Browse files Browse the repository at this point in the history
  • Loading branch information
SiboVG authored Jan 28, 2025
1 parent e9ea56d commit 82b6549
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/user-manual/framework/ground-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ constructs (e.g. radios, spacecraft buses). From the perspective of F´, the dri
data and handle outgoing data.

> [!NOTE]
> typically projects use a single driver to handle both input and output, however; two drivers may be used to if differing behavior is needed for uplink and downlink.(e.g. UDP downlink for speed and Tcp uplink reliability).
> typically projects use a single driver to handle both input and output, however; two drivers may be used too if differing behavior is needed for uplink and downlink.(e.g. UDP downlink for speed and Tcp uplink reliability).
All drivers implement an input port receiving data from the framer. The driver should write input data to the hardware
the driver manages. Drivers implement at least one of two methods to retrieve data from hardware: an input port
Expand Down
14 changes: 9 additions & 5 deletions docs/user-manual/overview/enum-arr-ser.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# Data Types and Data Structures: Primitive Types, Enums, Arrays, and Serializables

This guide will describe the types available in F´. F´ defines both useful short names for primitive types as well as
a set of autocoded complex types. The types describe here are available to both the flight software and the ground
a set of autocoded complex types. The types described here are available to both the flight software and the ground
system unless otherwise noted. Included in this document:

- [Primitive Types](#primitive-types)
- [Polymorphic Type](#polymorphic-type)
- [Complex Types](#complex-types)
- [Data Types and Data Structures: Primitive Types, Enums, Arrays, and Serializables](#data-types-and-data-structures-primitive-types-enums-arrays-and-serializables)
- [Primitive Types](#primitive-types)
- [Polymorphic Type](#polymorphic-type)
- [Setting Polymorphic Values](#setting-polymorphic-values)
- [Getting Polymorphic Values](#getting-polymorphic-values)
- [Checking Polymorphic Values](#checking-polymorphic-values)
- [Complex Types](#complex-types)
- [Enums](#enums)
- [Arrays](#arrays)
- [Serializables](#serializables)
- [C++ Classes](#c-classes)
- [Conclusion](#conclusion)
- [Conclusion](#conclusion)

## Primitive Types

Expand Down

0 comments on commit 82b6549

Please sign in to comment.