packages feed

usb 0.7 → 0.8

raw patch · 2 files changed

+6/−15 lines, 2 files

Files

System/USB/Internal.hs view
@@ -60,7 +60,7 @@ import qualified Data.ByteString.Unsafe   as BU ( unsafeUseAsCStringLen )  -- from text:-import qualified Data.Text          as T  ( unpack )+import Data.Text                          ( Text ) import qualified Data.Text.Encoding as TE ( decodeUtf16LE )  -- from bindings-libusb:@@ -1184,10 +1184,6 @@  {-| Retrieve a string descriptor from a device. -This is a convenience function which formulates the appropriate control message-to retrieve the descriptor. The string returned is Unicode, as detailed in the-USB specifications.- This function may throw 'USBException's. -} getStrDesc ∷ DeviceHandle@@ -1196,20 +1192,15 @@            → Int -- ^ Maximum number of characters in the requested string. An                  --   'IOException' will be thrown when the requested string is                  --   larger than this number.-           → IO String+           → IO Text getStrDesc devHndl strIx langId nrOfChars = assert (strIx ≢ 0) $     fmap decode $ BI.createAndTrim size $ write ∘ castPtr         where           write  = putStrDesc devHndl strIx (marshalLangId langId) size           size   = strDescHeaderSize + 2 * nrOfChars -- characters are 2 bytes-          decode = T.unpack ∘ TE.decodeUtf16LE ∘ B.drop strDescHeaderSize--{-| Retrieve a string descriptor from a device using the first supported-language.+          decode = TE.decodeUtf16LE ∘ B.drop strDescHeaderSize -This is a convenience function which formulates the appropriate control message-to retrieve the descriptor. The string returned is Unicode, as detailed in the-USB specifications.+{-| Retrieve a string descriptor from a device using the first supported language.  This function may throw 'USBException's. -}@@ -1218,7 +1209,7 @@                     → Int -- ^ Maximum number of characters in the requested                           --   string. An 'IOException' will be thrown when the                           --   requested string is larger than this number.-                    → IO String+                    → IO Text getStrDescFirstLang devHndl strIx nrOfChars =     do langIds ← getLanguages devHndl        case langIds of
usb.cabal view
@@ -1,5 +1,5 @@ name:          usb-version:       0.7+version:       0.8 cabal-version: >=1.6 build-type:    Custom license:       BSD3