sdr 0.1.0.2 → 0.1.0.3
raw patch · 4 files changed
+13/−3 lines, 4 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Readme.md +9/−1
- hs_sources/SDR/CPUID.hs +1/−0
- hs_sources/SDR/Filter.hs +1/−0
- sdr.cabal +2/−2
Readme.md view
@@ -29,9 +29,15 @@ # Getting Started ## Installation-Building with cabal sandboxes is recommended: +You can install it from [Hackage](https://hackage.haskell.org/package/sdr): ```+cabal install sdr+```++Or, you can build it with cabal sandboxes:++``` cabal sandbox init git clone https://github.com/adamwalker/dynamic-graph git clone https://github.com/adamwalker/haskell-fftw-simple@@ -68,6 +74,8 @@ ``` # Usage++Documentation is available on [Hackage](https://hackage.haskell.org/package/sdr). An FM receiver:
hs_sources/SDR/CPUID.hs view
@@ -26,6 +26,7 @@ import Foreign.Storable import Data.List import Data.Maybe+import Control.Applicative foreign import ccall unsafe "cpuid" cpuid_c :: Word32 -> Ptr Word32 -> Ptr Word32 -> Ptr Word32 -> Ptr Word32 -> IO ()
hs_sources/SDR/Filter.hs view
@@ -89,6 +89,7 @@ dcBlockingFilter ) where +import Control.Applicative import Data.Complex import Control.Exception hiding (assert) import qualified Data.Vector.Generic as VG
sdr.cabal view
@@ -1,5 +1,5 @@ name: sdr-version: 0.1.0.2+version: 0.1.0.3 synopsis: A software defined radio library description: Write software defined radio applications in Haskell.@@ -65,7 +65,7 @@ -- other-modules: other-extensions: ScopedTypeVariables, GADTs build-depends: - base >=4.6 && <4.9, + base >=4.7 && <4.9, fftwRaw >=0.1 && <0.2, bytestring >=0.10 && <0.11, pulse-simple >=0.1 && <0.2,