From d4b6180cd29b19e3d718d5fd8fb42aabda1e6cdc Mon Sep 17 00:00:00 2001 From: devsaurus Date: Tue, 7 Mar 2017 23:05:09 +0100 Subject: [PATCH] fix sigma_delta component naming --- components/modules/Kconfig | 2 +- components/modules/sigma_delta.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/modules/Kconfig b/components/modules/Kconfig index dc1ca7a9..fc69f4da 100644 --- a/components/modules/Kconfig +++ b/components/modules/Kconfig @@ -97,7 +97,7 @@ config LUA_MODULE_NODE help Includes the node module (recommended). -config LUA_MODULE_SIGMADELTA +config LUA_MODULE_SIGMA_DELTA bool "Sigma-Delta module" default "n" help diff --git a/components/modules/sigma_delta.c b/components/modules/sigma_delta.c index ebed3a60..15a9a190 100644 --- a/components/modules/sigma_delta.c +++ b/components/modules/sigma_delta.c @@ -87,4 +87,4 @@ static const LUA_REG_TYPE sigma_delta_map[] = { LNILKEY, LNILVAL } }; -NODEMCU_MODULE(SIGMADELTA, "sigma_delta", sigma_delta_map, NULL); +NODEMCU_MODULE(SIGMA_DELTA, "sigma_delta", sigma_delta_map, NULL);