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 2ccc4ff commit 0c98f15
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions owfmodules/avrisp/flash_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, owf_config):
super(FlashWrite, self).__init__(owf_config)
self.meta.update({
'name': 'AVR flash memory write',
'version': '1.0.1',
'version': '1.0.2',
'description': 'Write the flash memory of AVR microcontrollers',
'author': 'Jordan Ovrè / Ghecko <[email protected]>, Paul Duncan / Eresse <[email protected]>'
})
Expand All @@ -34,7 +34,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},
"firmware": {"Value": "", "Required": True, "Type": "file_r",
"Description": "Firmware to write into the flash memory.\n"
"Allowed file types: IntelHex or Raw binary.", "Default": ""},
Expand Down

0 comments on commit 0c98f15

Please sign in to comment.