F´ Flight Software - C/C++ Documentation
NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
StandardTypes.hpp
Go to the documentation of this file.
1
#ifndef VXWORKS_STD_TYPES_H
2
#define VXWORKS_STD_TYPES_H
3
4
#include <vxWorks.h>
5
#include <inttypes.h>
6
7
// Covert VxWorks OK and ERROR macros to enums
8
enum
{
9
VXWORKS_OK
=
OK
,
10
VXWORKS_ERROR
=
ERROR
11
};
12
#undef OK
13
#undef ERROR
14
enum
{
15
OK
=
VXWORKS_OK
,
16
ERROR
=
VXWORKS_ERROR
17
};
18
19
#endif
VXWORKS_OK
@ VXWORKS_OK
Definition:
StandardTypes.hpp:9
OK
@ OK
Definition:
StandardTypes.hpp:15
VXWORKS_ERROR
@ VXWORKS_ERROR
Definition:
StandardTypes.hpp:10
ERROR
@ ERROR
Definition:
StandardTypes.hpp:16
Fw
Types
VxWorks
StandardTypes.hpp
Generated by
1.8.17