You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warnings are created during the build process. Some may be less important, and others may actually hint towards a problem.
The following output is generated during the build process using Platform.io:
Issue in source code:
Compiling .pio/build/esp32dev/src/src/battery/KIA-HYUNDAI-HYBRID-BATTERY.cpp.o
/Battery-Emulator/Software/Software.ino:150:71: warning: unsigned conversion from 'long long int' to 'uint32_t' {aka 'long unsigned int'} changes value from '1099511627775' to '4294967295' [-Woverflow]
150 | void set(uint8_t pin, bool direction, uint32_t pwm_freq = 0xFFFFFFFFFF) {
| ^
Issue in library used:
Compiling .pio/build/esp32dev/src/src/lib/miwagner-ESP32-Arduino-CAN/CAN.c.o
Software/src/lib/miwagner-ESP32-Arduino-CAN/CAN.c: In function 'CAN_init':
Software/src/lib/miwagner-ESP32-Arduino-CAN/CAN.c:181:9: warning: implicit declaration of function 'gpio_matrix_out'; did you mean 'gpio_iomux_out'? [-Wimplicit-function-declaration]
181 | gpio_matrix_out(CAN_cfg.tx_pin_id, TWAI_TX_IDX, 0, 0);
| ^~~~~~~~~~~~~~~
| gpio_iomux_out
Software/src/lib/miwagner-ESP32-Arduino-CAN/CAN.c:182:9: warning: implicit declaration of function 'gpio_pad_select_gpio'; did you mean 'esp_rom_gpio_pad_select_gpio'? [-Wimplicit-function-declaration]
182 | gpio_pad_select_gpio(CAN_cfg.tx_pin_id);
| ^~~~~~~~~~~~~~~~~~~~
| esp_rom_gpio_pad_select_gpio
Software/src/lib/miwagner-ESP32-Arduino-CAN/CAN.c:186:9: warning: implicit declaration of function 'gpio_matrix_in' [-Wimplicit-function-declaration]
186 | gpio_matrix_in(CAN_cfg.rx_pin_id, TWAI_RX_IDX, 0);
| ^~~~~~~~~~~~~~
Expected Behavior
Platform.io should build without warnings.
Actual Behavior
Warnings are created during the build process. Some may be less important, and others may actually hint towards a problem.
The following output is generated during the build process using Platform.io:
Issue in source code:
Issue in library used:
Steps to Reproduce the Problem
Settings
a467575a
The text was updated successfully, but these errors were encountered: