Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
GyverLibs committed May 16, 2024
1 parent cc1adee commit 87cedde
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ bool rtc_write(T* data, uint8_t offset = 0);

// прочитать данные из rtc памяти. Вернёт 0 при ошибке, 1 если данные прочитаны, 2 если это первый запуск (данные сброшены)
uint8_t rtc_read(T* data, uint8_t offset = 0);

// размер данных в количестве блоков (включая crc32)
size_t rtc_size(T* data);
```
- Максимальный `offset` - 127, одна единица - 4 байта памяти
Expand Down
1 change: 1 addition & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ rtc_utils KEYWORD1

rtc_write KEYWORD2
rtc_read KEYWORD2
rtc_size KEYWORD2

#######################################
# Constants (LITERAL1)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=rtc_utils
version=1.0.2
version=1.0.3
author=AlexGyver <alex@alexgyver.ru>
maintainer=AlexGyver <alex@alexgyver.ru>
sentence=Wrapper for esp8266 rtc functions
Expand Down
8 changes: 7 additions & 1 deletion rtc_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ bool rtc_write(T* data, uint8_t offset = 0, uint32_t* _crc = nullptr) {
return 1;
}

// размер данных в количестве блоков (включая crc32)
template <typename T>
size_t rtc_size(T* data) {
return (sizeof(T) + 4 - 1) / 4 + 1;
}

// прочитать данные из rtc памяти. Вернёт 0 при ошибке, 1 если данные прочитаны, 2 если это первый запуск (данные сброшены)
template <typename T>
uint8_t rtc_read(T* data, uint8_t offset = 0) {
Expand All @@ -25,7 +31,7 @@ uint8_t rtc_read(T* data, uint8_t offset = 0) {
uint32_t _crc = crc32((void*)data, sizeof(T));
if (_crc != crc) {
*data = T();
return rtc_write(data, offset, &_crc) ? RTCU_RESET : RTCU_READ;
return rtc_write(data, offset, &_crc) ? RTCU_RESET : RTCU_ERROR;
}
return RTCU_READ;
}
Expand Down

0 comments on commit 87cedde

Please sign in to comment.