X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=device%2Fexamples%2Fds390%2Fow390%2Fswtoper.c;h=d48eab2a8796113b0249ad092376e6fa8e736572;hb=22c0fb25b740b7f86141e1acb16247a1f765c20c;hp=2954eb862d2f88c425f70a2d89fee13ac3734cb1;hpb=a4d219fe6e7a7b938a3fb60a136149595e4e6f15;p=fw%2Fsdcc diff --git a/device/examples/ds390/ow390/swtoper.c b/device/examples/ds390/ow390/swtoper.c index 2954eb86..d48eab2a 100755 --- a/device/examples/ds390/ow390/swtoper.c +++ b/device/examples/ds390/ow390/swtoper.c @@ -1,27 +1,27 @@ //--------------------------------------------------------------------------- // Copyright (C) 2000 Dallas Semiconductor Corporation, All Rights Reserved. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the "Software"), -// to deal in the Software without restriction, including without limitation -// the rights to use, copy, modify, merge, publish, distribute, sublicense, -// and/or sell copies of the Software, and to permit persons to whom the +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the "Software"), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included +// +// The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -// IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES -// OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +// IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES +// OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. -// -// Except as contained in this notice, the name of Dallas Semiconductor -// shall not be used except as stated in the Dallas Semiconductor -// Branding Policy. +// +// Except as contained in this notice, the name of Dallas Semiconductor +// shall not be used except as stated in the Dallas Semiconductor +// Branding Policy. //-------------------------------------------------------------------------- // // swtoper.C - Menu-driven test of DS2406(DS2407) 1-Wire switch @@ -81,7 +81,7 @@ int main() //short argc, char **argv) // attempt to acquire the 1-Wire Net if (!owAcquire(portnum, argv[1], return_msg)) - { + { printf("%s",return_msg); exit(1); } @@ -99,7 +99,7 @@ int main() //short argc, char **argv) n=0; if(owAccess(portnum)) { - // loop while not done + // loop while not done do { test = ReadSwitch12(portnum, clear); @@ -112,7 +112,7 @@ int main() //short argc, char **argv) count = SwitchStateToString12(test, out); printf("%s", out); - // print menu + // print menu printf("\n\n(1) Display the switch Info\n" "(2) Clear activity Latches\n" "(3) Set Flip Flop(s) on switch\n" @@ -122,10 +122,10 @@ int main() //short argc, char **argv) ch = getkeystroke(); printf("\n\n"); - // do something from the menu selection + // do something from the menu selection clear = FALSE; switch(ch) - { + { case '1': // Display the switch Info done = FALSE; break; @@ -201,8 +201,8 @@ int main() //short argc, char **argv) break; case '5': case 'q': case 'Q': // Done - done = TRUE; - break; + done = TRUE; + break; default: break; }