30 lines
609 B
C
30 lines
609 B
C
#include "tl_base_types.h"
|
|
#define CVC_DISP
|
|
#include "CVC_DISP_START.h"
|
|
extern CVC_DISP UInt8 sVcAc_D_AirCondCmpsrStats;
|
|
#include "CVC_DISP_END.h"
|
|
|
|
#include "CVC_CAL_START.h"
|
|
|
|
/* Debug values */
|
|
|
|
volatile UInt8 cVcAc_D_AirCondCmpsrStats_db = 0;
|
|
|
|
/* Debug switches */
|
|
|
|
volatile Bool cVcAc_D_AirCondCmpsrStats_sw = 0;
|
|
#include "CVC_CAL_END.h"
|
|
|
|
/***********************/
|
|
/* debug functionality */
|
|
/***********************/
|
|
|
|
#include "CVC_CODE_START.h"
|
|
void VcDebugOutput(void) {
|
|
if (cVcAc_D_AirCondCmpsrStats_sw) {
|
|
sVcAc_D_AirCondCmpsrStats = cVcAc_D_AirCondCmpsrStats_db;
|
|
}
|
|
}
|
|
#include "CVC_CODE_END.h"
|
|
|