Charles Young's development fork. Going forward I only want to push mature code to main repository.
Fork of GEO_COUNTER_L432KC by
Revision 80:5770804da1b0, committed 2018-10-07
- Comitter:
- charlesdavidyoung
- Date:
- Sun Oct 07 13:13:53 2018 +0000
- Parent:
- 79:5cdbe0d2adbb
- Commit message:
- get rid of pulldown
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- 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