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:
parent
57705d4386
commit
09b26120fd
@ -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
|
We use the open `avrdude` tool to write the new code into the ATmega2560's
|
||||||
flash
|
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
|
## State
|
||||||
While there is basic support in RIOT, there are still some parts missing:
|
While there is basic support in RIOT, there are still some parts missing:
|
||||||
* Timer implementation needs love (ideally simulate a 32bit timer by adding
|
* Timer implementation needs love (ideally simulate a 32bit timer by adding
|
||||||
|
@ -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
|
We use the open `avrdude` tool to write the new code into the ATmega328p's
|
||||||
flash
|
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
|
##Caution
|
||||||
Don't expect having a working network stack due to very limited resources.
|
Don't expect having a working network stack due to very limited resources.
|
||||||
*/
|
*/
|
||||||
|
@ -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
|
power consumption. When the device should be put into deep sleep it is recommended to use the internal RC oscillator
|
||||||
as system clock source.
|
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.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
@ -34,4 +34,10 @@ It will be used automatically with `make term`:
|
|||||||
```
|
```
|
||||||
make BOARD=mega-xplained -C examples/hello-world 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.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
@ -2,4 +2,10 @@
|
|||||||
@defgroup boards_waspmote-pro Waspmote PRO v1.2
|
@defgroup boards_waspmote-pro Waspmote PRO v1.2
|
||||||
@ingroup boards
|
@ingroup boards
|
||||||
@brief Support for the Waspmote PRO v1.2 board.
|
@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.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user