1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-02 14:22:55 +03:00

Made changes to allow the compiler to compile without warnings.

This commit is contained in:
Neil Kolban
2015-08-09 14:10:20 -05:00
parent cd69be7f8f
commit b500a1f26a
5 changed files with 11 additions and 4 deletions

View File

@ -108,12 +108,12 @@ class UpdaterClass {
void _reset();
bool _writeBuffer();
uint8_t _error;
uint8_t *_buffer;
size_t _bufferLen;
size_t _size;
uint32_t _startAddress;
uint32_t _currentAddress;
uint8_t _error;
};
extern UpdaterClass Update;