diff options
author | tmk <nobody@nowhere> | 2013-09-20 00:58:30 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-09-20 00:58:30 +0900 |
commit | 22315fcdf9982c975484892adf3a2aa8a56e5b6e (patch) | |
tree | ab47c3894c1a5eb3ac16fa587bf6e67025881681 | |
parent | 58ca7b904b4410416f6b7edf1051ec58f6cdb6c4 (diff) | |
download | firmware-22315fcdf9982c975484892adf3a2aa8a56e5b6e.tar.gz firmware-22315fcdf9982c975484892adf3a2aa8a56e5b6e.tar.bz2 firmware-22315fcdf9982c975484892adf3a2aa8a56e5b6e.zip |
Change m0110 pin configuration: swap D0 and D1
-rw-r--r-- | converter/m0110_usb/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/m0110_usb/config.h b/converter/m0110_usb/config.h index 2f63a3a49..32a59e1d4 100644 --- a/converter/m0110_usb/config.h +++ b/converter/m0110_usb/config.h @@ -53,10 +53,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define M0110_CLOCK_PORT PORTD #define M0110_CLOCK_PIN PIND #define M0110_CLOCK_DDR DDRD -#define M0110_CLOCK_BIT 0 +#define M0110_CLOCK_BIT 1 #define M0110_DATA_PORT PORTD #define M0110_DATA_PIN PIND #define M0110_DATA_DDR DDRD -#define M0110_DATA_BIT 1 +#define M0110_DATA_BIT 0 #endif |