-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
platform: Add Edison board to test PWM #99
Merged
mrstegeman
merged 1 commit into
WebThingsIO:master
from
TizenTeam:sandbox/rzr/review/master
Jun 27, 2019
Merged
platform: Add Edison board to test PWM #99
mrstegeman
merged 1 commit into
WebThingsIO:master
from
TizenTeam:sandbox/rzr/review/master
Jun 27, 2019
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It was tested on Intel edison on PWM0 GPIO12 must be manually configured first using: ```sh gpio=12 echo $gpio | sudo tee -a /sys/class/gpio/export echo out | sudo tee /sys/class/gpio/gpio$gpio/direction echo mode1 | sudo tee /sys/kernel/debug/gpio_debug/gpio${gpio}/current_pinmux ``` More insights at: https://github.com/rzr/webthing-iotjs/wiki/Actuator Relate-to: rzr/webthing-iotjs#3 Change-Id: I6f587a840e8c429d91ba2491e7cddfdfab66bf4b Signed-off-by: Philippe Coval <p.coval@samsung.com>
Very cool! It would be nice to add that shell code as an accompanying |
make file helper to come next |
I start it using: make -C example/platform edison with that upcoming patch: the reason that the change is split in several patch is to make my rebase job easier for iotjs |
mrstegeman
approved these changes
Jun 27, 2019
rzr
added a commit
to TizenTeam/webthing-node
that referenced
this pull request
Jun 27, 2019
Usage: make -C example/platform edison Align older rpi related bits Relate-to: WebThingsIO#99 Change-Id: Id55d10d4385174b8906c2fcf1ab066ebbc37ca2b Signed-off-by: Philippe Coval <p.coval@samsung.com>
mrstegeman
pushed a commit
that referenced
this pull request
Jun 27, 2019
Usage: make -C example/platform edison Align older rpi related bits Relate-to: #99 Change-Id: Id55d10d4385174b8906c2fcf1ab066ebbc37ca2b Signed-off-by: Philippe Coval <p.coval@samsung.com>
rzr
added a commit
to rzr/webthing-iotjs
that referenced
this pull request
Jun 28, 2019
Usage: make -C example/platform edison Align older rpi related bits Relate-to: WebThingsIO/webthing-node#99 Change-Id: Id55d10d4385174b8906c2fcf1ab066ebbc37ca2b Signed-off-by: Philippe Coval <p.coval@samsung.com>
rzr
added a commit
to TizenTeam/webthing-node
that referenced
this pull request
Jul 4, 2019
It was tested on Intel edison on PWM0 GPIO12 must be manually configured first using: ```sh gpio=12 echo $gpio | sudo tee -a /sys/class/gpio/export echo out | sudo tee /sys/class/gpio/gpio$gpio/direction echo mode1 | sudo tee /sys/kernel/debug/gpio_debug/gpio${gpio}/current_pinmux ``` More insights at: https://github.com/rzr/webthing-iotjs/wiki/Actuator Relate-to: rzr/webthing-iotjs#3 Change-Id: I6f587a840e8c429d91ba2491e7cddfdfab66bf4b Signed-off-by: Philippe Coval <p.coval@samsung.com>
rzr
added a commit
to TizenTeam/webthing-node
that referenced
this pull request
Jul 5, 2019
It was tested on Intel edison on PWM0 GPIO12 must be manually configured first using: ```sh gpio=12 echo $gpio | sudo tee -a /sys/class/gpio/export echo out | sudo tee /sys/class/gpio/gpio$gpio/direction echo mode1 | sudo tee /sys/kernel/debug/gpio_debug/gpio${gpio}/current_pinmux ``` More insights at: https://github.com/rzr/webthing-iotjs/wiki/Actuator Relate-to: rzr/webthing-iotjs#3 Change-Id: I6f587a840e8c429d91ba2491e7cddfdfab66bf4b Signed-off-by: Philippe Coval <p.coval@samsung.com>
rzr
added a commit
to TizenTeam/webthing-node
that referenced
this pull request
Jul 5, 2019
Usage: make -C example/platform edison Align older rpi related bits Relate-to: WebThingsIO#99 Change-Id: Id55d10d4385174b8906c2fcf1ab066ebbc37ca2b Signed-off-by: Philippe Coval <p.coval@samsung.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It was tested on Intel edison on PWM0
GPIO12 must be manually configured first
using:
More insights at:
https://github.com/rzr/webthing-iotjs/wiki/Actuator
Relate-to: rzr/webthing-iotjs#3
Change-Id: I6f587a840e8c429d91ba2491e7cddfdfab66bf4b
Signed-off-by: Philippe Coval p.coval@samsung.com