Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix implicit declaration compiler warnings (which are errors on some boards) #66

Closed

Conversation

PaulStoffregen
Copy link

@PaulStoffregen PaulStoffregen commented Jun 9, 2021

This fix might be called "trivial" but it fixes a compiler warning, and with some boards that use inline code for delayMicroseconds, it is an error rather than just a warning.

@github-actions
Copy link

Memory usage change @ 59cfe4d

Board flash % RAM for global variables %
arduino:avr:leonardo 💚 -8 - -8 -0.03 - -0.03 0 - 0 0.0 - 0.0
arduino:megaavr:uno2018:mode=off ❔ -8 - +18 -0.02 - +0.04 0 - 0 0.0 - 0.0
arduino:samd:mkrwifi1010 💚 -88 - -88 -0.03 - -0.03 0 - 0 0.0 - 0.0
Click for full report table
Board examples/RTU/ModbusRTUClientKitchenSink
flash
% examples/RTU/ModbusRTUClientKitchenSink
RAM for global variables
% examples/RTU/ModbusRTUClientToggle
flash
% examples/RTU/ModbusRTUClientToggle
RAM for global variables
% examples/RTU/ModbusRTUServerKitchenSink
flash
% examples/RTU/ModbusRTUServerKitchenSink
RAM for global variables
% examples/RTU/ModbusRTUServerLED
flash
% examples/RTU/ModbusRTUServerLED
RAM for global variables
% examples/RTU/ModbusRTUTemperatureSensor
flash
% examples/RTU/ModbusRTUTemperatureSensor
RAM for global variables
% examples/TCP/EthernetModbusClientToggle
flash
% examples/TCP/EthernetModbusClientToggle
RAM for global variables
% examples/TCP/EthernetModbusServerLED
flash
% examples/TCP/EthernetModbusServerLED
RAM for global variables
% examples/TCP/WiFiModbusClientToggle
flash
% examples/TCP/WiFiModbusClientToggle
RAM for global variables
% examples/TCP/WiFiModbusServerLED
flash
% examples/TCP/WiFiModbusServerLED
RAM for global variables
%
arduino:avr:leonardo -8 -0.03 0 0.0 -8 -0.03 0 0.0 -8 -0.03 0 0.0 -8 -0.03 0 0.0 -8 -0.03 0 0.0 -8 -0.03 0 0.0 -8 -0.03 0 0.0
arduino:megaavr:uno2018:mode=off -8 -0.02 0 0.0 -8 -0.02 0 0.0 18 0.04 0 0.0 18 0.04 0 0.0 -8 -0.02 0 0.0 -8 -0.02 0 0.0 -8 -0.02 0 0.0 -8 -0.02 0 0.0 -8 -0.02 0 0.0
arduino:samd:mkrwifi1010 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0 -88 -0.03 0 0.0
Click for full report CSV
Board,examples/RTU/ModbusRTUClientKitchenSink<br>flash,%,examples/RTU/ModbusRTUClientKitchenSink<br>RAM for global variables,%,examples/RTU/ModbusRTUClientToggle<br>flash,%,examples/RTU/ModbusRTUClientToggle<br>RAM for global variables,%,examples/RTU/ModbusRTUServerKitchenSink<br>flash,%,examples/RTU/ModbusRTUServerKitchenSink<br>RAM for global variables,%,examples/RTU/ModbusRTUServerLED<br>flash,%,examples/RTU/ModbusRTUServerLED<br>RAM for global variables,%,examples/RTU/ModbusRTUTemperatureSensor<br>flash,%,examples/RTU/ModbusRTUTemperatureSensor<br>RAM for global variables,%,examples/TCP/EthernetModbusClientToggle<br>flash,%,examples/TCP/EthernetModbusClientToggle<br>RAM for global variables,%,examples/TCP/EthernetModbusServerLED<br>flash,%,examples/TCP/EthernetModbusServerLED<br>RAM for global variables,%,examples/TCP/WiFiModbusClientToggle<br>flash,%,examples/TCP/WiFiModbusClientToggle<br>RAM for global variables,%,examples/TCP/WiFiModbusServerLED<br>flash,%,examples/TCP/WiFiModbusServerLED<br>RAM for global variables,%
arduino:avr:leonardo,-8,-0.03,0,0.0,-8,-0.03,0,0.0,-8,-0.03,0,0.0,-8,-0.03,0,0.0,-8,-0.03,0,0.0,-8,-0.03,0,0.0,-8,-0.03,0,0.0
arduino:megaavr:uno2018:mode=off,-8,-0.02,0,0.0,-8,-0.02,0,0.0,18,0.04,0,0.0,18,0.04,0,0.0,-8,-0.02,0,0.0,-8,-0.02,0,0.0,-8,-0.02,0,0.0,-8,-0.02,0,0.0,-8,-0.02,0,0.0
arduino:samd:mkrwifi1010,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0,-88,-0.03,0,0.0

