summaryrefslogtreecommitdiffstats
path: root/usr/local/bin
diff options
context:
space:
mode:
authorsmos <seth.mos@dds.nl>2012-05-23 12:15:23 +0200
committersmos <seth.mos@dds.nl>2012-05-23 12:15:23 +0200
commit99f95f7d3be4b85dcbd3c15455c6fbd704b6fa73 (patch)
tree72c4550a00de06966d2700a050da1eff4452a11e /usr/local/bin
parentfe7fef6418ff469a09c1dee1c1704240ae0e4633 (diff)
downloadpfsense-99f95f7d3be4b85dcbd3c15455c6fbd704b6fa73.zip
pfsense-99f95f7d3be4b85dcbd3c15455c6fbd704b6fa73.tar.gz
Add the 3G mode display, really needs a function that translates these into sane display numbers for strength and mode.
The mode is actually a combination of LED color 4 = blue(idle), 5 = cyan(connected), and submode 7 = HSDPA I need to find some proper documentation, really.
Diffstat (limited to 'usr/local/bin')
-rwxr-xr-xusr/local/bin/3gstats.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr/local/bin/3gstats.php b/usr/local/bin/3gstats.php
index c63a014..bea0461 100755
--- a/usr/local/bin/3gstats.php
+++ b/usr/local/bin/3gstats.php
@@ -9,7 +9,8 @@ if(empty($argv[1])) {
/* Huawei example */
$device = "/dev/{$argv[1]}";
$statfile = "/tmp/3gstats.{$argv[2]}";
-$header = "#seconds,rssi,mode,upstream,downstream,sentbytes,receivedbyts,bwupstream,bwdownstream\n";
+/* mode is a comma seperated value, thus submode is born */
+$header = "#seconds,rssi,mode,submode,upstream,downstream,sentbytes,receivedbyts,bwupstream,bwdownstream\n";
$i = 0;
@@ -19,15 +20,17 @@ if(! $handle) {
echo "Can not open modem stats device\n";
exit(1);
}
-$record['mode'] = 0;
-$record['rssi'] = 0;
+
$record['time'] = 0;
+$record['rssi'] = 0;
+$record['mode'] = "0,0";
$record['upstream'] = 0;
$record['downstream'] = 0;
$record['sent'] = 0;
$record['received'] = 0;
$record['bwupstream'] = 0;
$record['bwdownstream'] = 0;
+
while(true) {
$string = "";
$string = fgets($handle, 256);
OpenPOWER on IntegriCloud