diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-27 23:07:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-27 23:07:46 +0000 |
commit | 0942fcc70be2ffa28158d64aa6dfacd68b747067 (patch) | |
tree | 53f4ee9c10974a16e1b577cb8bf2de6152bf03ac /applications/luci-mmc_over_gpio/luasrc/model | |
parent | dc00b42e6da0765e6fd213e50230d4765569f9ac (diff) |
* luci/applications: add new mmc_over_gpio configuration, thanks Yanira!
Diffstat (limited to 'applications/luci-mmc_over_gpio/luasrc/model')
-rw-r--r-- | applications/luci-mmc_over_gpio/luasrc/model/cbi/mmc_over_gpio.lua | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/applications/luci-mmc_over_gpio/luasrc/model/cbi/mmc_over_gpio.lua b/applications/luci-mmc_over_gpio/luasrc/model/cbi/mmc_over_gpio.lua new file mode 100644 index 0000000000..a18e2c4f66 --- /dev/null +++ b/applications/luci-mmc_over_gpio/luasrc/model/cbi/mmc_over_gpio.lua @@ -0,0 +1,41 @@ +--[[ + +LuCI mmc_over_gpio +(c) 2008 Yanira <forum-2008@email.de> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +]]-- + +m = Map("mmc_over_gpio", translate("mmc_over_gpio"), + translate("mmc_over_gpio_desc")) + +s = m:section(TypedSection, "mmc_over_gpio", translate("settings")) +s.addremove = true +s.anonymous = true + +s:option(Flag, "enabled", translate("enabled", "Enable")) + +s:option(Value, "name", translate("name")) + +pin = s:option(Value, "DI_pin", translate("DI_pin")) +for i = 0,7 do pin:value(i) end + +pin = s:option(Value, "DO_pin", translate("DO_pin")) +for i = 0,7 do pin:value(i) end + +pin = s:option(Value, "CLK_pin", translate("CLK_pin")) +for i = 0,7 do pin:value(i) end + +pin = s:option(Value, "CS_pin", translate("CS_pin")) +for i = 0,7 do pin:value(i) end + +s:option(Value, "mode", translate("mode")) + +return m |