1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards: adds atmega pin change interrupt to doc

This commit is contained in:
Robert Hartung 2019-08-01 09:26:10 +02:00
parent 57705d4386
commit 09b26120fd
5 changed files with 27 additions and 0 deletions

View File

@ -46,6 +46,11 @@ This should take care of everything!
We use the open `avrdude` tool to write the new code into the ATmega2560's
flash
## Pin Change Interrupts
More pins can be used for hardware interrupts using the Pin Change
Interrupt feature. See @ref boards_common_atmega for details.
## State
While there is basic support in RIOT, there are still some parts missing:
* Timer implementation needs love (ideally simulate a 32bit timer by adding

View File

@ -37,6 +37,11 @@ This should take care of everything!
We use the open `avrdude` tool to write the new code into the ATmega328p's
flash
## Pin Change Interrupts
More pins can be used for hardware interrupts using the Pin Change
Interrupt feature. See @ref boards_common_atmega for details.
##Caution
Don't expect having a working network stack due to very limited resources.
*/

View File

@ -173,4 +173,9 @@ the clocks for all peripherals are enabled and set to the smallest divider (high
power consumption. When the device should be put into deep sleep it is recommended to use the internal RC oscillator
as system clock source.
## Pin Change Interrupts
More pins can be used for hardware interrupts using the Pin Change
Interrupt feature. See @ref boards_common_atmega for details.
*/

View File

@ -34,4 +34,10 @@ It will be used automatically with `make term`:
```
make BOARD=mega-xplained -C examples/hello-world term
```
### Pin Change Interrupts
More pins can be used for hardware interrupts using the Pin Change
Interrupt feature. See @ref boards_common_atmega for details.
*/

View File

@ -2,4 +2,10 @@
@defgroup boards_waspmote-pro Waspmote PRO v1.2
@ingroup boards
@brief Support for the Waspmote PRO v1.2 board.
## Pin Change Interrupts
More pins can be used for hardware interrupts using the Pin Change
Interrupt feature. See @ref boards_common_atmega for details.
*/