File: mirsat1.py

package info (click to toggle)
gr-satellites 5.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,836 kB
  • sloc: python: 29,546; cpp: 5,448; ansic: 1,247; sh: 118; makefile: 24
file content (164 lines) | stat: -rw-r--r-- 6,390 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# Copyright 2021 Daniel Estevez <daniel@destevez.net>
#
# This file is part of gr-satellites
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

from construct import *

from ..adapters import LinearAdapter, AffineAdapter
from .ax25 import Header as AX25Header


BeaconA = BitStruct(
    Bytewise(Const(b'\x00')),  # start byte
    'obc_boot_image' / BitsInteger(8),
    'onboard_time' / BitsInteger(32),
    'uptime' / BitsInteger(32),
    'spacecraft_mode' / BitsInteger(3),
    'separation_seq_state' / BitsInteger(4),
    'solar_array_deploy' / BitsInteger(4)[4],
    'antenna_deploy' / BitsInteger(16)[8],
    'adm_soft_fire_count' / BitsInteger(8),
    'adm_hard_fire_count' / BitsInteger(8),
    'adm_tlm' / BitsInteger(80)[10],
    'sadm_check_count' / BitsInteger(5),
    'sadm_telemetry' / BitsInteger(64)[10],
    'i2c_nack_addr_count' / BitsInteger(32),
    'i2c_hw_state_err_count' / BitsInteger(32),
    'i2c_isr_err_count' / BitsInteger(32),
    'battery_current_dir' / Enum(BitsInteger(1), discharging=0, charging=1),
    'battery_current_5v' / LinearAdapter(1/1.327547, BitsInteger(10)),
    'battery_current_msb_3v3' / BitsInteger(1)
    )


class SignMagnitudeAdapter16(Adapter):
    def _encode(self, obj, context, path=None):
        mag = abs(obj) & 0x7fff
        sig = 1 if obj < 0 else 0
        return (sig << 15) | mag

    def _decode(self, obj, context, path=None):
        mag = obj & 0x7fff
        return -mag if obj & 0x8000 else mag


SignMagnitude16 = SignMagnitudeAdapter16(Int16ub)


class SignMagnitudeAdapter8(Adapter):
    def _encode(self, obj, context, path=None):
        mag = abs(obj) & 0x7f
        sig = 1 if obj < 0 else 0
        return (sig << 7) | mag

    def _decode(self, obj, context, path=None):
        mag = obj & 0x7f
        return -mag if obj & 0x80 else mag


SignMagnitude8 = SignMagnitudeAdapter8(Int8ub)

