labsat 0.0.1 → 0.0.2
raw patch · 2 files changed
+6/−1 lines, 2 files
Files
- labsat.cabal +1/−1
- src/Labsat.hs +5/−0
labsat.cabal view
@@ -1,5 +1,5 @@ name: labsat-version: 0.0.1+version: 0.0.2 synopsis: LabSat TCP Interface Wrapper description: labsat provides a wrapper around the LabSat3 TCP interface homepage: https://github.com/swift-nav/labsat
src/Labsat.hs view
@@ -77,6 +77,11 @@ withBinaryFile' lf $ \lh -> appSource ad =$= colorStripper $$ B.sinkHandle lh +-- | Parse connection message+--+connectMsg :: (MonadLabsatCtx c m) => m ()+connectMsg = receiveResp parseFirstLabsatMsg >> pure ()+ -- | Send a command and parser for its response. -- command :: (MonadLabsatCtx c m) => ByteString -> Parser a -> m a