aboutsummaryrefslogtreecommitdiff
path: root/board/cogent/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/cogent/lcd.c')
-rw-r--r--board/cogent/lcd.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/board/cogent/lcd.c b/board/cogent/lcd.c
index c1b4d116e..814b4c80a 100644
--- a/board/cogent/lcd.c
+++ b/board/cogent/lcd.c
@@ -229,3 +229,17 @@ lcd_heartbeat(void)
if (++rotator_index >= (sizeof rotchars / sizeof rotchars[0]))
rotator_index = 0;
}
+
+#ifdef CONFIG_SHOW_ACTIVITY
+void board_show_activity (ulong timestamp)
+{
+#ifdef CONFIG_STATUS_LED
+ if ((timestamp % (CFG_HZ / 2) == 0)
+ lcd_heartbeat ();
+#endif
+}
+
+void show_activity(int arg)
+{
+}
+#endif