Electronic Load  1.0
Programmable Constant Current Sink
Variables
Timer Flags

Variables

static const uint8_t TFLAG_DAY =8
 Is set every Day at Midnight. More...
 
static const uint8_t TFLAG_HOUR =4
 Is set once per Hour at Minute 0. More...
 
static const uint8_t TFLAG_MIN =2
 Is set once per Minute at Second 0. More...
 
static const uint8_t TFLAG_SEC =1
 Is set once per Second. More...
 
volatile uint8_t tFlags
 Flags set by Timer Interrupt to signal Main Loop. More...
 

Detailed Description

Flags indicating an error. They are set when the error condition appears. The Status command displays and clears them.

Variable Documentation

◆ tFlags

volatile uint8_t tFlags

Flags set by Timer Interrupt to signal Main Loop.

The flags are set each second, minute, hour or day respectively by timer interrupt. The flags must be cleared by the main loop.Flags set by Time

◆ TFLAG_SEC

const uint8_t TFLAG_SEC =1
static

Is set once per Second.

◆ TFLAG_MIN

const uint8_t TFLAG_MIN =2
static

Is set once per Minute at Second 0.

◆ TFLAG_HOUR

const uint8_t TFLAG_HOUR =4
static

Is set once per Hour at Minute 0.

◆ TFLAG_DAY

const uint8_t TFLAG_DAY =8
static

Is set every Day at Midnight.