Added icom Reverse CW

This commit is contained in:
Joerg (DJ7NT)
2025-02-19 07:06:18 +01:00
committed by GitHub
parent 9e2d633326
commit 0abfcfe973

View File

@@ -600,10 +600,11 @@ class API extends CI_Controller {
$operator = $user_id;
}
// Special Case: Yaesu Radio's use CW-U and CW-L which aren't official ADIF Modes. Flex 3000 uses CWU and CWL. We override this here to CW
// Special Case: Yaesu Radio's use CW-U and CW-L which aren't official ADIF Modes. Flex 3000 uses CWU and CWL. Icom uses CW-R. We override this here to CW
switch (strtoupper($obj['mode'] ?? '')) {
case 'CW-U':
case 'CW-L':
case 'CW-R':
case 'CWU':
case 'CWL':
$obj['mode'] = 'CW';