@PaulStoffregen
Copy link
Author

@per1234 - Some libraries, this one being a prime example, have bugs that the author should have seen as compiler warnings. Most likely they unwittingly had all warnings disabled in File > Preferences. I guess I'm wondering, would it be possible for github actions to automatically show compiler warnings? Ideally a commit would make it clear which warnings already exists and if the proposed change solve already-existing warnings and/or adds new ones.

@per1234
Copy link
Contributor

per1234 commented Jun 22, 2021

This is something I have investigated, and even done some initial work on.

A simple and standard approach to surfacing warning and error messages is the use of a "problem matcher". This will cause the workflow run logs to be decorated as well as the commit itself. You can see a demo of the log decoration that would have occurred if there was a problem matcher in the sketch compilation CI workflow here:

The problem, as you have pointed out, is that we aren't always starting from a warning-free code base, where any warning indicates a problem with the proposed change. The warnings surfaced by the problem matcher were not necessarily introduced by the commit/PR. They might even originate from the code of external dependencies not in the repository. So this problem matcher approach to warnings might cause confusion for contributors. I haven't made up my mind yet on whether it would have a net beneficial effect in the CI system of an Arduino library repository.

As you say, what is relevant for evaluating a proposed change is whether it introduces new warnings. My idea is that this can be indicated in a manner similar to the "size deltas report" you see in the comment above. This is determined by compiling the sketch, recording the data gathered from that compilation, then checking out the base ref (in the case of a PR) or parent commit (in the case of a push) and the repeating the process. The "delta" is the difference in the data between the two compilations.

I have already added the capability to the arduino/compile-sketches GitHub Actions action to record the compiler warning counts and calculate deltas. You can see a demonstration of the warning deltas report in a workflow run log here:
https://github.com/per1234/ArduinoModbus/pull/1/checks?check_run_id=2887561913#step:3:270
This information is also stored in a machine readable format in the "sketches-report" workflow artifact.

The problem I ran into while adding the warnings delta capability to the action is that warnings for previously cached compilations are not shown (arduino/arduino-cli#1008), causing inaccurate warning counts after the first compilation. The workaround for that is to clear the cache before compiling. This means the feature has significant overhead as far as CI run duration goes, so I added an input to the action to control the feature and made it default to being off. Because it isn't clear to me that the benefit of these lines hidden away in a workflow run log most people never look at outweigh the harm of an increased CI run duration, I have not enabled warning reports in Arduino's sketch compilation workflows,

The missing piece is the prominently visible report made via a comment in the pull request. The groundwork has been laid for that by making the compilation action record the data, as well as by already having the arduino/report-size-deltas action as a starting point.

My "warning deltas" approach is fairly naïve in that a PR which fixed an innocuous warning and introduced a significant one would be seen as having a delta of 0. However, I still think it can have a lot of value when compared to the current situation even if it doesn't report on every single warning introduction.

@facchinm
Copy link
Contributor

Sorry, I lost track of this PR yesterday and I applied 814321c . Closing the issue as duplicate, of course all the discussion about making the CI very picky is still relevant and can be continued either here or in a brand new issue (maybe in API repo? )

@facchinm facchinm closed this Jun 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants