STLinkUSB 0.1.0 → 0.1.1
raw patch · 4 files changed
+35/−3 lines, 4 filessetup-changed
Files
- LICENSE +27/−0
- README.md +2/−0
- STLinkUSB.cabal +5/−3
- Setup.hs +1/−0
+ LICENSE view
@@ -0,0 +1,27 @@+Copyright (c) Marc Fontaine 2015-2017++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions+are met:+1. Redistributions of source code must retain the above copyright+ notice, this list of conditions and the following disclaimer.+2. Redistributions in binary form must reproduce the above copyright+ notice, this list of conditions and the following disclaimer in the+ documentation and/or other materials provided with the distribution.+3. Neither the name of the author nor the names of his contributors+ may be used to endorse or promote products derived from this software+ without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF+SUCH DAMAGE.
README.md view
@@ -1,5 +1,7 @@ # STLinkUSB ++ This package contains a Haskell driver for ST-Link USB dongles. My use case for this driver is the STM32-Zombie library. The STM32-Zombie library turns a STM32 micro-controller
STLinkUSB.cabal view
@@ -1,6 +1,7 @@ Name: STLinkUSB-Version: 0.1.0+Version: 0.1.1 Category: Hardware, STM32, Microcontroller+License-File: LICENSE Synopsis: STLink USB interface in Haskell Description: This package contains a Haskell driver for ST-Link USB dongles. My use case for this driver is the STM32-Zombie library.@@ -10,6 +11,7 @@ License: BSD3 Author: 2015-2017 Marc Fontaine <Marc.Fontaine@gmx.de>+Maintainer: 2015-2017 Marc Fontaine <Marc.Fontaine@gmx.de> Stability: Experimental Tested-With: GHC == 8.2.1 Build-Type: Simple@@ -18,12 +20,12 @@ Source-Repository head type: git- location: git://github.com/MarcFontaine/STLinkUSB+ location: git://github.com/MarcFontaine/stm32hs library default-language : Haskell2010 ghc-options : -Wall- Build-depends : base >= 4.10 && < 5+ Build-depends : base >= 4.9 && < 5 , bytestring >= 0.10 && < 0.11 , usb >= 1.3 && < 1.4 , vector >= 0.12 && < 0.13
Setup.hs view
@@ -1,2 +1,3 @@+#!/usr/bin/env runhaskell import Distribution.Simple main = defaultMain