klippy: Log the type of cpu the host is running on

Report in the log the host CPU type and count.  This helps distinguish
between different rpi versions when debugging the log from a problem
report.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2017-02-12 19:14:26 -05:00
parent 29131c873a
commit 3434ea540c
2 changed files with 16 additions and 0 deletions

View file

@ -284,6 +284,7 @@ def main():
software_version = util.get_git_version()
if debugoutput is None:
logging.info("Git version: %s" % (repr(software_version),))
logging.info("CPU: %s" % (util.get_cpu_info(),))
# Start firmware
while 1: