From ec478056391434f509c12d05ec699f74a4080119 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 24 Aug 2017 13:39:57 -0600 Subject: [PATCH] configs/: Correct naming of some configuration variables. --- ReleaseNotes | 2 +- configs/dk-tm4c129x/README.txt | 6 +++--- configs/tm4c123g-launchpad/src/tm4c_timer.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ReleaseNotes b/ReleaseNotes index 310e2915c8..e488f25a8f 100644 --- a/ReleaseNotes +++ b/ReleaseNotes @@ -14509,7 +14509,7 @@ detailed bugfix information): array. This cause buffer overflow for part array. This change fixes this problem. From EunBong Song. - examples/can: Fix can example app to print data when - CONFIG_EXAMPLE_CAN_READ is defined. From Alan Carvalho de Assis. + CONFIG_EXAMPLES_CAN_READ is defined. From Alan Carvalho de Assis. * Network Utilies: apps/netuils: diff --git a/configs/dk-tm4c129x/README.txt b/configs/dk-tm4c129x/README.txt index 12a9320fb2..793f00a458 100644 --- a/configs/dk-tm4c129x/README.txt +++ b/configs/dk-tm4c129x/README.txt @@ -476,9 +476,9 @@ Timers Application Configure -> Examples -> Timer Example CONFIG_EXAMPLES_TIMER=y - CONFIG_EXAMPLE_TIMER_DEVNAME="/dev/timer0" - CONFIG_EXAMPLE_TIMER_DELAY=100000 - CONFIG_EXAMPLE_TIMER_NSAMPLES=20 + CONFIG_EXAMPLES_TIMER_DEVNAME="/dev/timer0" + CONFIG_EXAMPLES_TIMER_DELAY=100000 + CONFIG_EXAMPLES_TIMER_NSAMPLES=20 Temperature Sensor ================== diff --git a/configs/tm4c123g-launchpad/src/tm4c_timer.c b/configs/tm4c123g-launchpad/src/tm4c_timer.c index 19e961dd3f..959d0a944f 100644 --- a/configs/tm4c123g-launchpad/src/tm4c_timer.c +++ b/configs/tm4c123g-launchpad/src/tm4c_timer.c @@ -87,7 +87,7 @@ int tiva_timer_configure(void) timer_config.config.handler = 0; timer_config.config.arg = 0; - ret = tiva_timer_initialize(CONFIG_EXAMPLE_TIMER_DEVNAME, &timer_config); + ret = tiva_timer_initialize(CONFIG_EXAMPLES_TIMER_DEVNAME, &timer_config); if (ret < 0) { syslog(LOG_ERR, "ERROR: Failed to register timer driver: %d\n", ret);