33 lines
762 B
Python
Executable file
33 lines
762 B
Python
Executable file
#! /usr/bin/env python
|
|
# -*- coding: iso8859-15 -*-
|
|
|
|
""" Défini les transpondeurs à associer à chacune des cartes """
|
|
|
|
from sat_base import *
|
|
from socket import gethostname
|
|
|
|
host = gethostname()
|
|
|
|
conf = []
|
|
|
|
if host == 'canard' :
|
|
conf = [ TNT_R4_498000(0) ,
|
|
Hotbird_12476(1) ,
|
|
Hotbird_10911(2) ,
|
|
Hotbird_12597(3) ,
|
|
Hotbird_12577(4)
|
|
]
|
|
if host == 'lapin' :
|
|
conf = [ Hotbird_11727(0) ,
|
|
Hotbird_11604(1) ,
|
|
TNT_R1_586000(2) ,
|
|
TNT_R6_562000(3) ,
|
|
TNT_R2_474000(4) ,
|
|
TNT_R3_522000(5) ]
|
|
if host == 'oie' :
|
|
conf = [ Hotbird_12245(0) ,
|
|
Hotbird_11137(1) ,
|
|
Hotbird_10873(2) ,
|
|
Hotbird_11304(3) ,
|
|
Hotbird_11623(4) ]
|
|
|