F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
Warnings.cpp
Go to the documentation of this file.
1// ======================================================================
2// \title Warnings.cpp
3// \author bocchino
4// \brief cpp file for FileDownlink::Warnings
5//
6// \copyright
7// Copyright 2009-2015, by the California Institute of Technology.
8// ALL RIGHTS RESERVED. United States Government Sponsorship
9// acknowledged.
10// ======================================================================
12
13namespace Svc {
14
15 void FileDownlink::Warnings ::
16 fileOpenError()
17 {
18 this->fileDownlink->log_WARNING_HI_FileOpenError(
19 this->fileDownlink->file.sourceName
20 );
21 this->warning();
22 }
23
24 void FileDownlink::Warnings ::
25 fileRead(const Os::File::Status status)
26 {
27 this->fileDownlink->log_WARNING_HI_FileReadError(
28 this->fileDownlink->file.sourceName,
29 status
30 );
31 this->warning();
32 }
33
34}