소스 검색

Change m0110 pin configuration: swap D0 and D1

led_matrix
tmk 10 년 전
부모
커밋
22315fcdf9
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      converter/m0110_usb/config.h

+ 2
- 2
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