tvalentius / as3glue

Automatically exported from code.google.com/p/as3glue
0 stars 0 forks source link

Incorrect implementation of disableDigitalPinReporting() in Arduino.as ? #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Disabling reporting of digital pins does not work as public function
disableDigitalPinReporting() in Arduino.as has the same implementation as 
public function enableDigitalPinReporting():

writeByte(ARD_REPORT_DIGITAL_PORTS);
writeByte(1);

I believe the second line should be writeByte(0); to disable reporting.
This issue occurs both in Glue.zip and the lastest SVN sources.

Original issue reported on code.google.com by bjoern.h...@gmail.com on 12 Feb 2008 at 6:11

GoogleCodeExporter commented 9 years ago
Thanks! Fixed this in both the zip and svn...

Original comment by erik.sjo...@gmail.com on 26 Feb 2008 at 2:17