Charles Young's development fork. Going forward I only want to push mature code to main repository.
Fork of GEO_COUNTER_L432KC by
Diff: main.cpp
- Revision:
- 80:5770804da1b0
- Parent:
- 79:5cdbe0d2adbb
diff -r 5cdbe0d2adbb -r 5770804da1b0 main.cpp --- a/main.cpp Fri Sep 14 19:29:29 2018 -0700 +++ b/main.cpp Sun Oct 07 13:13:53 2018 +0000 @@ -125,10 +125,8 @@ //RTC::attach(&Update, RTC::Second); //RTC::detach(RTC::Second); - TRIG1.rise(&Count1_up); - TRIG1.mode(PullDown); - TRIG2.rise(&Count2_up); - TRIG2.mode(PullDown); + TRIG1.fall(&Count1_up); + TRIG2.fall(&Count2_up); for (uint8_t i=0;i<CountAvg;i++) { @@ -200,8 +198,8 @@ if(Stopped) { // disable interrupts on TRIG1 and TRIG2 - TRIG1.rise(NULL); - TRIG2.rise(NULL); + TRIG1.fall(NULL); + TRIG2.fall(NULL); } // This must be called periodically to update the LEDs