Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ before_cache:

branches:
only:
- auto
- master
- try
- trying
- staging

notifications:
email:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.2.0] - 2018-05-14

### Changed

- [breaking-change] moved to v0.2.x of `embedded-hal`.

## [v0.1.1] - 2018-02-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ keywords = ["Linux", "hal"]
license = "MIT OR Apache-2.0"
name = "linux-embedded-hal"
repository = "https://github.com/japaric/linux-embedded-hal"
version = "0.1.1"
version = "0.2.0"

[dependencies]
embedded-hal = "0.1.0"
embedded-hal = "0.2.0"
i2cdev = "0.3.1"
spidev = "0.3.0"
sysfs_gpio = "0.5.1"
Expand Down
8 changes: 0 additions & 8 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,6 @@ impl Pin {
}

impl hal::digital::OutputPin for Pin {
fn is_low(&self) -> bool {
unimplemented!()
}

fn is_high(&self) -> bool {
unimplemented!()
}

fn set_low(&mut self) {
self.0.set_value(0).unwrap()
}
Expand Down