From 8899100e4654853ec4fb64d02ab165f2650a4535 Mon Sep 17 00:00:00 2001 From: asterix Date: Tue, 31 Mar 2009 11:59:49 +0000 Subject: [PATCH] Fix comments. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2450 38d2e660-2303-0410-9eaa-f027e97ec537 --- examples/triface/hw/hw_sipo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/triface/hw/hw_sipo.h b/examples/triface/hw/hw_sipo.h index d2cfde75..70136b52 100644 --- a/examples/triface/hw/hw_sipo.h +++ b/examples/triface/hw/hw_sipo.h @@ -47,9 +47,9 @@ #include //Set output pin for sipo -#define SCK_OUT (DDRB |= BV(PB1)) // Load clock pin -#define SOUT_OUT (DDRB |= BV(PB2)) // Serial in pin -#define SLOAD_OUT (DDRB |= BV(PB3)) // Store clock pin +#define SCK_OUT (DDRB |= BV(PB1)) // Shift register clock input pin +#define SOUT_OUT (DDRB |= BV(PB2)) // Serial data input pin +#define SLOAD_OUT (DDRB |= BV(PB3)) // Storage register clock input pin #define OE_OUT (DDRG |= BV(PG3)) // Output enable pin //Define output level -- 2.25.1