-
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
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -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]>' | ||
}) | ||
|
@@ -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": ""}, | ||
|