This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<avr/io.h> | |
| #include<avr/interrupt.h> | |
| #include<util/delay.h> | |
| #include "lcd.h" | |
| volatile int cnt_zero,cnt_one; | |
| ISR (INT0_vect) //External interrupt_zero ISR | |
| { | |
| cnt_zero++; | |
| } | |
| ISR (INT1_vect) //External interrupt_one ISR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git rm -r --cached . | |
| git add . | |
| git commit -m "fixing .gitignore" |
NewerOlder