ardupilot/Tools/CPUInfo
Lucas De Marchi c82f28f35a Tools: CPUInfo: fix warnings on printf
../../Tools/CPUInfo/CPUInfo.cpp:21:54: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long unsigned int’ [-Wformat=]
  hal.console->printf("char      : %d\n", sizeof(char));
                                                      ^
And so on.

Ideally for sizeof() which returns size_t we would use %zu, but that's not
implemented by our version of printf. So use %lu which should be ok in all of
our boards.
2016-05-04 08:58:37 -03:00
..
CPUInfo.cpp Tools: CPUInfo: fix warnings on printf 2016-05-04 08:58:37 -03:00
Makefile build: change from Arduino.mk to apm.mk 2013-01-02 17:29:37 +11:00
make.inc Global: don't link with AP_Progmem 2015-12-27 15:58:12 -02:00
output-px4.txt CPUInfo: added output for PX4FMU 2013-01-03 15:45:23 +11:00
output.txt CPUInfo: added note on dataflash write cost 2013-01-08 14:37:39 -08:00
wscript waf: ardupilotwaf: allow multiple program groups for program 2016-03-26 15:43:08 -03:00