aboutsummaryrefslogtreecommitdiff
path: root/hal_io_i2c.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-11-08 01:44:50 -0500
committerRob Austein <sra@hactrn.net>2016-11-08 01:44:50 -0500
commit09a065bb67bf055da0417a6c972c11ba5ab13da0 (patch)
tree9a6952148efb88354b2c894b5a83b810b3f90e13 /hal_io_i2c.c
parent9d03d73315cc1cb5d4276409410c55c8fc556675 (diff)
First cut at multi-attribute get/set/delete API.
This is not yet complete, only the ks_volatile driver supports it, ks_flash will be a bit more complicated and isn't written yet. At the moment, this adds a complete duplicate set of {set,get,delete}_attributes() functions in parallel to the earlier {set,get,delete}_attribute() functions. We will almost certainly want to get rid of the duplicates, probably (but not necessarily) the entire single-attribute suite. At the moment, though, we want both sets so we can compare execution speeds of the two sets of functions.
Diffstat (limited to 'hal_io_i2c.c')
0 files changed, 0 insertions, 0 deletions
n <sra@hactrn.net> 2015-06-04 22:54:18 -0400 committer Rob Austein <sra@hactrn.net> 2015-06-04 22:54:18 -0400 First cut at PBKDF2.' href='/sw/libhal/commit/pbkdf2.c?id=1655dbf3b2c44d600f9c71086fb403b3490a2343'>1655dbf
a3b7050
a1e4e4f
1655dbf





30f8e4e
b3bbd3d
1655dbf







12ed3ab
1655dbf

b3bbd3d
1655dbf

















30f8e4e
b3bbd3d
1655dbf




e1029f9
ce372c3




1655dbf






e1029f9
ce372c3
1655dbf




7923c24








e1029f9

ce372c3
30f8e4e






1655dbf












ce372c3
1655dbf

ce372c3
e1029f9
1655dbf

b3bbd3d

1655dbf

e1029f9
ce372c3
1655dbf

e1029f9
1655dbf



b3bbd3d
e1029f9
1655dbf



e1029f9
1655dbf


e1029f9
1655dbf


e1029f9


1655dbf

e1029f9
1655dbf









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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189