From 51a15c8622aa43267dd4eb8b8be99af6e3a7557b Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 2 Nov 2016 12:42:30 +0000 Subject: [PATCH] Update hd44780-rpi.c, maybe fix rpi2 --- server/drivers/hd44780-rpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/drivers/hd44780-rpi.c b/server/drivers/hd44780-rpi.c index 53918fa..26ffb94 100644 --- a/server/drivers/hd44780-rpi.c +++ b/server/drivers/hd44780-rpi.c @@ -164,7 +164,7 @@ check_board_rev(Driver *drvthis) /* On boards that have been overvolted, the MSB will be set */ rev &= 0x00ff; if ((strcmp(hw, "BCM2708") != 0 && strcmp(hw, "BCM2709") != 0) || rev == 0) { - report(RPT_ERR, "check_board_rev: This board is not recognized as a Raspberry Pi!"); + report(RPT_ERR, "check_board_rev: This board is not recognized as a Raspberry Pi! Found:%s",hw); return NULL; }