Difference between revisions of "AVR Embedded Tutorial - Library"

From Free Pascal wiki
Jump to navigationJump to search
(English translation of German page)
 
m (→‎See also: Updated page title)
 
Line 38: Line 38:
 
= See also =
 
= See also =
  
* [[AVR Embedded Tutorial ]] - Overview
+
* [[AVR Embedded Tutorial|AVR Embedded Tutorials]] - Overview
  
  

Latest revision as of 06:57, 24 January 2020

Deutsch (de) English (en)

AVR Libraries

Intrinsics unit

The intrinsics unit contains the following procedures, which you can also do with:

  asm 
    ... 
  end;

You can use:

avr_cli; Block interrupts
avr_sei; Unlock interrupts
avr_wdr; Watchdog reset
avr_sleep; Pause until a predetermined event
avr_nop; An empty command

Note: an avr_cli; is the same as:

  asm 
    cli 
  end;

See also