目录

cli()

Abstract

The cli() is a macro that executes an assembler instruction to disable interrupts.

Source Code

The cli() is defined in hardware/tools/avr/avr/include/avr/interrupt.h as below.

# define cli()  __asm__ __volatile__ ("cli" ::)

The cli is an assembler instruction to disable interrputs.