Changes between Version 81 and Version 82 of wireless/modem
- Timestamp:
- 12/14/2021 12:17:42 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wireless/modem
v81 v82 1922 1922 1923 1923 ==== Telit FN980M PCIe Mode 1924 Many people want to use this modem with PCIe. This requires a new MHI driver only in latest kernels (5.15+) available on Venice SBCs. Contact Gateworks support for other board families. 1925 1926 1924 This modem supports PCIe, which is new for modems. PCIe is valuable for faster bus speeds compared to USB. This requires a new MHI driver only in latest kernels (5.15+) available on Venice SBCs. Contact Gateworks support for other board families. 1925 1926 Requirements: 1927 * Venice 1928 * Latest 5.15 kernel or newer from Gateworks 1927 1929 1928 1930 Install udhcpc … … 1937 1939 AT#REBOOT 1938 1940 }}} 1941 1939 1942 To issue the AT command without opening the serial console of the modem, use the code below (assuming modem AT port is ttyUSB2: 1940 1943 {{{ … … 1951 1954 1952 1955 1953 Check if the modem is registering with qmi:1956 Check if the modem is registering and see the SIM and network: 1954 1957 {{{ 1955 1958 root@focal-venice:~# qmicli -d /dev/wwan0qmi0 --nas-get-serving-system --device-open-qmi … … 2003 2006 }}} 2004 2007 2005 If you want to see your IP use the below, replacing the cid with what was issued above: 2008 Get IP address for modem interface mhi_hwip0: 2009 {{{ 2010 udhcpc -q -f -n -i mhi_hwip0 2011 }}} 2012 2013 If you want to see your IP manually, use the below command, replacing the cid with what was issued above: 2006 2014 {{{ 2007 2015 qmicli --device /dev/wwan0qmi0 --client-no-release-cid --client-cid=16 --wds-get-current-settings --device-open-qmi 2008 2016 }}} 2009 2017 2010 Lastly get IP address for modem interface mhi_hwip0: 2011 {{{ 2012 udhcpc -q -f -n -i mhi_hwip0 2013 }}} 2018 Confirm the interface is up with an IP with the ifconfig command. 2019 2020 2014 2021 2015 2022