Implict Fucntions declaration #9283
Replies: 3 comments
-
I am having same issue with this also: |
Beta Was this translation helpful? Give feedback.
-
This seems already covered in other open discussion. Closing it. |
Beta Was this translation helpful? Give feedback.
-
Can you add a link to the open discussion where this is being (has been) covered? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Dear community members, I am using arduino as a component in VS Code, I am having issues in ESP32 Core header files. it is saying implicit declaration for some of the i2c functions:
D:/esp32/Test-Helloworld/hello_world/components/cores/esp32/esp32-hal-i2c-slave.c:517:5: error: implicit declaration of function 'i2c_ll_cal_bus_clk' [-Werror=implicit-function-declaration]
517 | i2c_ll_cal_bus_clk(APB_CLK_FREQ, clk_speed, &clk_cal);
| ^~~~~~~~~~~~~~~~~~
D:/esp32/Test-Helloworld/hello_world/components/cores/esp32/esp32-hal-i2c-slave.c:525:5: error: implicit declaration of function 'i2c_ll_set_bus_timing'; did you mean 'i2c_ll_set_scl_timing'? [-Werror=implicit-function-declaration]
525 | i2c_ll_set_bus_timing(i2c->dev, &clk_cal);
| ^~~~~~~~~~~~~~~~~~~~~
| i2c_ll_set_scl_timing
D:/esp32/Test-Helloworld/hello_world/components/cores/esp32/esp32-hal-i2c-slave.c:526:5: error: implicit declaration of function 'i2c_ll_set_filter'; did you mean 'i2c_ll_set_tout'? [-Werror=implicit-function-declaration]
526 | i2c_ll_set_filter(i2c->dev, 3);
| ^~~~~~~~~~~~~~~~~
| i2c_ll_set_tout
Beta Was this translation helpful? Give feedback.
All reactions