Lib: update m-lib to latest release. Update m-lib usage across project. (#818)

This commit is contained in:
あく
2021-11-15 20:09:40 +03:00
committed by GitHub
parent b2356c7318
commit 2e46ec36a7
25 changed files with 45 additions and 45 deletions

View File

@@ -38,7 +38,7 @@ bool file_helper_write_hex(File* file, const uint8_t* data, const uint16_t data_
}
bool file_helper_read_line(File* file, string_t str_result) {
string_clean(str_result);
string_reset(str_result);
const uint8_t buffer_size = 32;
uint8_t buffer[buffer_size];
@@ -109,7 +109,7 @@ bool file_helper_seek_to_next_line(File* file) {
}
bool file_helper_read_value(File* file, string_t value, bool* last) {
string_clean(value);
string_reset(value);
const uint8_t buffer_size = 32;
uint8_t buffer[buffer_size];
bool result = false;

View File

@@ -12,7 +12,7 @@ const char* flipper_file_scratchpad = "/any/.scratch.pad";
#endif
bool flipper_file_read_valid_key(File* file, string_t key) {
string_clean(key);
string_reset(key);
bool found = false;
bool error = false;
const uint8_t buffer_size = 32;
@@ -27,7 +27,7 @@ bool flipper_file_read_valid_key(File* file, string_t key) {
for(uint16_t i = 0; i < bytes_were_read; i++) {
if(buffer[i] == flipper_file_eoln) {
// EOL found, clean data, start accumulating data and set the new_line flag
string_clean(key);
string_reset(key);
accumulate = true;
new_line = true;
} else if(buffer[i] == flipper_file_eolr) {
@@ -43,7 +43,7 @@ bool flipper_file_read_valid_key(File* file, string_t key) {
// this can only be if we have previously found some kind of key, so
// clear the data, set the flag that we no longer want to accumulate data
// and reset the new_line flag
string_clean(key);
string_reset(key);
accumulate = false;
new_line = false;
} else {