BeaconPartB = BitStruct(
    'battery_current_lsbs_3v3' / BitsInteger(9),
    'battery_current_vbat' / LinearAdapter(1/14.662757, BitsInteger(10)),
    'battery_voltage_3v3' / LinearAdapter(1/0.004311, BitsInteger(10)),
    'battery_voltage_5v' / LinearAdapter(1/0.005865, BitsInteger(10)),
    'battery_voltage_vbat' / LinearAdapter(1/0.008993, BitsInteger(10)),
    'battery_temp' / AffineAdapter(1/0.3976, 238.57/0.3976,
                                   BitsInteger(10)),
    'solar_current' / LinearAdapter(1/0.977517107, BitsInteger(10)),
    # Last 5 solar_voltage's unused
    'solar_voltage' / LinearAdapter(1/0.009971, BitsInteger(10))[9],
    'eps_bus_voltage_vbat' / LinearAdapter(1/0.008978, BitsInteger(10)),
    'eps_bus_voltage_3v3' / LinearAdapter(1/0.00431085, BitsInteger(10)),
    'eps_bus_voltage_5v' / LinearAdapter(1/0.005865103, BitsInteger(10)),
    'eps_bus_voltage_12v' / LinearAdapter(1/0.013489736, BitsInteger(10)),
    'eps_bus_current_vbat' / LinearAdapter(1/2.07, BitsInteger(10)),
    'eps_bus_current_3v3' / LinearAdapter(1/5.236698785, BitsInteger(10)),
    'eps_bus_current_5v' / LinearAdapter(1/5.236698785, BitsInteger(10)),
    'eps_bus_current_12v' / LinearAdapter(1/2.07, BitsInteger(10)),
    'adcs_raw_gyro' / Bytewise(LinearAdapter(-1/0.0104166,
                                             SignMagnitude16)[3]),
    'adcs_mtq_dir_duty' / BitsInteger(8)[6],
    'adcs_status' / BitsInteger(16),
    'adcs_bus_voltage_5v' / LinearAdapter(1/0.000152587, BitsInteger(16)),
    'adcs_bus_voltage_3v3' / LinearAdapter(1/0.0000944, BitsInteger(16)),
    'adcs_bus_voltage_1v5' / LinearAdapter(1/0.000152587, BitsInteger(16)),
    'adcs_bus_current_5v' / LinearAdapter(1/0.00000600472, BitsInteger(16)),
    'adcs_bus_current_3v3' / LinearAdapter(1/0.0000381, BitsInteger(16)),
    'adcs_bus_current_1v5' / LinearAdapter(1/0.0000244230769230769,
                                           BitsInteger(16)),
    'adcs_board_temp' / AffineAdapter(
        1/0.00762, 273.150/0.00762, BitsInteger(16)),
    'adcs_adc_ref' / BitsInteger(16),
    'adcs_sensor_current' / LinearAdapter(1/0.0000015698342656893,
                                          BitsInteger(16)),
    'adcs_mtq_current' / LinearAdapter(1/0.00000601213123029945,
                                       BitsInteger(16)),
    'adcs_array_temp' / AffineAdapter(1/0.00762, 273.150/0.00762,
                                      BitsInteger(16))[6],
    'adcs_css_raw' / LinearAdapter(1/0.0415032679738562,
                                   BitsInteger(16))[6],
    'fss_active' / BitsInteger(2)[6],
    'css_active_selected' / BitsInteger(2)[6],
    'adcs_sun_processed' / AffineAdapter(
        1/0.000030517578125, 1/0.000030517578125, BitsInteger(16))[3],
    'reserved' / BitsInteger(16)[4],
    'adcs_detumble_counter' / BitsInteger(16),
    'adcs_mode' / Enum(BitsInteger(16), standby=0, detumble=1,
                       coarse_point=2, fine_point=3),
    'adcs_state' / Enum(BitsInteger(16), nadir=0, sun=1, velocity=2,
                        LLA=3, moon=4),
    'reservedA' / BitsInteger(10),
    'reservedB' / BitsInteger(4),
    'reservedC' / BitsInteger(16),
    'reservedD' / BitsInteger(3),
    'reservedE' / BitsInteger(4),
    'cmc_rx_lock' / Flag,
    'cmc_rx_frame_count' / BitsInteger(16),
    'cmc_rx_packet_count' / BitsInteger(16),
    'cmc_rx_dropped_error_count' / BitsInteger(16),
    'cmc_rx_crc_error_count' / BitsInteger(16),
    'cmc_rx_overrun_error_count' / BitsInteger(8),
    'cmc_rx_protocol_error_count' / BitsInteger(16),
    'cmc_smps_temperature' / Bytewise(SignMagnitude8),
    'cmc_pa_temperature' / Bytewise(SignMagnitude8),
    'ax25_mux_channel_enable' / Flag[3],
    'digipeater_enable' / Flag,
    'pacsat_broadcast_enable' / Flag,
    'pacsat_broadcast_in_progress' / Flag,
    'param_valid_flags' / Flag[40],
    Padding(5),
    'checksum' / BitsInteger(16),
)

BeaconHeader = Struct(
    'packet_type' / Int8ub,
    'apid' / Int8ub,
    'sequence_count' / Int16ub,
    'length' / Int16ub,
    'reserved' / Int8ub,
    'service_type' / Const(b'\x03'),
    'service_subtype' / Const(b'\x19')
    )

BeaconPartA = Struct(
    'beacon_header' / BeaconHeader,
    'beacon' / BeaconA,
    )

mirsat1 = Struct(
    'ax25_header' / AX25Header,
    'telemetry' / If(
        this.ax25_header.pid == 0xF0,
        Struct(
            'header' / Bytes(6),
            'beacon' / Select(BeaconPartA, BeaconPartB)
            ))
    )