configs/: Correct naming of some configuration variables.

This commit is contained in:
Gregory Nutt 2017-08-24 13:39:57 -06:00
parent e341c74f06
commit ec47805639
3 changed files with 5 additions and 5 deletions

View File

@ -14509,7 +14509,7 @@ detailed bugfix information):
array. This cause buffer overflow for part array. This change fixes array. This cause buffer overflow for part array. This change fixes
this problem. From EunBong Song. this problem. From EunBong Song.
- examples/can: Fix can example app to print data when - 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: * Network Utilies: apps/netuils:

View File

@ -476,9 +476,9 @@ Timers
Application Configure -> Examples -> Timer Example Application Configure -> Examples -> Timer Example
CONFIG_EXAMPLES_TIMER=y CONFIG_EXAMPLES_TIMER=y
CONFIG_EXAMPLE_TIMER_DEVNAME="/dev/timer0" CONFIG_EXAMPLES_TIMER_DEVNAME="/dev/timer0"
CONFIG_EXAMPLE_TIMER_DELAY=100000 CONFIG_EXAMPLES_TIMER_DELAY=100000
CONFIG_EXAMPLE_TIMER_NSAMPLES=20 CONFIG_EXAMPLES_TIMER_NSAMPLES=20
Temperature Sensor Temperature Sensor
================== ==================

View File

@ -87,7 +87,7 @@ int tiva_timer_configure(void)
timer_config.config.handler = 0; timer_config.config.handler = 0;
timer_config.config.arg = 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) if (ret < 0)
{ {
syslog(LOG_ERR, "ERROR: Failed to register timer driver: %d\n", ret); syslog(LOG_ERR, "ERROR: Failed to register timer driver: %d\n", ret);