forked from swift-nav/libsbp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbp.cabal
173 lines (164 loc) · 5.94 KB
/
sbp.cabal
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
name: sbp
version: 3.4.8-alpha
synopsis: SwiftNav's SBP Library
homepage: https://github.com/swift-nav/libsbp
license: MIT
author: Swift Navigation Inc.
maintainer: Swift Navigation <[email protected]>
copyright: Copyright (C) 2015-2018 Swift Navigation, Inc.
category: Network
build-type: Simple
cabal-version: >= 1.22
extra-source-files: README.md
description:
Haskell bindings for Swift Navigation Binary Protocol (SBP), a fast,
simple, and minimal binary protocol for communicating with Swift
devices. It is the native binary protocol used by the Piksi GPS
receiver to transmit solutions, observations, status and debugging
messages, as well as receive messages from the host operating
system, such as differential corrections and the almanac.
source-repository head
type: git
location: [email protected]:swift-nav/libsbp.git
library
exposed-modules: SwiftNav.CRC16
, SwiftNav.SBP
, SwiftNav.SBP.Acquisition
, SwiftNav.SBP.Bootload
, SwiftNav.SBP.ExtEvents
, SwiftNav.SBP.FileIo
, SwiftNav.SBP.Flash
, SwiftNav.SBP.Gnss
, SwiftNav.SBP.Imu
, SwiftNav.SBP.Linux
, SwiftNav.SBP.Logging
, SwiftNav.SBP.Mag
, SwiftNav.SBP.Navigation
, SwiftNav.SBP.Ndb
, SwiftNav.SBP.Observation
, SwiftNav.SBP.Orientation
, SwiftNav.SBP.Piksi
, SwiftNav.SBP.Sbas
, SwiftNav.SBP.Settings
, SwiftNav.SBP.SolutionMeta
, SwiftNav.SBP.Ssr
, SwiftNav.SBP.System
, SwiftNav.SBP.Tracking
, SwiftNav.SBP.User
, SwiftNav.SBP.Vehicle
, SwiftNav.SBP.Types
other-modules: SwiftNav.SBP.Msg
, SwiftNav.SBP.TH
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends: aeson
, array
, base >= 4.8 && < 5
, base64-bytestring
, basic-prelude
, binary
, bytestring
, data-binary-ieee754
, lens
, lens-aeson
, monad-loops
, template-haskell
, text
executable sbp2json
hs-source-dirs: main
main-is: SBP2JSON.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: aeson
, base
, basic-prelude
, binary-conduit
, bytestring
, conduit
, conduit-extra
, resourcet
, sbp
default-language: Haskell2010
executable sbp2prettyjson
hs-source-dirs: main
main-is: SBP2PRETTYJSON.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: aeson-pretty
, base
, basic-prelude
, binary-conduit
, bytestring
, cmdargs
, conduit
, conduit-extra
, resourcet
, sbp
default-language: Haskell2010
executable json2sbp
hs-source-dirs: main
main-is: JSON2SBP.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: aeson
, base
, basic-prelude
, binary-conduit
, conduit
, conduit-extra
, resourcet
, sbp
default-language: Haskell2010
executable json2json
hs-source-dirs: main
main-is: JSON2JSON.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: aeson
, base
, basic-prelude
, bytestring
, conduit
, conduit-extra
, resourcet
, sbp
, time
default-language: Haskell2010
executable sbp2yaml
hs-source-dirs: main
main-is: SBP2YAML.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base
, basic-prelude
, binary-conduit
, bytestring
, conduit
, conduit-extra
, resourcet
, sbp
, yaml
default-language: Haskell2010
executable sbp2nmea
hs-source-dirs: main
main-is: SBP2NMEA.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base
, basic-prelude
, binary-conduit
, bytestring
, conduit
, conduit-extra
, lens
, resourcet
, sbp
, time
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
other-modules: Test.SwiftNav.CRC16
build-depends: base
, basic-prelude
, sbp
, tasty
, tasty-hunit
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010