Hello,
When I recompile micropython for esp32cam, I get a mix error between a float and int.
Line 189, file ov5640.c : unsigned int REFIN = xclk / pll_pre_div;
I added a cast to compile it, because I don't need this driver for the esp32cam.
Probably a better solution should be to multiply by 10 all data in array and divide after by 10, and then replace the float by int.
Regards.
Hello, When I recompile micropython for esp32cam, I get a mix error between a float and int. Line 189, file ov5640.c : unsigned int REFIN = xclk / pll_pre_div; I added a cast to compile it, because I don't need this driver for the esp32cam. Probably a better solution should be to multiply by 10 all data in array and divide after by 10, and then replace the float by int. Regards.