diff options
Diffstat (limited to 'board/cogent/lcd.c')
-rw-r--r-- | board/cogent/lcd.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/cogent/lcd.c b/board/cogent/lcd.c index c1b4d11..814b4c8 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 |