20 lines
339 B
Markdown
20 lines
339 B
Markdown
# Micro PA50 controller
|
|
|
|
|
|
set tx off;
|
|
while (ptt is on || have input power ) {
|
|
check freq;
|
|
if freq in {
|
|
set lpf for the freq if need;
|
|
calc vswr;
|
|
if (swr is good) {
|
|
set tx on;
|
|
} else {
|
|
show wrong swr;
|
|
}
|
|
} else {
|
|
show wron freq;
|
|
set tx off;
|
|
}
|
|
}
|