Skip to content

Commit

Permalink
Make write_byte_to_flash virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Oct 19, 2023
1 parent 5dfe68a commit 8a7f964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Arduino_ESP32_OTA.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Arduino_ESP32_OTA
void setCACertBundle(const uint8_t * bundle);
int download(const char * ota_url);
uint8_t read_byte_from_network();
void write_byte_to_flash(uint8_t data);
virtual void write_byte_to_flash(uint8_t data);
Arduino_ESP32_OTA::Error update();
void reset();

Expand Down

0 comments on commit 8a7f964

Please sign in to comment.