-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.inc
67 lines (61 loc) · 1.4 KB
/
common.inc
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
55
56
57
58
59
60
61
62
63
64
65
66
67
; ----------------------------------------------
; --------- USBC Power Profiler ----------
; github.com/shreyask21/usbcpowprof
; Common Macros
; ----------------------------------------------
.equ i_DELAY_VAL = 39998
.macro m_INIT_STACK
ldi r16,LOW(RAMEND)
out SPL,r16
ldi r16,HIGH(RAMEND)
out SPH,r16
.endmacro
.macro m_POWERSAVE
push r16
rcall l_POWERSAVE
pop r16
.endmacro
.macro m_DELAY_MS
push r16
push r24
push r25
ldi r16, (@0/10)
rcall l_delay
pop r25
pop r24
pop r16
.endmacro
l_delay:
ldi r24,LOW(i_DELAY_VAL)
ldi r25,HIGH(i_DELAY_VAL)
l_delay_loop:
sbiw r24,1
brne l_delay_loop
dec r16
brne l_delay
nop
ret
l_POWERSAVE:
; Disable ADC, SPI, and Timers to save power
ldi r16, 0x2D
sts PRR, r16
; Disable Timer0 and Timer1, Timer2
ldi r16, 0
sts TCCR0B, r16 ; Stop Timer0
sts TCCR1B, r16 ; Stop Timer1
sts TCCR2B, r16 ; Stop Timer2
; Disable ADC to save power
ldi r16, (0<<ADEN)
sts ADCSRA, r16
; Disable Analog Comparator
ldi r16, (0<<ACD)
sts ACSR, r16
; Configure all pins as inputs and drive them low to reduce power consumption
ldi r16, 0x00
out DDRB, r16 ; Set all PORTB pins as inputs
out DDRC, r16 ; Set all PORTC pins as inputs
out DDRD, r16 ; Set all PORTD pins as inputs
out PORTB, r16 ; Disable pullups
out PORTC, r16 ; Disable pullups
out PORTD, r16 ; Disable pullups
ret