mirror of
https://github.com/4IceG/luci-app-3ginfo-lite.git
synced 2026-04-25 11:25:50 +03:00
[GH-ISSUE #25] Provide more information for Huawei E3372 via AT commands #18
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/luci-app-3ginfo-lite#18
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @patrakov on GitHub (Oct 16, 2022).
Original GitHub issue: https://github.com/4IceG/luci-app-3ginfo-lite/issues/25
Huawei E3372 reflashed to stick mode is already supported and has its own 3ginfo-addon file:
Currently, it is missing the display of IMEI, IMSI, ICCID, TAC, and the active band.
It can provide IMEI either as a part of its response to
ATI, or as a response toAT+GSN.Regarding IMSI:
Regarding ICCID:
I could not find how to request TAC.
There is no dedicated command to display the band used, but there is
AT^HFREQINFO?which displays frequency information which can be a (more detailed) substitute. I could not find any documentation specific to E3372, but http://download-c.huawei.com/download/downloadCenter?downloadId=100630 contains this command....which means: no unsolicited reporting, LTE mode, LTE band 1, downlink frequency point (EARFCN) 425, downlink frequency 2152.5 MHz, downlink bandwidth 15 MHz, uplink frequency point (EARFCN) 18425, downlink frequency 1962.5 MHz, downlink bandwidth 15 MHz.
@4IceG commented on GitHub (Oct 16, 2022):
Ok, I'll add this when I have some free time for the week. TAC will probably double with LAC if it can't be read.
@patrakov commented on GitHub (Oct 16, 2022):
LAC is actually retrieved successfully, but TAC is missing.
@patrakov commented on GitHub (Oct 20, 2022):
I have tried the latest release, it works. Now it says:
So PCI is missing. I have tried the commands from the PDF that might return it, but they all fail (because the PDF is for a different Huawei modem), so well, it is not obtainable.
All other information that I requested is correctly reported.
@patrakov commented on GitHub (Oct 20, 2022):
Oops, the chip temperature is missing.
I have manually copy-pasted the awk command, and it prints the correct temperature. So the bug must be not in the parsing of the AT command response, but in how it is propagated to the json.
@patrakov commented on GitHub (Oct 20, 2022):
The problem is due to the inappropriate reuse of the
$Ovariable:@4IceG commented on GitHub (Oct 20, 2022):
Ok thanks for the tests. I'll fix it tomorrow.
Can't find a command for reading PCI so left blank.
@4IceG commented on GitHub (Oct 21, 2022):
It should be OK.