Former-commit-id:9f19e3f712
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
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;
|
|
}
|