renable display at hour mark
break out of cal loop
This commit is contained in:
6
CL56.cpp
6
CL56.cpp
@ -1,4 +1,5 @@
|
||||
#include "CL56.h"
|
||||
#include <avr/interrupt.h>
|
||||
|
||||
DualCl56::DualCl56(ShiftReg<16>* shiftReg):
|
||||
_shiftReg(shiftReg)
|
||||
@ -179,7 +180,12 @@ void DualCl56::setBlank(bool blankIn)
|
||||
{
|
||||
_blank = blankIn;
|
||||
if(_blank)
|
||||
{
|
||||
cli();
|
||||
_shiftReg->clear();
|
||||
_shiftReg->clear();
|
||||
sei();
|
||||
}
|
||||
}
|
||||
|
||||
bool DualCl56::getBlank()
|
||||
|
Reference in New Issue
Block a user