aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-11Reorganize Makefile and directory structure, because it's messy, and it's ↵Paul Selkirk
about to get messier.
2016-04-07Don't return from main() - it triggers a hard fault.Paul Selkirk
2016-04-07Add HardFault_Handler for debugging.Paul Selkirk
2016-04-07Use rpc branch on libhal.Paul Selkirk
2016-03-21making RPC testsPaul Selkirk
2016-03-21blocking recvPaul Selkirk
2016-03-21Back to using DISCO board for ST-LINK operations.Paul Selkirk
2016-03-16Added uart_recv_char() to support RPC.Paul Selkirk
Moved hal_io_fmc.c to libhal repo.
2015-12-13whack copyrightsPaul Selkirk
2015-11-16add test-trng, test-rsaPaul Selkirk
2015-11-16add dummy _open for test-rsaPaul Selkirk
2015-11-16implement precision, so we can print fixed-length non-null-terminated ↵Paul Selkirk
name/version strings
2015-11-16sync up with config_core_selector-related API changesPaul Selkirk
2015-11-11Lots of cleanup.Paul Selkirk
Clean up and simplify(?) Makefile. Add copyrights as needed. Add include guard to stm-fmc.h. Move MX_USART2_UART_Init back to stm-init.c for possible copyright reasons. Move libc, src, and include files to top level.
2015-11-10We really do need that delay before initializing FMC while Novena is booting.Paul Selkirk
2015-11-10cleanup printfPaul Selkirk
2015-11-10Do the proper endianness dance for htonl.Paul Selkirk
2015-11-10Catch up to changes in openocd 0.9.0.Paul Selkirk
2015-11-10Split includes from CFLAGS, because they don't make sense to libhal and libtfm.Paul Selkirk
2015-11-02rewrite and unify uart_send_<numbertype>Paul Selkirk
2015-11-01fix display of read/write timesPaul Selkirk
2015-11-01add readmePaul Selkirk
2015-10-31add new test cases, add gettimeofdayPaul Selkirk
2015-10-29add libhal tests, some cleanup (some mess-making)Paul Selkirk
2015-10-26Build libhal and libtfm for stm32.Paul Selkirk
2015-10-26Based on user/ft/stm32-dev-bridge, without the project-specific buildPaul Selkirk
directories (and duplicated code).
fredrik@thulin.net> 2016-07-08 18:10:42 +0200 committer Fredrik Thulin <fredrik@thulin.net> 2016-07-08 18:10:42 +0200 merge test code from projects/hsm/' href='/sw/stm32/commit/projects/cli-test/mgmt-masterkey.c?h=ice40mkm&id=3ea10bf4fba185a8bfbb33a8c67a69f70b95755a'>3ea10bf
4b5afd6
3ea10bf










4b5afd6
3ea10bf








e3fe7d8

3ea10bf
e3fe7d8
3ea10bf

e3fe7d8

3ea10bf
e3fe7d8


3ea10bf
3ea10bf
e3fe7d8

3ea10bf
e3fe7d8
3ea10bf
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209