increase temperature threshold

This commit is contained in:
Wolfgang Hottgenroth 2019-02-16 22:38:03 +01:00
parent 558b69109b
commit 06ca1f40e6
Signed by: wn
GPG Key ID: B586EAFCDF2F65F4
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
CC=msp430-gcc CC=msp430-gcc
# regular # regular
CFLAGS=-Wall -mmcu=msp430g2553 -std=gnu99 -I hottislib -O3 -g0 # CFLAGS=-Wall -mmcu=msp430g2553 -std=gnu99 -I hottislib -O3 -g0
# for debugging # for debugging
# CFLAGS=-Wall -mmcu=msp430g2553 -std=gnu99 -I hottislib -g3 -ggdb -gdwarf-2 CFLAGS=-Wall -mmcu=msp430g2553 -std=gnu99 -I hottislib -g3 -ggdb -gdwarf-2
LDFLAGS=-mmcu=msp430g2553 LDFLAGS=-mmcu=msp430g2553

View File

@ -7,7 +7,7 @@
uint8_t temperature = 21; uint8_t temperature = 21;
const uint8_t TEMPERATURE_THRESHOLD = 21; const uint8_t TEMPERATURE_THRESHOLD = 25;