avr-oxide 0.1.0

An extremely simple Rusty operating system for AVR microcontrollers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* watchdog.rs
 *
 * Developed by Tim Walls <tim.walls@snowgoons.com>
 * Copyright (c) All Rights Reserved, Tim Walls
 */
//! ATmega4809-specific implementation of the AVR watchdog timer

// Imports ===================================================================
use crate::{atmel_watchdog_tpl};

// Declarations ==============================================================

// Code ======================================================================
atmel_watchdog_tpl!(super::ADDR_WDT, crate::hal::atmega4809::cpu::instance());