[Frubar Paste] Hosted by SkyLime - Chat with us at XChannel IRC

Posted by Anonymous on Mon 8th Feb 01:49
Modification of post by Anonymous | view diff | download

  1. #include <avr/io.h>
  2. #include <avr/interrupt.h> // Interrupts einbinden
  3.  
  4. //Interupts aktivieren
  5. sei();
  6.  
  7. // ISR - Interrupt Service Routine Beispiel
  8. SIGNAL (SIG_OUTPUT_COMPARE1A)
  9. {
  10.    // ISR-Code
  11.    // Möglichst kurz halten!
  12. }
  13. 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.



Remember my name in a cookie


Code: To highlight particular lines, prefix each line with @@.
Include comments to indicate what you need feedback on.