-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfuses.mk
55 lines (51 loc) · 1.73 KB
/
fuses.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Default fuses configuration for ATmega328 (8MHz)
# - Internal RC clock 8MHz, startup time PWRDWN/RESET 6CK/14CK + 65ms
# - Boot reset vector enabled (no bootloader)
# - Reset enabled
# - SPI programming enabled
# - BOD enabled at 2.7V
# - WDT off
# Internal RC 8MHz, BOD 2.7V, SPI enabled, no bootloader
DEF_LFUSE=0xe2
DEF_HFUSE=0xde
DEF_EFUSE=0x05
# For other frequencies, only the following setting changes:
# - External crystal oscillator (freq 8.0+), startup time PWRDWN/RESET 16CK/14CK +65ms
DEF_LFUSE=0xff
# Default fuses configuration for ATmega644 (8MHz)
# - Internal RC clock 8MHz, startup time PWRDWN/RESET 6CK/14CK + 65ms
# - Boot reset vector enabled (no bootloader)
# - Reset enabled
# - SPI programming enabled
# - BOD enabled at 2.7V
# - WDT off
# Internal RC 8MHz, BOD 2.7V, SPI enabled, no bootloader
DEF_LFUSE=0xe2
DEF_HFUSE=0xd8
DEF_EFUSE=0xfd
# For other frequencies, only the following setting changes:
# - External crystal oscillator (freq 8.0+), startup time PWRDWN/RESET 16CK/14CK +65ms
DEF_LFUSE=0xf7
# Default fuses configuration for ATtiny84 (8MHz)
# - Internal RC clock 8MHz, startup time PWRDWN/RESET 6CK/14CK + 64ms
# - Reset enabled
# - SPI programming enabled
# - BOD enabled at 2.7V
# - WDT off
# Internal RC 8MHz, BOD 2.7V, SPI enabled
DEF_LFUSE=0xe2
DEF_HFUSE=0xdd
DEF_EFUSE=0x01
# For other frequencies, only the following setting changes:
# - External crystal oscillator (freq 8.0+), startup time PWRDWN/RESET 16CK/14CK +65ms
DEF_LFUSE=0xff
# Default fuses configuration for ATtiny85 (8MHz)
# - Internal RC clock 8MHz, startup time PWRDWN/RESET 6CK/14CK + 64ms
# - Reset enabled
# - SPI programming enabled
# - BOD enabled at 2.7V
# - WDT off
# Internal RC 8MHz, BOD 2.7V, SPI enabled
DEF_LFUSE=0xe2
DEF_HFUSE=0xdd
DEF_EFUSE=0xff