HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
54 | office | 1 | using System.Collections.Generic; |
41 | office | 2 | using System.Linq; |
3 | |||
4 | namespace HamBook.Radios.Yaesu.FT_891 |
||
5 | { |
||
6 | [Radio("Yaesu FT-891")] |
||
7 | public class MemoryBanks : Generic.MemoryBanks |
||
8 | { |
||
9 | public override IEnumerable<string> GetMemoryBanks() |
||
10 | { |
||
54 | office | 11 | foreach (var memoryBank in Enumerable.Range(1, 99)) yield return $"{memoryBank:000}"; |
41 | office | 12 | |
54 | office | 13 | foreach (var i in Enumerable.Range(1, 9)) yield return $"P{i}L"; |
41 | office | 14 | |
54 | office | 15 | foreach (var i in Enumerable.Range(1, 9)) yield return $"P{i}U"; |
41 | office | 16 | } |
17 | } |
||
54 | office | 18 | } |