资源简介

WIFI测距,通过RSSI(Received Signal Strength Indication)实现室内wifi结点测试距离。集成inssider功能,并对信号做算法处理与优化。 (WIFI ranging through RSSI (Received Signal Strength Indication) to achieve indoor wifi node test distance. Integrated inssider function, and signal processing algorithms and optimization to do.)

资源截图

代码片段和文件信息

////////////////////////////////////////////////////////////////
//
// Copyright (c) 2007-2008 metaGeek LLC
//
// Licensed under the Apache License Version 2.0 (the “License“); 
// you may not use this file except in compliance with the License. 
// You may obtain a copy of the License at 
//
// http://www.apache.org/licenses/LICENSE-2.0 
//
// Unless required by applicable law or agreed to in writing software 
// distributed under the License is distributed on an “AS IS“ BASIS 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied. 
// See the License for the specific language governing permissions and 
// limitations under the License. 
//
////////////////////////////////////////////////////////////////

using System.Text;


namespace metaGeek.IoctlNdis
{
    /// 
    /// This class is a simple data class that holds registry
    /// information about a network adapter.
    /// 

    public class AdapterInformation
    {
        #region Private Data
        private string _description;
        private string _title;
        private string _serviceName;
        #endregion

        #region Properties
/*
        /// 
        /// Gets or sets the description for the network adapter.
        /// 

        public string Description {
            get { return _description; }
            set { _description = value; }
        }
*/

/*
        /// 
        /// Gets or sets the title information for the network adapter.
        /// 

        public string title {
            get { return _title; }
            set { _title = value; }
        }
*/

        /// 
        /// Gets or sets the service name for the network adapter.
        /// 

        public string ServiceName {
            get { return _serviceName; }
        }
        #endregion

        #region Constructors
        /// 
        /// Default constructor
        /// 

        public AdapterInformation() {
        }

        /// 
        /// Creates a new instance.
        /// 

        /// ription“>network adapter description
        /// tle“>network adapter title
        /// service name of the network adapter
        public AdapterInformation(string description string title string serviceName) {
            _description = description;
            _title = title;
            _serviceName = serviceName;
        } // End AdapterInforamtion()
        #endregion

        /// 
        /// Returns the string representation of the class.
        /// 

        /// a string
        public override string ToString() {
            StringBuilder sb = new StringBuilder();
            sb.Append(“Description: “ + _description + “\n“);
            sb.Append(“Service Name

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        293  2011-10-06 11:42  WIFI  Distance\.gitignore

     文件       3139  2011-10-06 11:42  WIFI  Distance\Backup\IoctlNdis\AdapterInformation.cs

     文件      33222  2011-10-06 11:42  WIFI  Distance\Backup\IoctlNdis\IoctlNdis.cs

     文件       4093  2011-10-06 11:42  WIFI  Distance\Backup\IoctlNdis\IoctlNdis.csproj

     文件        168  2011-10-06 11:42  WIFI  Distance\Backup\IoctlNdis\IoctlNdis.csproj.user

     文件       1442  2011-10-06 11:42  WIFI  Distance\Backup\IoctlNdis\Properties\AssemblyInfo.cs

     文件       1153  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\AssemblyInfo.cs

     文件      13840  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\IEParser.cs

     文件       1026  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\InterfaceNotificationEventsArgs.cs

     文件       6860  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\ManagedWifi.csproj

     文件        168  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\ManagedWifi.csproj.user

     文件       2189  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\SudoInterface.cs

     文件      26885  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\Wlan.cs

     文件       9817  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\WlanClient.cs

     文件      19036  2011-10-06 11:42  WIFI  Distance\Backup\ManagedWifi\WlanInterface.cs

     文件      14325  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\GpsControllerN.cs

     文件       1456  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\GpsData.cs

     文件       4717  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\metaGeek.Gps.csproj

     文件        168  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\metaGeek.Gps.csproj.user

     文件      23703  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\NmeaParser.cs

     文件       1473  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.Gps\Properties\AssemblyInfo.cs

     文件      14857  2011-10-08 15:44  WIFI  Distance\Backup\metaGeek.WiFi\AccessPoint.cs

     文件       3810  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\AdapterVendors.cs

     文件        983  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\Extensions.cs

     文件      19146  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\Filter.cs

     文件       1361  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\IncomingDataEventArgs.cs

     文件       5276  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\Log.cs

     文件       5762  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\MacAddress.cs

     文件       5646  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\metaGeek.WiFi.csproj

     文件        168  2011-10-06 11:42  WIFI  Distance\Backup\metaGeek.WiFi\metaGeek.WiFi.csproj.user

............此处省略531个文件信息

评论

共有 条评论