Skip to content
Snippets Groups Projects
Commit 8067a77f authored by Jan-Niklas Burfeind's avatar Jan-Niklas Burfeind
Browse files

mt7621: add Wavlink Wavlink WS-WN572HP3 4G

parent 40cf3bc9
No related branches found
No related tags found
No related merge requests found
...@@ -368,6 +368,10 @@ ramips-mt7621 ...@@ -368,6 +368,10 @@ ramips-mt7621
- EdgeRouter X-SFP - EdgeRouter X-SFP
- UniFi 6 Lite - UniFi 6 Lite
* Wavlink
- WS-WN572HP3 (4G)
* ZBT * ZBT
- WG3526-16M - WG3526-16M
......
...@@ -50,6 +50,10 @@ elseif platform.match('ipq40xx', 'generic', { ...@@ -50,6 +50,10 @@ elseif platform.match('ipq40xx', 'generic', {
'glinet,gl-ap1300', 'glinet,gl-ap1300',
}) then }) then
setup_ncm_qmi('/dev/cdc-wdm0', 'qmi', 15) setup_ncm_qmi('/dev/cdc-wdm0', 'qmi', 15)
elseif platform.match('ramips', 'mt7621', {
'wavlink,ws-wn572hp3-4g',
}) then
setup_ncm_qmi('/dev/ttyUSB2', 'ncm', 15)
end end
uci:save('network') uci:save('network')
...@@ -61,6 +61,7 @@ function M.is_outdoor_device() ...@@ -61,6 +61,7 @@ function M.is_outdoor_device()
return true return true
elseif M.match('ramips', 'mt7621', { elseif M.match('ramips', 'mt7621', {
'wavlink,ws-wn572hp3-4g',
'zyxel,nwa55axe', 'zyxel,nwa55axe',
}) then }) then
return true return true
...@@ -78,6 +79,10 @@ function M.is_cellular_device() ...@@ -78,6 +79,10 @@ function M.is_cellular_device()
'glinet,gl-ap1300', 'glinet,gl-ap1300',
}) then }) then
return true return true
elseif M.match('ramips', 'mt7621', {
'wavlink,ws-wn572hp3-4g',
}) then
return true
end end
return false return false
......
...@@ -59,6 +59,11 @@ device('ubiquiti-unifi-6-lite', 'ubnt_unifi-6-lite', { ...@@ -59,6 +59,11 @@ device('ubiquiti-unifi-6-lite', 'ubnt_unifi-6-lite', {
factory = false, factory = false,
}) })
-- Wavlink
device('wavlink-ws-wn572hp3-4g', 'wavlink_ws-wn572hp3-4g', {
factory = false,
})
-- Xiaomi -- Xiaomi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment