blob: 8906611b29304c2454c1783ee4d2a61c15b9b8cf [file] [log] [blame]
Johnny Kimc5c77ba2015-05-11 14:30:56 +09001/* ////////////////////////////////////////////////////////////////////////// */
2/* */
3/* Copyright (c) Atmel Corporation. All rights reserved. */
4/* */
5/* Module Name: wilc_wlan_cfg.h */
6/* */
7/* */
8/* ///////////////////////////////////////////////////////////////////////// */
9
10#ifndef WILC_WLAN_CFG_H
11#define WILC_WLAN_CFG_H
12
13typedef struct {
14 uint16_t id;
15 uint16_t val;
16} wilc_cfg_byte_t;
17
18typedef struct {
19 uint16_t id;
20 uint16_t val;
21} wilc_cfg_hword_t;
22
23typedef struct {
24 uint32_t id;
25 uint32_t val;
26} wilc_cfg_word_t;
27
28typedef struct {
29 uint32_t id;
30 uint8_t *str;
31} wilc_cfg_str_t;
32
33#endif