-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathivory-tower-helloworld.cabal
More file actions
221 lines (197 loc) · 6.9 KB
/
ivory-tower-helloworld.cabal
File metadata and controls
221 lines (197 loc) · 6.9 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
cabal-version: 2.2
name: ivory-tower-helloworld
version: 0.1.0.0
synopsis: Collection of example applications for Ivory Tower and STM32
license: BSD-3-Clause
author: Sorki
maintainer: srk@48.io
copyright: 2020 Richard Marko
category: Embedded
build-type: Simple
library
hs-source-dirs: src
exposed-modules:
Hello.Tests.ADS
Hello.Tests.AS5047
Hello.Tests.Blink
Hello.Tests.Bluepill
Hello.Tests.CAN2UART
Hello.Tests.CANSendRecv
Hello.Tests.DMAUART
Hello.Tests.ETHArpReq
Hello.Tests.EXTI
Hello.Tests.I2CWhoAmI
Hello.Tests.IOT01A
Hello.Tests.Monstick
Hello.Tests.Monstick.RN2483
Hello.Tests.NucleoPLC
Hello.Tests.PCF8591
Hello.Tests.Platforms
Hello.Tests.Platforms.Types
Hello.Tests.Platforms.Bluepill
Hello.Tests.Platforms.F0DISCO
Hello.Tests.Platforms.F3DISCO
Hello.Tests.Platforms.F4DISCO
Hello.Tests.Platforms.IOT01A
Hello.Tests.Platforms.Monstick
Hello.Tests.Platforms.NucleoG474
Hello.Tests.Platforms.NucleoF411
Hello.Tests.Platforms.NucleoF722
Hello.Tests.Platforms.NucleoF767
Hello.Tests.Platforms.Stamp
Hello.Tests.SimpleBlink
Hello.Tests.Shift595
Hello.Tests.UART
Hello.Tests.UARTBridge
Hello.Tests.UARTToMAX7219
build-depends: base
, ivory
, ivory-bsp-stm32
, ivory-hw
, ivory-stdlib
, ivory-tower-base
, ivory-tower-drivers
, tower
, tower-config
, tower-hal
, tower-freertos-stm32
default-language: Haskell2010
ghc-options: -Wall -Wunused-packages
executable ads-test-gen
main-is: ADS.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
ghc-options: -Wall
executable as5047-test-gen
main-is: AS5047.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-drivers
, ivory-tower-helloworld
ghc-options: -Wall
executable blink-test-gen
main-is: Blink.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable bluepill-test-gen
main-is: Bluepill.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
ghc-options: -Wall
executable can2uart-test-gen
main-is: CAN2UART.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable cansendrecv-test-gen
main-is: CANSendRecv.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable composed-test-gen
main-is: Composed.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
, tower
ghc-options: -Wall
executable dmauart-test-gen
main-is: DMAUART.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable exti-test-gen
main-is: EXTI.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
ghc-options: -Wall
executable eth-arpreq-test-gen
main-is: ETHArpReq.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
ghc-options: -Wall
executable i2c-whoami-test-gen
main-is: I2CWhoAmI.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable iot01a-test-gen
main-is: IOT01A.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable monstick-test-gen
main-is: Monstick.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable monstick-rn2483-test-gen
main-is: MonstickRN2483.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable nucleo-plc-test-gen
main-is: NucleoPLC.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable pcf8591-test-gen
main-is: PCF8591.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-helloworld
ghc-options: -Wall
executable shift595-test-gen
main-is: Shift595.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-drivers
, ivory-tower-helloworld
ghc-options: -Wall
executable simpleblink-test-gen
main-is: SimpleBlink.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable uart-test-gen
main-is: UART.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable uart-bridge-test-gen
main-is: UARTBridge.hs
hs-source-dirs: test
build-depends: base
, ivory-tower-helloworld
ghc-options: -Wall
executable uart-to-max7219-test-gen
main-is: UARTToMAX7219.hs
hs-source-dirs: test
build-depends: base
, ivory-bsp-stm32
, ivory-tower-drivers
, ivory-tower-helloworld
ghc-options: -Wall