F´ Flight Software - C/C++ Documentation
NASA-v1.5.0
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
c
f
h
i
l
m
n
o
p
s
t
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
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
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
c
t
u
w
Enumerations
b
c
d
e
f
g
h
i
m
o
p
q
s
t
w
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
w
Related Functions
a
b
c
f
g
h
l
p
r
s
t
Files
File List
File Members
All
_
a
b
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
w
Functions
f
i
m
s
u
Variables
_
c
f
i
l
p
t
Typedefs
Enumerations
Enumerator
a
c
d
f
i
m
p
r
s
t
w
Macros
a
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
WatchdogTimer.cpp
Go to the documentation of this file.
1
#include <
Os/WatchdogTimer.hpp
>
2
3
namespace
Os
{
4
5
WatchdogTimer::WatchdogTimer
()
6
: m_handle(0),m_cb(0),m_parameter(0),m_timerTicks(0),m_timerMs(0)
7
{
8
}
9
10
WatchdogTimer::~WatchdogTimer
() {
11
}
12
13
WatchdogTimer::WatchdogStatus
WatchdogTimer::startTicks
( I32 delayInTicks, WatchdogCb p_callback,
void
* parameter) {
14
return
WATCHDOG_START_ERROR
;
15
}
16
17
WatchdogTimer::WatchdogStatus
WatchdogTimer::startMs
( I32 delayInMs, WatchdogCb p_callback,
void
* parameter) {
18
return
WATCHDOG_START_ERROR
;
19
}
20
21
WatchdogTimer::WatchdogStatus
WatchdogTimer::restart
(
void
) {
22
return
WATCHDOG_START_ERROR
;
23
}
24
25
WatchdogTimer::WatchdogStatus
WatchdogTimer::cancel
(
void
) {
26
return
WATCHDOG_CANCEL_ERROR
;
27
}
28
29
}
30
31
Os
Definition:
File.cpp:7
Os::WatchdogTimer::WatchdogStatus
WatchdogStatus
Definition:
WatchdogTimer.hpp:10
Os::WatchdogTimer::~WatchdogTimer
virtual ~WatchdogTimer()
Definition:
WatchdogTimer.cpp:10
Os::WatchdogTimer::restart
WatchdogStatus restart(void)
restart timer with previous value
Definition:
WatchdogTimer.cpp:21
WatchdogTimer.hpp
Os::WatchdogTimer::WATCHDOG_START_ERROR
@ WATCHDOG_START_ERROR
Timer startup failed.
Definition:
WatchdogTimer.hpp:13
Os::WatchdogTimer::WatchdogTimer
WatchdogTimer()
Definition:
WatchdogTimer.cpp:5
Os::WatchdogTimer::WATCHDOG_CANCEL_ERROR
@ WATCHDOG_CANCEL_ERROR
Timer cancellation failed.
Definition:
WatchdogTimer.hpp:14
Os::WatchdogTimer::startMs
WatchdogStatus startMs(I32 delayInMs, WatchdogCb p_callback, void *parameter)
parameter with which to call routine);
Definition:
WatchdogTimer.cpp:17
Os::WatchdogTimer::startTicks
WatchdogStatus startTicks(I32 delayInTicks, WatchdogCb p_callback, void *parameter)
parameter with which to call routine);
Definition:
WatchdogTimer.cpp:13
Os::WatchdogTimer::cancel
WatchdogStatus cancel(void)
cancel timer
Definition:
WatchdogTimer.cpp:25
Os
Linux
WatchdogTimer.cpp
Generated by
1.8.19