Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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 |
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