protocol/aprs: refactored
Some checks failed
Run tests / test (1.25) (push) Failing after 1m37s
Run tests / test (stable) (push) Failing after 1m37s

This commit is contained in:
2026-03-02 22:28:17 +01:00
parent 452f521866
commit 63040a44b3
24 changed files with 3506 additions and 1533 deletions

12
protocol/aprs/weather.go Normal file
View File

@@ -0,0 +1,12 @@
package aprs
type weatherDecoder struct{}
func (weatherDecoder) CanDecode(frame Frame) bool {
switch frame.Raw.Type() {
case '!', '#', '$', '*':
return true
default:
return false
}
}