configs/: Correct naming of some configuration variables.
This commit is contained in:
parent
e341c74f06
commit
ec47805639
|
@ -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:
|
||||
|
||||
|
|
|
@ -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
|
||||
==================
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue