Posted by Anonymous on Mon 8th Feb 01:49
Modification of post by Anonymous | view diff | download
- #include <avr/io.h>
- #include <avr/interrupt.h> // Interrupts einbinden
- //Interupts aktivieren
- sei();
- // ISR - Interrupt Service Routine Beispiel
- SIGNAL (SIG_OUTPUT_COMPARE1A)
- {
- // ISR-Code
- // Möglichst kurz halten!
- }
- while(1){ }; // Main Loop
Submit a correction or amendment below. (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.