# HG changeset patch # User darius # Date 1126947679 -34200 # Node ID 026dc24d85e0e968713388039dcd90a7f89aa43d # Parent 0940abdf2b9dbeeacf85cb482dea0ea83815c83f Spell presence correctly. diff -r 0940abdf2b9d -r 026dc24d85e0 1wire.c --- a/1wire.c Sat Sep 17 18:10:33 2005 +0930 +++ b/1wire.c Sat Sep 17 18:31:19 2005 +0930 @@ -197,7 +197,7 @@ * OWFirst/OWNext return.. * 1 when something is found, * 0 no more modules - * -1 if no presense pulse, + * -1 if no presence pulse, * -2 if bad CRC, * -3 if bad wiring. */ diff -r 0940abdf2b9d -r 026dc24d85e0 testavr.c --- a/testavr.c Sat Sep 17 18:10:33 2005 +0930 +++ b/testavr.c Sat Sep 17 18:31:19 2005 +0930 @@ -127,9 +127,9 @@ uart_putsP(PSTR("Resetting... ")); if (OWTouchReset() == 1) - uart_putsP(PSTR("No presense pulse found\n\r")); + uart_putsP(PSTR("No presence pulse found\n\r")); else - uart_putsP(PSTR("Presense pulse found\n\r")); + uart_putsP(PSTR("Presence pulse found\n\r")); } else if (cmdbuf[0] == 'r' && cmdbuf[1] == 'e') { if (OWReadBit()) uart_putsP(PSTR("Read a 1\n\r")); @@ -263,11 +263,11 @@ do { switch (i) { case OW_BADWIRE: - uart_putsP(PSTR("Presense pulse, but no module found, bad module/cabling?\n\r")); + uart_putsP(PSTR("Presence pulse, but no module found, bad module/cabling?\n\r")); break; case OW_NOPRESENCE: - uart_putsP(PSTR("No presense pulse found\n\r")); + uart_putsP(PSTR("No presence pulse found\n\r")); break; case OW_BADCRC: