Commit 0e1e97e1 authored by Romolo Politi's avatar Romolo Politi
Browse files

Update to version 0.2.2

parent 2e7dae85
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
Version 0.2.2
* bug fix, old call to database removed
* update of the user manual

Version 0.2.1
* minor bugs fixed

Version 0.2
* Implemented the Telecommand Packet Header 
 No newline at end of file
+6 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

SCOSpy is a python library for the Satellite Control and Operation System 2000 (SCOS-2000) header written as hexadecimal string.

Current version is 0.2.1
Current version is 0.2.2

## Library Installation
```bash
@@ -11,7 +11,7 @@ $ pip install SCOSpy
## Usage

``` python
from SCOS import *
from SCOS.SCOS import *
a = SCOS(packet)
```
where *packet* is the hexadecimal string rapresentation of the Telemetry packet.
@@ -206,6 +206,10 @@ If the _**CHP.PType**_ is equal to 3, the packet is a event. In this case is pre

## Change Log

### Version 0.2.2
+ bug fix, old call to database removed
+ update of the user manual

### Version 0.2.1

+ minor bugs fixed
+1 −1
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ class RouteID:
class Qualifier:
    def __init__(self,dut,code):
        self.Code = code
        c = conn.cursor()
        #c = conn.cursor()
        ser=str(code)+str(dut)
        self.Descriprion=s2kDB["qualifier"][ser]