Skip to content

Commit

Permalink
clang and doxy
Browse files Browse the repository at this point in the history
  • Loading branch information
BlitzCityDIY committed Feb 20, 2024
1 parent 420c19e commit e824c11
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Adafruit_PyCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,10 +684,16 @@ void Adafruit_PyCamera::blitFrame(void) {
esp_camera_fb_return(frame);
}

void Adafruit_PyCamera::refresh(void) {

esp_camera_fb_return(frame);
}
/**************************************************************************/
/**
* @brief Blits the current frame buffer to the display.
*
* @details This function returns the frame buffer to the camera for
* reuse. Used when you are drawing your own bitmap to the framebuffer
* in user code.
*/
/**************************************************************************/
void Adafruit_PyCamera::refresh(void) { esp_camera_fb_return(frame); }

/**************************************************************************/
/**
Expand Down

0 comments on commit e824c11

Please sign in to comment.