pic_therm

PIC16F877A and BME280 thermometer
git clone git://git.margiolis.net/pic_therm.git
Log | Files | Refs | README | LICENSE

commit dd64ce930414b7eced588c921ae4e2c1edebf35e
parent 060bdbf78c45d4fa5d8eccad57273633f95465b6
Author: Christos Margiolis <christos@FreeBSD.org>
Date:   Thu, 27 Jul 2023 00:29:58 +0300

foo

Diffstat:
MREADME | 2+-
Msrc/tmr0.c | 3++-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/README b/README @@ -1,2 +1,2 @@ Temperature and humidity measurement using PIC16F877A and BME280. -https://margiolis.net/w/pic_therm.html +https://margiolis.net/w/pic_therm/ diff --git a/src/tmr0.c b/src/tmr0.c @@ -31,7 +31,8 @@ tmr0_isr(void) __interrupt } } TMR0 = TMR0_DELAY; - INTCONbits.TMR0IF = 0; /* Clear interrupt flags */ + /* Clear interrupt flags */ + INTCONbits.TMR0IF = 0; } void