Skip to content

Commit

Permalink
AVR_ISP: Update API (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skorpionm authored Mar 26, 2024
1 parent b2a78f5 commit de3b84e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions avr_isp_programmer/.catalog/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 1.3
- Update API v60.3
## 1.2
- Updade icon
- Update icon
## 1.1
- Updade API v58.0
- Update API v58.0
## 1.0
- Initial release
2 changes: 1 addition & 1 deletion avr_isp_programmer/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App(
requires=["gui"],
stack_size=4 * 1024,
fap_description="Application for flashing AVR microcontrollers",
fap_version="1.2",
fap_version="1.3",
fap_icon="avr_app_icon_10px.png",
fap_category="GPIO",
fap_icon_assets="images",
Expand Down
4 changes: 2 additions & 2 deletions avr_isp_programmer/helpers/flipper_i32hex_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ FlipperI32HexFile* flipper_i32hex_file_open_write(const char* name, uint32_t sta
FURI_LOG_E(TAG, "Failed to open file %s", name);
instance->file_open = FlipperI32HexFileStatusErrorNoOpenFile;
}
instance->str_data = furi_string_alloc(instance->storage);
instance->str_data = furi_string_alloc();

return instance;
}
Expand All @@ -62,7 +62,7 @@ FlipperI32HexFile* flipper_i32hex_file_open_read(const char* name) {
FURI_LOG_E(TAG, "Failed to open file %s", name);
instance->file_open = FlipperI32HexFileStatusErrorNoOpenFile;
}
instance->str_data = furi_string_alloc(instance->storage);
instance->str_data = furi_string_alloc();

return instance;
}
Expand Down

0 comments on commit de3b84e

Please sign in to comment.