forked from NordicSemiconductor/pc-nrfutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
201 lines (169 loc) · 6.19 KB
/
util.py
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
from __future__ import print_function
#
# Copyright (c) 2016 Nordic Semiconductor ASA
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this
# list of conditions and the following disclaimer in the documentation and/or
# other materials provided with the distribution.
#
# 3. Neither the name of Nordic Semiconductor ASA nor the names of other
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# 4. This software must only be used in or with a processor manufactured by Nordic
# Semiconductor ASA, or in or with a processor manufactured by a third party that
# is used in combination with a processor manufactured by Nordic Semiconductor.
#
# 5. Any software provided in binary or object form under this license must not be
# reverse engineered, decompiled, modified and/or disassembled.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Nordic libraries
from pc_ble_driver_py.exceptions import NordicSemiException
from enum import Enum
# From http://stackoverflow.com/questions/4472901/python-enum-class-with-tostring-fromstring
class NordicEnum(Enum):
@classmethod
def tostring(cls, val):
for k,v in vars(cls).iteritems():
if v==val:
return k
@classmethod
def fromstring(cls, str):
return getattr(cls, str.upper(), None)
# TODO: Create query function that maps query-result strings with functions
def query_func(question, default=False):
"""
Ask a string question
No input defaults to "no" which results in False
"""
valid = {"yes": True, "y": True, "no": False, "n": False}
if default is True:
prompt = " [Y/n]"
else:
prompt = " [y/N]"
while True:
print("%s %s" % (question, prompt))
choice = raw_input().lower()
if choice == '':
return default
elif choice in valid:
return valid[choice]
else:
print("Please respond with y/n")
def convert_uint16_to_array(value):
"""
Converts a int to an array of 2 bytes (little endian)
:param int value: int value to convert to list
:return list[int]: list with 2 bytes
"""
byte0 = value & 0xFF
byte1 = (value >> 8) & 0xFF
return [byte0, byte1]
def convert_uint32_to_array(value):
"""
Converts a int to an array of 4 bytes (little endian)
:param int value: int value to convert to list
:return list[int]: list with 4 bytes
"""
byte0 = value & 0xFF
byte1 = (value >> 8) & 0xFF
byte2 = (value >> 16) & 0xFF
byte3 = (value >> 24) & 0xFF
return [byte0, byte1, byte2, byte3]
def slip_parts_to_four_bytes(seq, dip, rp, pkt_type, pkt_len):
"""
Creates a SLIP header.
For a description of the SLIP header go to:
http://developer.nordicsemi.com/nRF51_SDK/doc/7.2.0/s110/html/a00093.html
:param int seq: Packet sequence number
:param int dip: Data integrity check
:param int rp: Reliable packet
:param pkt_type: Payload packet
:param pkt_len: Packet length
:return: str with SLIP header
"""
ints = [0, 0, 0, 0]
ints[0] = seq | (((seq + 1) % 8) << 3) | (dip << 6) | (rp << 7)
ints[1] = pkt_type | ((pkt_len & 0x000F) << 4)
ints[2] = (pkt_len & 0x0FF0) >> 4
ints[3] = (~(sum(ints[0:3])) + 1) & 0xFF
return ''.join(chr(b) for b in ints)
def int32_to_bytes(value):
"""
Converts a int to a str with 4 bytes
:param value: int value to convert
:return: str with 4 bytes
"""
ints = [0, 0, 0, 0]
ints[0] = (value & 0x000000FF)
ints[1] = (value & 0x0000FF00) >> 8
ints[2] = (value & 0x00FF0000) >> 16
ints[3] = (value & 0xFF000000) >> 24
return ''.join(chr(b) for b in ints)
def int16_to_bytes(value):
"""
Converts a int to a str with 4 bytes
:param value: int value to convert
:return: str with 4 bytes
"""
ints = [0, 0]
ints[0] = (value & 0x00FF)
ints[1] = (value & 0xFF00) >> 8
return ''.join(chr(b) for b in ints)
def slip_decode_esc_chars(data):
"""Decode esc characters in a SLIP package.
Replaces 0xDBDC with 0xCO and 0xDBDD with 0xDB.
:return: str decoded data
:type str data: data to decode
"""
result = []
while len(data):
char = data.pop(0)
if char == 0xDB:
char2 = data.pop(0)
if char2 == 0xDC:
result.append(0xC0)
elif char2 == 0xDD:
result.append(0xDB)
else:
raise NordicSemiException('Char 0xDB NOT followed by 0xDC or 0xDD')
else:
result.append(char)
return result
def slip_encode_esc_chars(data_in):
"""Encode esc characters in a SLIP package.
Replace 0xCO with 0xDBDC and 0xDB with 0xDBDD.
:type str data_in: str to encode
:return: str with encoded packet
"""
result = []
data = []
for i in data_in:
data.append(ord(i))
while len(data):
char = data.pop(0)
if char == 0xC0:
result.extend([0xDB, 0xDC])
elif char == 0xDB:
result.extend([0xDB, 0xDD])
else:
result.append(char)
return ''.join(chr(i) for i in result)