File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ attiny3217 = ["device-selected"]
9494avr64du32 = [" device-selected" ]
9595avr64du28 = [" device-selected" ]
9696avr128db28 = [" device-selected" ]
97+ avr128db48 = [" device-selected" ]
9798rt = [" avr-device-macros" ]
9899
99100critical-section = [" critical-section/restore-state-u8" ]
Original file line number Diff line number Diff line change @@ -404,3 +404,9 @@ pub mod avr64du28 {
404404pub mod avr128db28 {
405405 include ! ( concat!( env!( "OUT_DIR" ) , "/pac/avr128db28.rs" ) ) ;
406406}
407+
408+ /// [AVR128DB48](https://www.microchip.com/wwwproducts/en/AVR128DB48)
409+ #[ cfg( feature = "avr128db48" ) ]
410+ pub mod avr128db48 {
411+ include ! ( concat!( env!( "OUT_DIR" ) , "/pac/avr128db48.rs" ) ) ;
412+ }
Original file line number Diff line number Diff line change 6666#![ cfg_attr( feature = "avr64du32" , doc = "**avr64du32**," ) ]
6767#![ cfg_attr( feature = "avr64du28" , doc = "**avr64du28**," ) ]
6868#![ cfg_attr( feature = "avr128db28" , doc = "**avr128db28**," ) ]
69+ #![ cfg_attr( feature = "avr128db48" , doc = "**avr128db48**," ) ]
6970//! and a few things which apply to AVR microcontrollers generally.
7071//!
7172#![ cfg_attr(
140141//! `avr64du32`,
141142//! `avr64du28`,
142143//! `avr128db28`,
144+ //! `avr128db48`,
143145//!
144146//! # How to use this crate?
145147//!
@@ -327,6 +329,7 @@ compile_error!(
327329 * avr64du32
328330 * avr64du28
329331 * avr128db28
332+ * avr128db48
330333 "
331334) ;
332335
@@ -469,3 +472,5 @@ pub use crate::devices::avr64du28;
469472pub use crate :: devices:: avr64du32;
470473#[ cfg( feature = "avr128db28" ) ]
471474pub use crate :: devices:: avr128db28;
475+ #[ cfg( feature = "avr128db48" ) ]
476+ pub use crate :: devices:: avr128db48;
You can’t perform that action at this time.
0 commit comments