mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-04-11 01:13:36 +00:00
insert a Lots of Docu in includes
This commit is contained in:
parent
c22400420a
commit
5394bceedf
9 changed files with 255 additions and 30 deletions
|
|
@ -1,9 +1,28 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: cp1252 -*-
|
||||
|
||||
"""
|
||||
Search for decode String and call the right decoder Funtion
|
||||
|
||||
@author: Jens Herrmann
|
||||
|
||||
@requires: none
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
||||
def decode(freq, decoded):
|
||||
"""
|
||||
Search for decode String and call the right decoder Function
|
||||
|
||||
@type freq: string
|
||||
@param freq: frequency of the SDR Stick
|
||||
@type decoded: string
|
||||
@param decoded: RAW Information from Multimon-NG
|
||||
|
||||
@return: nothing
|
||||
@exception: Exception if decoder File call failed
|
||||
"""
|
||||
try:
|
||||
#FMS Decoder Section
|
||||
#check FMS: -> check CRC -> validate -> check double alarm -> log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue