F´ Flight Software - C/C++ Documentation
NASA-v2.0.1
A framework for building embedded system applications to NASA flight quality standards.
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
g
h
i
m
r
s
t
v
w
Variables
Typedefs
Enumerations
Enumerator
a
b
f
h
i
n
o
p
s
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
b
d
e
f
g
h
i
l
m
n
p
q
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
f
g
h
l
m
n
o
p
q
r
s
t
w
Related Functions
Files
File List
File Members
All
_
a
b
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
Functions
f
i
m
s
u
Variables
Typedefs
Enumerations
Enumerator
c
d
f
m
p
r
s
t
Macros
a
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
►
F´ Flight Software - C/C++ Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
FileDownlinkCfg.hpp
Go to the documentation of this file.
1
/*
2
* FileDownlinkCfg.hpp:
3
*
4
* Configuration settings for file downlink component.
5
*/
6
7
#ifndef SVC_FILEDOWNLINK_FILEDOWNLINKCFG_HPP_
8
#define SVC_FILEDOWNLINK_FILEDOWNLINKCFG_HPP_
9
#include <
Fw/Types/BasicTypes.hpp
>
10
11
namespace
Svc
{
12
// If this is set to true, the run handler will look to
13
// see if a packet is ready. If it is false, the next packet
14
// will be sent as soon as the previous is complete.
15
static
const
bool
FILEDOWNLINK_PACKETS_BY_RUN
=
false
;
16
// If this is set, errors that would cause FileDownlink to return an error response, such as a
17
// missing file or attempting to send a partial chunk past the end of the file will instead
18
// return success. This is recommended to avoid a non-serious FileDownlink error aborting a
19
// sequence early. These errors will still be logged as events.
20
static
const
bool
FILEDOWNLINK_COMMAND_FAILURES_DISABLED
=
true
;
21
// Size of the internal file downlink buffer. This must now be static as
22
// file down maintains its own internal buffer.
23
static
const
U32
FILEDOWNLINK_INTERNAL_BUFFER_SIZE
=
FW_COM_BUFFER_MAX_SIZE
-
sizeof
(
FwPacketDescriptorType
);
24
}
25
26
#endif
/* SVC_FILEDOWNLINK_FILEDOWNLINKCFG_HPP_ */
Svc::FILEDOWNLINK_PACKETS_BY_RUN
static const bool FILEDOWNLINK_PACKETS_BY_RUN
Definition:
FileDownlinkCfg.hpp:15
FwPacketDescriptorType
#define FwPacketDescriptorType
Type representation for a packet descriptor.
Definition:
FpConfig.hpp:58
Svc::FILEDOWNLINK_INTERNAL_BUFFER_SIZE
static const U32 FILEDOWNLINK_INTERNAL_BUFFER_SIZE
Definition:
FileDownlinkCfg.hpp:23
Svc::FILEDOWNLINK_COMMAND_FAILURES_DISABLED
static const bool FILEDOWNLINK_COMMAND_FAILURES_DISABLED
Definition:
FileDownlinkCfg.hpp:20
Svc
Definition:
ActiveRateGroupImplCfg.hpp:18
FW_COM_BUFFER_MAX_SIZE
#define FW_COM_BUFFER_MAX_SIZE
Max size of Fw::Com buffer.
Definition:
FpConfig.hpp:220
BasicTypes.hpp
Declares ISF basic types.
config
FileDownlinkCfg.hpp
Generated by
1.8.17