Imported Upstream version 2.9.0
[debian/cc1111] / device / examples / ds390 / ow390 / findtype.c
1 //---------------------------------------------------------------------------
2 // Copyright (C) 2000 Dallas Semiconductor Corporation, All Rights Reserved.
3 // 
4 // Permission is hereby granted, free of charge, to any person obtaining a 
5 // copy of this software and associated documentation files (the "Software"), 
6 // to deal in the Software without restriction, including without limitation 
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense, 
8 // and/or sell copies of the Software, and to permit persons to whom the 
9 // Software is furnished to do so, subject to the following conditions:
10 // 
11 // The above copyright notice and this permission notice shall be included 
12 // in all copies or substantial portions of the Software.
13 // 
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
16 // MERCHANTABILITY,  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
17 // IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES 
18 // OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
19 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
20 // OTHER DEALINGS IN THE SOFTWARE.
21 // 
22 // Except as contained in this notice, the name of Dallas Semiconductor 
23 // shall not be used except as stated in the Dallas Semiconductor 
24 // Branding Policy. 
25 //---------------------------------------------------------------------------
26 //
27 //  findtype.c - Test module to find all devices of one type.
28 //      
29 //  Version: 2.00
30 // 
31 //----------------------------------------------------------------------
32 //
33 //
34 #include "ownet.h"
35
36 //----------------------------------------------------------------------
37 // Search for devices 
38 //
39 // 'portnum'  - number 0 to MAX_PORTNUM-1.  This number is provided to
40 //              indicate the symbolic port number.
41 //
42 // Returns: TRUE(1)  success, device type found
43 //          FALSE(0) device not found
44 //
45 int FindDevices(int portnum, uchar FamilySN[][8], int family_code, int MAXDEVICES)
46 {
47    int NumDevices=0;
48    int TotalDevices=0;
49    
50    // find the devices
51    // set the search to first find that family code
52    owFamilySearchSetup(portnum,family_code);
53
54    // loop to find all of the devices up to MAXDEVICES
55    NumDevices = 0;  
56    do
57    {
58       // perform the search
59       if (!owNext(portnum,TRUE, FALSE)) 
60          break;
61       owSerialNum(portnum,FamilySN[NumDevices], TRUE);   
62       if (FamilySN[NumDevices][0] == family_code)
63       {
64          NumDevices++;
65       } 
66    }
67    while (NumDevices < (MAXDEVICES - 1));
68
69    // check if not at least 1 device
70    return NumDevices;
71 }