From e6294dfe41434ee157b95d81d22f4c40dbb6f364 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 1 Apr 2015 12:37:44 -0600 Subject: [PATCH] Move include/nuttx/timer.h, rtc.h and watchdog.h to include/nuttx/timers/. --- examples/README.txt | 2 +- examples/timer/timer_main.c | 2 +- examples/watchdog/watchdog_main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/README.txt b/examples/README.txt index aeb2f6261..b302c6dc1 100644 --- a/examples/README.txt +++ b/examples/README.txt @@ -1777,7 +1777,7 @@ examples/tiff examples/timer ^^^^^^^^^^^^^^ - This is a simple test of the timer driver (see include/nuttx/timer.h). + This is a simple test of the timer driver (see include/nuttx/timers/timer.h). Dependencies: CONFIG_TIMER - The timer driver must be selected diff --git a/examples/timer/timer_main.c b/examples/timer/timer_main.c index 4546e5b9d..5ec7aebff 100644 --- a/examples/timer/timer_main.c +++ b/examples/timer/timer_main.c @@ -45,7 +45,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/examples/watchdog/watchdog_main.c b/examples/watchdog/watchdog_main.c index cc6bf4784..9390279bf 100644 --- a/examples/watchdog/watchdog_main.c +++ b/examples/watchdog/watchdog_main.c @@ -49,7 +49,7 @@ #include #include -#include +#include #include "watchdog.h"