Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
23 lines
637 B
C
23 lines
637 B
C
/* include file containing all AODT library global variables */
|
|
#include "../inc/odtlib.h"
|
|
/* include file containing all AODT library variable definitions */
|
|
#include "../inc/odtlibdefs-x.h"
|
|
|
|
/* AODT library function */
|
|
extern int aodtv64_gettemps(int);
|
|
|
|
int aodtv64_seteyecloudtemp(void)
|
|
/* Routine to search for, idenfify, and set the eye and cloud temperature values
|
|
for the AODT library. Temperatuers are set within AODT library.
|
|
Inputs : none
|
|
Outputs: none
|
|
Return : -51 : eye, CWcloud, or warmest temperature <-100C or >+40C
|
|
0 : o.k.
|
|
*/
|
|
{
|
|
int iok;
|
|
|
|
iok=aodtv64_gettemps(keyerM_v64);
|
|
|
|
return iok;
|
|
}
|