machine/hifive1b: remove extra println left in by mistake

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram
2020-06-09 11:03:06 +02:00
committed by Ayke
parent 4321923641
commit 2281b6a3f5
-1
View File
@@ -48,7 +48,6 @@ func (p Pin) Set(high bool) {
// Get returns the current value of a GPIO pin.
func (p Pin) Get() bool {
val := sifive.GPIO0.VALUE.Get() & (1 << uint8(p))
println(sifive.GPIO0.VALUE.Get())
return (val > 0)
}