目录

_SFR_ADDR()

Abstract

The _SFR_ADDR() is a macro that returns the address of the argument.

Source Code

The _SFR_ADDR() is defined in hardware/tools/avr/avr/include/avr/sfr_defs.h as below.

#define _SFR_ADDR(sfr) _SFR_MEM_ADDR(sfr)

It calls _SFR_MEM_ADDR().