-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.con.ina260.spin
111 lines (89 loc) · 3.78 KB
/
core.con.ina260.spin
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
----------------------------------------------------------------------------------------------------
Filename: core.con.ina260.spin
Description: INA260-specific constants
Author: Jesse Burt
Started: Nov 13, 2019
Updated: Aug 23, 2024
Copyright (c) 2024 - See end of file for terms of use.
----------------------------------------------------------------------------------------------------
}
CON
FAST_MAX = 400_000
HI_MAX = 2_940_000
I2C_MAX_FREQ = HI_MAX
SLAVE_ADDR = $40 << 1
DEVID_RESP = $22705449 ' DieID << 16 | MfrID
T_POR = 1_000 ' usec
' Register definitions
CONFIG = $00
CONFIG_MASK = $8FFF
RESET = 15
AVG = 9
VBUSCT = 6
ISHCT = 3
MODE = 0
RSVD_BITS = %110 << 12 ' Reserved bits
AVG_BITS = %111
VBUSCT_BITS = %111
ISHCT_BITS = %111
MODE_BITS = %111
RESET_MASK = (1 << RESET) ^ CONFIG_MASK
AVG_MASK = (AVG << AVG) ^ CONFIG_MASK
VBUSCT_MASK = (VBUSCT << VBUSCT) ^ CONFIG_MASK
ISHCT_MASK = (ISHCT << ISHCT) ^ CONFIG_MASK
MODE_MASK = MODE_BITS ^ CONFIG_MASK
SOFT_RES = (1 << RESET)
CURRENT = $01
BUS_VOLTAGE = $02
POWER = $03
ENABLE = $06
ENABLE_MASK = $FC1F
OCL = 15
UCL = 14
BOL = 13
BUL = 12
POL = 11
CNVR = 10
AFF = 4
CVRF = 3
OVF = 2
APOL = 1
LEN = 0
ALERTS = 10
ALERTS_BITS = %111111
OCL_MASK = (1 << OCL) ^ ENABLE_MASK
UCL_MASK = (1 << UCL) ^ ENABLE_MASK
BOL_MASK = (1 << BOL) ^ ENABLE_MASK
BUL_MASK = (1 << BUL) ^ ENABLE_MASK
POL_MASK = (1 << POL) ^ ENABLE_MASK
CNVR_MASK = (1 << CNVR) ^ ENABLE_MASK
AFF_MASK = (1 << AFF) ^ ENABLE_MASK
CVRF_MASK = (1 << CVRF) ^ ENABLE_MASK
OVF_MASK = (1 << OVF) ^ ENABLE_MASK
APOL_MASK = (1 << APOL) ^ ENABLE_MASK
LEN_MASK = (1 << LEN) ^ ENABLE_MASK
ALERTS_MASK = (ALERTS_BITS << ALERTS) ^ ENABLE_MASK
DRDY = (1 << CNVR)
OVERFL = (1 << OVF)
ALERT_LIMIT = $07
MFR_ID = $FE
DIE_ID = $FF
PUB null()
' This is not a top-level object
DAT
{
Copyright (c) 2024 Jesse Burt
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
}