Skip to content

Commit

Permalink
Resolve issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYsLab committed May 11, 2024
1 parent 55a4d0e commit 059e747
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ find = {} # Scan the project directory with the default parameters

[project]
name = "telemetrix_uno_r4"
version = "1.1.0"
version = "1.1.1"
authors = [
{ name="Alan Yorinks", email="[email protected]" },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class PrivateConstants:
FEATURES = 20
DEBUG_PRINT = 99

TELEMETRIX_VERSION = "1.00"
TELEMETRIX_VERSION = "1.1.1"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (c) 2023 Alan Yorinks All rights reserved.
Copyright (c) 2023, 2024 Alan Yorinks All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down Expand Up @@ -249,7 +249,7 @@ def __init__(self, com_port=None, arduino_instance_id=1,
# self.stepper_info_list = []
# # a list of dictionaries to hold stepper information
# for motor in range(self.max_number_of_steppers):
# self.stepper_info_list.append(self.stepper_info)
# self.stepper_info_list.append(self.stepper_info.copy())

self.the_reporter_thread.start()
self.the_data_receive_thread.start()
Expand Down Expand Up @@ -537,8 +537,8 @@ def i2c_read(self, address, register, number_of_bytes,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""

Expand Down Expand Up @@ -576,8 +576,8 @@ def i2c_read_restart_transmission(self, address, register,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class PrivateConstants:

DEBUG_PRINT = 99

TELEMETRIX_AIO_VERSION = "1.0.0"
TELEMETRIX_AIO_VERSION = "1.1.1"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (c) 2023 Alan Yorinks All rights reserved.
Copyright (c) 2023, 2024 Alan Yorinks All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down Expand Up @@ -253,7 +253,7 @@ def __init__(self, com_port=None,
# self.stepper_info_list = []
# # a list of dictionaries to hold stepper information
# for motor in range(self.max_number_of_steppers):
# self.stepper_info_list.append(self.stepper_info)
# self.stepper_info_list.append(self.stepper_info.copy())

print(f'telemetrix_uno_r4_minima_aio Version:'
f' {PrivateConstants.TELEMETRIX_AIO_VERSION}')
Expand Down Expand Up @@ -492,8 +492,8 @@ async def i2c_read(self, address, register, number_of_bytes,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""
if not callback:
Expand Down Expand Up @@ -533,8 +533,8 @@ async def i2c_read_restart_transmission(self, address, register,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""
if not callback:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class PrivateConstants:
FEATURES = 20
DEBUG_PRINT = 99

TELEMETRIX_VERSION = "1.1.0"
TELEMETRIX_VERSION = "1.1.1"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (c) 2023 Alan Yorinks All rights reserved.
Copyright (c) 2023, 2024 Alan Yorinks All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down Expand Up @@ -277,7 +277,7 @@ def __init__(self, com_port=None, arduino_instance_id=1,
# self.stepper_info_list = []
# # a list of dictionaries to hold stepper information
# for motor in range(self.max_number_of_steppers):
# self.stepper_info_list.append(self.stepper_info)
# self.stepper_info_list.append(self.stepper_info.copy())

self.the_reporter_thread.start()
self.the_data_receive_thread.start()
Expand Down Expand Up @@ -573,8 +573,8 @@ def i2c_read(self, address, register, number_of_bytes,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""

Expand Down Expand Up @@ -612,8 +612,8 @@ def i2c_read_restart_transmission(self, address, register,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class PrivateConstants:
FEATURES = 20
DEBUG_PRINT = 99

TELEMETRIX_VERSION = "1.1.0"
TELEMETRIX_VERSION = "1.1.1"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (c) 2023 Alan Yorinks All rights reserved.
Copyright (c) 2023, 2024 Alan Yorinks All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
Expand Down Expand Up @@ -286,7 +286,7 @@ def __init__(self, com_port=None,
# self.stepper_info_list = []
# # a list of dictionaries to hold stepper information
# for motor in range(self.max_number_of_steppers):
# self.stepper_info_list.append(self.stepper_info)
# self.stepper_info_list.append(self.stepper_info.copy())

print(f'telemetrix_uno_r4_wifi_aio Version:'
f' {PrivateConstants.TELEMETRIX_VERSION}')
Expand Down Expand Up @@ -545,8 +545,8 @@ async def i2c_read(self, address, register, number_of_bytes,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""
if not callback:
Expand Down Expand Up @@ -586,8 +586,8 @@ async def i2c_read_restart_transmission(self, address, register,
callback returns a data list:
[I2C_READ_REPORT, address, register, count of data bytes,
data bytes, time-stamp]
[I2C_READ_REPORT, i2c_port, number of bytes read, address, register,
bytes read..., time-stamp]
"""
if not callback:
Expand Down

0 comments on commit 059e747

Please sign in to comment.