Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
lovyan03 committed Nov 5, 2024
1 parent 898f16d commit d26cf3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lgfx/v1/platforms/esp32/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ namespace lgfx
uint32_t _gpio_pin_reg;
uint32_t _gpio_func_out_reg;
uint32_t _gpio_func_in_reg;
int16_t _in_func_num = -1;;
int8_t _pin_num = GPIO_NUM_NC;
int16_t _in_func_num = -1;
int8_t _pin_num = (gpio_num_t)-1; //GPIO_NUM_NC
bool _gpio_enable;
};

Expand Down

0 comments on commit d26cf3f

Please sign in to comment.