File tree Expand file tree Collapse file tree 7 files changed +5749
-8
lines changed Expand file tree Collapse file tree 7 files changed +5749
-8
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ attiny402 = ["device-selected"]
53
53
attiny404 = [" device-selected" ]
54
54
attiny44a = [" device-selected" ]
55
55
attiny816 = [" device-selected" ]
56
+ attiny817 = [" device-selected" ]
56
57
attiny828 = [" device-selected" ]
57
58
attiny84 = [" device-selected" ]
58
59
attiny841 = [" device-selected" ]
Original file line number Diff line number Diff line change 1
1
all : deps chips
2
2
3
- CHIPS := at90usb1286 atmega1280 atmega1284p atmega128a atmega128rfa1 atmega164pa atmega168 atmega2560 atmega8 atmega8u2 atmega324pa atmega328p atmega328pb atmega32a atmega32u4 atmega4808 atmega4809 atmega48p atmega64 atmega644 atmega88p attiny13a attiny202 attiny2313 attiny2313a attiny402 attiny404 attiny44a attiny84 attiny85 attiny88 attiny816 attiny828 attiny841 attiny861 attiny167 attiny1614
4
-
3
+ CHIPS := at90usb1286 atmega1280 atmega1284p atmega128a atmega128rfa1 atmega164pa atmega168 atmega2560 atmega8 atmega8u2 atmega324pa atmega328p atmega328pb atmega32a atmega32u4 atmega4808 atmega4809 atmega48p atmega64 atmega644 atmega88p attiny13a attiny202 attiny2313 attiny2313a attiny402 attiny404 attiny44a attiny84 attiny85 attiny88 attiny816 attiny817 attiny828 attiny841 attiny861 attiny167 attiny1614
5
4
RUSTUP_TOOLCHAIN ?= nightly
6
5
7
6
PATCHES := $(foreach chip, $(CHIPS ) , $(wildcard patch/$(chip ) .yaml) )
Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ Via the feature you can select which chip you want the register specifications f
24
24
| ` atmega328p ` | | | | ` attiny85 ` |
25
25
| ` atmega328pb ` | | | | ` attiny88 ` |
26
26
| ` atmega32a ` | | | | ` attiny816 ` |
27
- | ` atmega1280 ` | | | | ` attiny828 ` |
28
- | ` atmega1284p ` | | | | ` attiny841 ` |
29
- | ` atmega128a ` | | | | ` attiny861 ` |
30
- | ` atmega128rfa1 ` | | | | ` attiny1614 ` |
31
- | ` atmega2560 ` | | | | ` attiny2313 ` |
32
- | ` atmega164pa ` | | | | ` attiny2313a ` |
27
+ | ` atmega1280 ` | | | | ` attiny817 ` |
28
+ | ` atmega1284p ` | | | | ` attiny828 ` |
29
+ | ` atmega128a ` | | | | ` attiny841 ` |
30
+ | ` atmega128rfa1 ` | | | | ` attiny861 ` |
31
+ | ` atmega2560 ` | | | | ` attiny1614 ` |
32
+ | ` atmega164pa ` | | | | ` attiny2313 ` |
33
+ | | | | | ` attiny2313a ` |
33
34
34
35
## Build Instructions
35
36
The version on ` crates.io ` is pre-built. The following is only necessary when trying to build this crate from source.
Original file line number Diff line number Diff line change
1
+ _svd : ../svd/attiny817.svd
Original file line number Diff line number Diff line change @@ -123,6 +123,10 @@ pub mod attiny44a;
123
123
#[ cfg( feature = "attiny816" ) ]
124
124
pub mod attiny816;
125
125
126
+ /// [ATtiny817](https://www.microchip.com/wwwproducts/en/ATtiny817)
127
+ #[ cfg( feature = "attiny817" ) ]
128
+ pub mod attiny817;
129
+
126
130
/// [ATtiny828](https://www.microchip.com/wwwproducts/en/ATtiny828)
127
131
#[ cfg( feature = "attiny828" ) ]
128
132
pub mod attiny828;
Original file line number Diff line number Diff line change 30
30
#![ cfg_attr( feature = "attiny404" , doc = "**attiny404**," ) ]
31
31
#![ cfg_attr( feature = "attiny44a" , doc = "**attiny44a**," ) ]
32
32
#![ cfg_attr( feature = "attiny816" , doc = "**attiny816**," ) ]
33
+ #![ cfg_attr( feature = "attiny817" , doc = "**attiny817**," ) ]
33
34
#![ cfg_attr( feature = "attiny828" , doc = "**attiny828**," ) ]
34
35
#![ cfg_attr( feature = "attiny84" , doc = "**attiny84**," ) ]
35
36
#![ cfg_attr( feature = "attiny841" , doc = "**attiny841**," ) ]
74
75
//! `attiny404`,
75
76
//! `attiny44a`,
76
77
//! `attiny816`,
78
+ //! `attiny817`,
77
79
//! `attiny828`,
78
80
//! `attiny84`,
79
81
//! `attiny841`,
@@ -231,6 +233,7 @@ compile_error!(
231
233
* attiny402
232
234
* attiny44a
233
235
* attiny816
236
+ * attiny817
234
237
* attiny828
235
238
* attiny84
236
239
* attiny841
@@ -303,6 +306,8 @@ pub use crate::devices::attiny404;
303
306
pub use crate :: devices:: attiny44a;
304
307
#[ cfg( feature = "attiny816" ) ]
305
308
pub use crate :: devices:: attiny816;
309
+ #[ cfg( feature = "attiny817" ) ]
310
+ pub use crate :: devices:: attiny817;
306
311
#[ cfg( feature = "attiny828" ) ]
307
312
pub use crate :: devices:: attiny828;
308
313
#[ cfg( feature = "attiny84" ) ]
You can’t perform that action at this time.
0 commit comments