Skip to content

Commit ff5f0e7

Browse files
committed
fix attribute address
1 parent e53021d commit ff5f0e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tockloader/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ def get_all_attributes (self):
11771177
def chunks(l, n):
11781178
for i in range(0, len(l), n):
11791179
yield l[i:i + n]
1180-
raw = self.read_range(0xfc00, 64*16)
1180+
raw = self.read_range(0x600, 64*16)
11811181
return [self._decode_attribute(r) for r in chunks(raw, 64)]
11821182

11831183
# Set a single attribute.

0 commit comments

Comments
 (0)