-
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.
Change baudrate option description (allowed frequencies)
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -22,7 +22,7 @@ def __init__(self, owf_config): | |
super(EepromErase, self).__init__(owf_config) | ||
self.meta.update({ | ||
'name': 'AVR EEPROM memory erase', | ||
'version': '1.0.1', | ||
'version': '1.0.2', | ||
'description': 'Erase the EEPROM memory of AVR microcontrollers', | ||
'author': 'Jordan Ovrè / Ghecko <[email protected]>, Paul Duncan / Eresse <[email protected]>' | ||
}) | ||
|
@@ -32,7 +32,8 @@ def __init__(self, owf_config): | |
"reset_line": {"Value": "", "Required": True, "Type": "int", | ||
"Description": "GPIO used as the Reset line", "Default": 0}, | ||
"spi_baudrate": {"Value": "", "Required": True, "Type": "int", | ||
"Description": "SPI frequency (1000000 = 1MHz) maximum = 50MHz", "Default": 1000000}, | ||
"Description": "SPI frequency (1000000 = 1MHz). Minimum: 240kHz - Maximum: 60MHz", | ||
"Default": 1000000}, | ||
} | ||
self.dependencies.append("owfmodules.avrisp.device_id>=1.0.0") | ||
|
||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
__authors__ = "Jordan Ovrè, Paul Duncan" | ||
__copyright__ = "Copyright (c) ImmunIT - Jordan Ovrè / Paul Duncan" | ||
__license__ = "Apache 2.0" | ||
__version__ = "1.0.1" | ||
__version__ = "1.0.2" | ||
__contact__ = "Jordan Ovrè / Ghecko <[email protected]>, Paul Duncan / Eresse <[email protected]>" | ||
|
||
description = 'Erase the EEPROM memory of AVR microcontrollers' | ||
|