From owner-freebsd-stable@FreeBSD.ORG Wed Sep 27 14:10:11 2006 Return-Path: X-Original-To: stable@freebsd.org Delivered-To: freebsd-stable@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95A7216A412 for ; Wed, 27 Sep 2006 14:10:11 +0000 (UTC) (envelope-from dudu.meyer@gmail.com) Received: from hu-out-0506.google.com (hu-out-0506.google.com [72.14.214.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9736B43D76 for ; Wed, 27 Sep 2006 14:10:10 +0000 (GMT) (envelope-from dudu.meyer@gmail.com) Received: by hu-out-0506.google.com with SMTP id 34so645032hui for ; Wed, 27 Sep 2006 07:10:09 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=m7OMda65K/vyy5Tf8UzatjFqQVdWXtDl37dHMz6yoivpycjfn9liVSocjUXySvmc9AazGxiePd5skMxLQSIjmfVY5/F8velhFtpoqU8YOG8NKENna9+MVOdgrUNP7hGX416hZHUtM9FNgm+WG2IEo0gx+ZA7PqQ9NljapMtR6FI= Received: by 10.66.244.10 with SMTP id r10mr28977ugh; Wed, 27 Sep 2006 07:10:09 -0700 (PDT) Received: by 10.66.248.4 with HTTP; Wed, 27 Sep 2006 07:10:08 -0700 (PDT) Message-ID: Date: Wed, 27 Sep 2006 11:10:08 -0300 From: "Eduardo Meyer" To: stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: 802.11 RSSI value displayed from ifconfig(8) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2006 14:10:11 -0000 Hello, I would like to convert RSSI to dBm (in fact I would love if ifconfig cound display SNR in dBM), so I would like to know if this formula is any right: /* Calculate the RSSI Value */ V_RSSI = 3.0 * (RSSI_VAL/1024); RSSI_dBM = (int8_t) ((-50.0 * V_RSSI) - 45.5); And if there are any other tools which can help me finding out signal stenght, when I am acting as an access point.