0
0
mirror of https://github.com/openwrt/luci.git synced 2025-02-24 20:59:02 +00:00
Weikai Kong 15a8136ace luci-app-dawn: Fix getChannelFromFrequency for 6GHz
For (5.9-)6GHz channels
( Center Frequency - 5950 ) / 5 = channel_number

e.g. ( 5955 - 5950 ) / 5 = Channel 1

Signed-off-by: Weikai Kong <priv@pppig236.com>
2025-01-05 14:06:54 +00:00

94 lines
2.2 KiB
JavaScript

'use strict';
'require baseclass';
'require rpc';
const callDawnGetNetwork = rpc.declare({
object: 'dawn',
method: 'get_network',
expect: { }
});
const callDawnGetHearingMap = rpc.declare({
object: 'dawn',
method: 'get_hearing_map',
expect: { }
});
const callHostHints = rpc.declare({
object: 'luci-rpc',
method: 'getHostHints',
expect: { }
});
function isDawnRPCAvailable() {
return rpc.list("dawn").then(function(signatures) {
return 'dawn' in signatures && 'get_network' in signatures.dawn && 'get_hearing_map' in signatures.dawn;
});
}
function getAvailableText(available) {
return ( available ? _('Available') : _('Not available') );
}
function getYesText(yes) {
return ( yes ? _('Yes') : _('No') );
}
function getChannelFromFrequency(freq) {
if (freq <= 2400) {
return 0;
}
else if (freq == 2484) {
return 14;
}
else if (freq < 2484) {
return (freq - 2407) / 5;
}
else if (freq >= 4910 && freq <= 4980) {
return (freq - 4000) / 5;
}
else if (freq <= 5935) {
return (freq - 5000) / 5;
}
else if (freq <= 45000) {
return (freq - 5950) / 5;
}
else if (freq >= 58320 && freq <= 64800) {
return (freq - 56160) / 2160;
}
else {
return 0;
}
}
function getFormattedNumber(num, decimals, divider = 1) {
return (num/divider).toFixed(decimals);
}
function getHostnameFromMAC(hosthints, mac) {
return ( hosthints[mac] && hosthints[mac].name ? hosthints[mac].name + ' (' + mac + ')' : mac );
}
function getDawnServiceNotRunningErrorMessage() {
return E('div', { 'class': 'alert-message fade-in warning' }, [
E('h4', _('DAWN service unavailable')),
E('p', _('Unable to query the DAWN service via ubus, the service appears to be stopped.')),
E('a', { 'href': L.url('admin/system/startup') }, _('Check Startup services'))
]);
}
return L.Class.extend({
callDawnGetNetwork: callDawnGetNetwork,
callDawnGetHearingMap: callDawnGetHearingMap,
callHostHints: callHostHints,
isDawnRPCAvailable: isDawnRPCAvailable,
getAvailableText: getAvailableText,
getYesText: getYesText,
getChannelFromFrequency: getChannelFromFrequency,
getFormattedNumber: getFormattedNumber,
getHostnameFromMAC: getHostnameFromMAC,
getDawnServiceNotRunningErrorMessage: getDawnServiceNotRunningErrorMessage
});