Remove warnings
This commit is contained in:
parent
12f22832d5
commit
41cb8d3ce1
2 changed files with 4 additions and 1 deletions
|
@ -598,7 +598,8 @@ public:
|
|||
|
||||
dma_bus.flip_dma_output_buffer(back_buffer_id);
|
||||
|
||||
back_buffer_id ^= 1;
|
||||
//back_buffer_id ^= 1;
|
||||
back_buffer_id = back_buffer_id^1;
|
||||
fb = &frame_buffer[back_buffer_id];
|
||||
|
||||
|
||||
|
|
|
@ -50,11 +50,13 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
#if (ESP_IDF_VERSION_MAJOR == 5)
|
||||
#include <esp_private/periph_ctrl.h>
|
||||
#else
|
||||
#include <driver/periph_ctrl.h>
|
||||
#endif
|
||||
*/
|
||||
|
||||
#include <esp_private/gdma.h>
|
||||
#include <esp_rom_gpio.h>
|
||||
|
|
Loading…
Reference in a new issue