diff --git a/boards/common/atmega/doc.txt b/boards/common/atmega/doc.txt index 516698ecbb..1b6cda3c61 100644 --- a/boards/common/atmega/doc.txt +++ b/boards/common/atmega/doc.txt @@ -1,17 +1,5 @@ /** -@defgroup boards_common_atmega ATmega common -@ingroup boards -@brief Shared files and configuration for ATmega-based boards - -### Pin Change Interrupts - -Pin Change Interrupts (PCINTs) can be enabled using pseudo modules. To provide -a low-memory overhead implementation, the PCINTs are grouped into **banks**. -Each banks corresponds to one PCINT on the ATmega (PCINT0, ..., PCINT3). - -To enable only a specific bank, simply add `USEMODULE += atmega_pcintN` to your -Makefile. To enable all interrupts you can use `USEMODULE += atmega_pcint`. - -In case you want to add a new CPU, simply provide an `atmega_pcint.h` with your -CPU and adapt your Makefile.dep and Makefile.features files. - */ \ No newline at end of file + * @defgroup boards_common_atmega ATmega common + * @ingroup boards + * @brief Shared files and configuration for ATmega-based boards + */ diff --git a/cpu/atmega_common/doc.txt b/cpu/atmega_common/doc.txt index 09d8fb9613..f2ad0d90b9 100644 --- a/cpu/atmega_common/doc.txt +++ b/cpu/atmega_common/doc.txt @@ -2,4 +2,16 @@ * @defgroup cpu_atmega_common Atmel ATmega CPU: common files * @brief AVR Atmega specific code * @ingroup cpu + * + * ### Pin Change Interrupts + * + * Pin Change Interrupts (PCINTs) can be enabled using pseudo modules. To provide + * a low-memory overhead implementation, the PCINTs are grouped into **banks**. + * Each banks corresponds to one PCINT on the ATmega (PCINT0, ..., PCINT3). + * + * To enable only a specific bank, simply add `USEMODULE += atmega_pcintN` to your + * Makefile. To enable all interrupts you can use `USEMODULE += atmega_pcint`. + * + * In case you want to add a new CPU, simply provide an `atmega_pcint.h` with your + * CPU and adapt your Makefile.dep and Makefile.features files. */