-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81f9888
commit 922188b
Showing
19 changed files
with
394 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
## v1.0.1 | ||
* Changed maximum line length from 80 to 120. This change does not apply to the code's documentation | ||
* Using "not in" and "is not None" | ||
* Correcting firmware version in eeprom_firmware | ||
* Adding callbacks | ||
* Setting logger name to 'rava' | ||
* Changed health startup results format | ||
* Including hardware float generation | ||
- Changed maximum line length from 80 to 120. This change does not apply to the code's documentation | ||
- Using "not in" and "is not None" | ||
- Correcting firmware version in eeprom_firmware | ||
- Adding callbacks | ||
- Setting logger name to 'rava' | ||
- Changed health startup results format | ||
- Including hardware float generation | ||
|
||
## v1.0.2 | ||
* Checking for n > 0 in data generation | ||
* Max n of pulse counts, bytes, ints, and floats changed to 2^16 (instead of 2^32) | ||
* Improved the disconnection detection methodology | ||
* Corrected the int_delta in integers generation | ||
- Checking for n > 0 in data generation | ||
- Max n of pulse counts, bytes, ints, and floats changed to 2^16 (instead of 2^32) | ||
- Improved the disconnection detection methodology | ||
- Corrected the int_delta in integers generation | ||
|
||
## v1.1.0 | ||
* Adding numpy requirement | ||
* Changing parameter list_output to output_type | ||
* Including acq submodule for acquiring data from a RAVA device | ||
* Including acq_pcs.py, acq_bytes.py, acq_ints.py, and acq_floats.py to examples/ | ||
* Including tk submodule for GUI apps defining RAVA_APP and RAVA_SUBAPP classes | ||
* Including tk.acq used to evoke the tk acquire subapp via python3 -m rng_rava.tk.acq | ||
* Including tk.ctrlp used to evoke the tk control panel subapp via python3 -m rng_rava.tk.ctrlp | ||
- Adding numpy requirement | ||
- Changing parameter list_output to output_type | ||
- Including acq submodule for acquiring data from a RAVA device | ||
- Including acq_pcs.py, acq_bytes.py, acq_ints.py, and acq_floats.py to examples/ | ||
- Including tk submodule for GUI apps defining RAVA_APP and RAVA_SUBAPP classes | ||
- Including tk.acq used to evoke the tk acquire subapp via python3 -m rng_rava.tk.acq | ||
- Including tk.ctrlp used to evoke the tk control panel subapp via python3 -m rng_rava.tk.ctrlp | ||
|
||
## v1.2.0 | ||
* Moving configuration functionality from RAVA_APP to new class RAVA_CFG | ||
* RAVA_APP parameter rava_class allows to choose between RAVA_RNG or RAVA_RNG_LED | ||
* Changed RAVA_APP default show_on_startup to True; Avoid macos issue of not showing matplotlib plots | ||
* Fixed a bug in get_rng_byte_stream_data() that was returning the same bytes for both A and B channels | ||
* snd_rng_byte_stream_start() now empties the queue data | ||
- Moving configuration functionality from RAVA_APP to new class RAVA_CFG | ||
- RAVA_APP parameter rava_class allows to choose between RAVA_RNG or RAVA_RNG_LED | ||
- Changed RAVA_APP default show_on_startup to True; Avoid macos issue of not showing matplotlib plots | ||
- Fixed a bug in get_rng_byte_stream_data() that was returning the same bytes for both A and B channels | ||
- snd_rng_byte_stream_start() now empties the queue data | ||
|
||
## v1.2.1 | ||
- Correcting MANIFEST.in with the correct location of the rava logo | ||
|
||
## v2.0.0 | ||
- Adapted for firmware v2.0.0, reflecting updates in the EEPROM, LAMP and PERIPHERALS modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "rng_rava" | ||
version = "1.2.1" | ||
version = "2.0.0" | ||
authors = [ | ||
{ name="Gabriel Guerrer", email="[email protected]" }, | ||
] | ||
|
@@ -22,4 +22,4 @@ classifiers = [ | |
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/gabrielguerrer/rng_rava_driver_py" | ||
"Homepage" = "https://github.com/gabrielguerrer/rng_rava_driver_py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.