Skip to content

Commit

Permalink
Change baudrate option description (allowed frequencies)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghecko committed Jan 8, 2021
1 parent 285f7fe commit 11887ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions owfmodules/avrisp/eeprom_erase.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]>'
})
Expand All @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 11887ce

Please sign in to comment.