Test bigfont
This commit is contained in:
parent
a41987c29c
commit
01ec34d719
|
@ -6,6 +6,8 @@
|
||||||
#include "lcd/allfonts.h"
|
#include "lcd/allfonts.h"
|
||||||
|
|
||||||
void ReinvokeISP(void);
|
void ReinvokeISP(void);
|
||||||
|
void EnableWatchdog(uint32_t ms);
|
||||||
|
void delayms(uint32_t ms);
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
||||||
|
@ -34,8 +36,6 @@ void module_sec(void) {
|
||||||
int fontctr=0;
|
int fontctr=0;
|
||||||
yctr=18;
|
yctr=18;
|
||||||
|
|
||||||
uint8_t written = 0;
|
|
||||||
uint8_t eeprom_val = 0;
|
|
||||||
uint8_t trigger;
|
uint8_t trigger;
|
||||||
|
|
||||||
#define SEND
|
#define SEND
|
||||||
|
@ -75,20 +75,21 @@ void module_sec(void) {
|
||||||
while(gpioGetValue(RB_BTN0)==0);
|
while(gpioGetValue(RB_BTN0)==0);
|
||||||
DoString(0,8,"Enter ISP!");
|
DoString(0,8,"Enter ISP!");
|
||||||
lcdDisplay(0);
|
lcdDisplay(0);
|
||||||
|
EnableWatchdog(1000*5);
|
||||||
ReinvokeISP();
|
ReinvokeISP();
|
||||||
};
|
};
|
||||||
|
|
||||||
font = &Font_Ubuntu18pt;
|
font = &Font_Ubuntu36pt;
|
||||||
dx=DoString(0,14,"LED:");
|
dx=DoString(0,0,"Sec");
|
||||||
#ifdef SEND
|
#ifdef SEND
|
||||||
if(ctr++>trigger/10){
|
if(ctr++>trigger/10){
|
||||||
ctr=0;
|
ctr=0;
|
||||||
if (gpioGetValue(RB_LED0) == CFG_LED_OFF){
|
if (gpioGetValue(RB_LED0) == CFG_LED_OFF){
|
||||||
gpioSetValue (RB_LED0, CFG_LED_ON);
|
gpioSetValue (RB_LED0, CFG_LED_ON);
|
||||||
DoString(dx,14,"ON!");
|
// DoString(dx,14,"ON!");
|
||||||
} else {
|
} else {
|
||||||
gpioSetValue (RB_LED0, CFG_LED_OFF);
|
gpioSetValue (RB_LED0, CFG_LED_OFF);
|
||||||
DoString(dx,14,"off");
|
// DoString(dx,14,"off");
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
#else
|
#else
|
||||||
|
@ -105,10 +106,10 @@ void module_sec(void) {
|
||||||
font = &Font_7x8;
|
font = &Font_7x8;
|
||||||
|
|
||||||
results = adcRead(1);
|
results = adcRead(1);
|
||||||
dx=DoString(0,yctr+20,"Voltage:");
|
dx=DoString(0,yctr+28,"Voltage:");
|
||||||
results *= 10560;
|
results *= 10560;
|
||||||
results /= 1024;
|
results /= 1024;
|
||||||
DoInt(dx,yctr+20,results);
|
DoInt(dx,yctr+28,results);
|
||||||
|
|
||||||
if( results < 3500 ){
|
if( results < 3500 ){
|
||||||
DoString(0,yctr+30,"Shutdown");
|
DoString(0,yctr+30,"Shutdown");
|
||||||
|
@ -118,7 +119,8 @@ void module_sec(void) {
|
||||||
PMU_PMUCTRL = PMU_PMUCTRL_DPDEN_DEEPPOWERDOWN;
|
PMU_PMUCTRL = PMU_PMUCTRL_DPDEN_DEEPPOWERDOWN;
|
||||||
__asm volatile ("WFI");
|
__asm volatile ("WFI");
|
||||||
}else{
|
}else{
|
||||||
DoString(0,yctr+30,"OK ");
|
//DoString(0,yctr+30,"OK ");
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue