LED Items

FossilOrigin-Name: a26d5e7e93b1353bcc4d7b5c7e491c26369a14be46ee0dcebd5d977c009f403d
This commit is contained in:
7u83@mail.ru 2016-04-11 01:21:23 +00:00
parent bb8f065a2f
commit 045df10d6d
2 changed files with 6 additions and 0 deletions

View File

@ -2,10 +2,14 @@
#include "cisco_items.h"
const char CISCO_ITEM_AP_MODE_AND_TYPE[]="cisco_ap_mode_and_type";
const char CISCO_ITEM_AP_LED_STATE_CONFIG[]="cisco_ap_led_state";
const char CISCO_ITEM_AP_LED_FLASH_CONFIG[]="cisco_ap_led_flash";
struct cw_itemdef cisco_itemdefs[] = {
{CISCO_ITEM_AP_MODE_AND_TYPE,CW_ITEM_NONE,MBAG_WORD},
{CISCO_ITEM_AP_LED_STATE_CONFIG,CW_ITEM_NONE,MBAG_WORD},
{CISCO_ITEM_AP_LED_FLASH_CONFIG,CW_ITEM_NONE,MBAG_BIN},
{CW_ITEM_NONE}
};

View File

@ -2,6 +2,8 @@
#define __CISCO_ITEMS_H
extern const char CISCO_ITEM_AP_MODE_AND_TYPE[];
extern const char CISCO_ITEM_AP_LED_STATE_CONFIG[];
extern const char CISCO_ITEM_AP_LED_FLASH_CONFIG[];
extern struct cw_itemdef cisco_itemdefs[];