Skip to content

Commit b1384c4

Browse files
committed
add cubebel-2 support
1 parent ea5eedc commit b1384c4

4 files changed

Lines changed: 517 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ The following protocols are currently supported:
3838
* `USP` - [Unified SPUTNIX protocol](https://sputnix.ru/tpl/docs/amateurs/%D0%9E%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BF%D1%80%D0%BE%D1%82%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%20USP%20v1.04.pdf)
3939
* `AX.25`
4040
* `CSP` - [Cubesat Space Protocol](https://github.com/libcsp/libcsp)
41+
* `CSUM` - [University Space Center of Montpellier platform (CSUM)](http://csu.edu.umontpellier.fr/)
42+
* `CubeBel-2`
4143
* `D-Star ONE` - [D-Star ONE Protocol](https://web.archive.org/web/20190807184852/http://www.d-star.one/downloads/D-Star%20ONE%20telemetry%20frame%20format.pdf)
4244
* `CitGardens-02` - [CIT Gardens-02 project](https://sites.google.com/view/gardens-02/english_ver/home)
4345
* `GreenCube` - [GreenCube](https://www.s5lab.space/index.php/decoding-ledsat-2/)

README.ru.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ https://r4uab.ru/settings-soundmodem/
3838
* `USP` - [Unified SPUTNIX protocol](https://sputnix.ru/tpl/docs/amateurs/%D0%9E%D0%BF%D0%B8%D1%81%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BF%D1%80%D0%BE%D1%82%D0%BE%D0%BA%D0%BE%D0%BB%D0%B0%20USP%20v1.04.pdf)
3939
* `AX.25`
4040
* `CSP` - [Cubesat Space Protocol](https://github.com/libcsp/libcsp)
41+
* `CSUM` - [University Space Center of Montpellier platform (CSUM)](http://csu.edu.umontpellier.fr/)
42+
* `CubeBel-2`
4143
* `D-Star ONE` - [D-Star ONE Protocol](https://web.archive.org/web/20190807184852/http://www.d-star.one/downloads/D-Star%20ONE%20telemetry%20frame%20format.pdf)
4244
* `CitGardens-02` - [CIT Gardens-02 project](https://sites.google.com/view/gardens-02/english_ver/home)
4345
* `GreenCube` - [GreenCube](https://www.s5lab.space/index.php/decoding-ledsat-2/)

SatsDecoder/systems/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
from SatsDecoder.systems.ax25 import *
1111
from SatsDecoder.systems.cit_gardens_02 import *
1212
from SatsDecoder.systems.csp import *
13+
from SatsDecoder.systems.csum import *
14+
from SatsDecoder.systems.cubebel2 import *
1315
from SatsDecoder.systems.dstar_one import *
1416
from SatsDecoder.systems.geoscan import *
1517
from SatsDecoder.systems.greencube import *
@@ -32,6 +34,8 @@
3234
'ax25',
3335
'cit_gardens_02',
3436
'csp',
37+
'csum',
38+
'cubebel2',
3539
'greencube',
3640
'dstar_one',
3741
'ledsat',

0 commit comments

Comments
 (0)