Lines Matching +full:4 +full:c
2 IEEE 802.15.4 Developer's Guide
7 The IEEE 802.15.4 working group focuses on standardization of the bottom
15 of the IEEE 802.15.4 and 6LoWPAN protocols. IEEE 802.15.4 is a stack
20 - IEEE 802.15.4 layer; We have chosen to use plain Berkeley socket API,
21 the generic Linux networking stack to transfer IEEE 802.15.4 data
41 The IEEE 802.15.4 standard specifies an MTU of 127 bytes, yielding about 80
68 Like with WiFi, there are several types of devices implementing IEEE 802.15.4.
97 The MAC is the middle layer in the IEEE 802.15.4 Linux stack. This moment it
100 NOTE: Currently the only monitor device type is supported - it's IEEE 802.15.4
112 SoftMAC (fakelb - IEEE 802.15.4 loopback driver) interface. This option
120 .. c:function:: struct ieee802154_dev *ieee802154_alloc_device (size_t priv_size, struct ieee802154…
122 Allocation of IEEE 802.15.4 compatible device.
124 .. c:function:: void ieee802154_free_device(struct ieee802154_dev *dev)
128 .. c:function:: int ieee802154_register_device(struct ieee802154_dev *dev)
132 .. c:function:: void ieee802154_unregister_device(struct ieee802154_dev *dev)
136 .. c:function:: void ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
138 Telling 802.15.4 module there is a new received frame in the skb with
141 .. c:function:: void ieee802154_xmit_complete(struct ieee802154_hw *hw, struct sk_buff *skb, bool i…
143 Telling 802.15.4 module the frame in the skb is or going to be
146 The device driver must implement the following callbacks in the IEEE 802.15.4
160 .. c:function:: int start(struct ieee802154_hw *hw)
162 Handler that 802.15.4 module calls for the hardware device initialization.
164 .. c:function:: void stop(struct ieee802154_hw *hw)
166 Handler that 802.15.4 module calls for the hardware device cleanup.
168 .. c:function:: int xmit_async(struct ieee802154_hw *hw, struct sk_buff *skb)
170 Handler that 802.15.4 module calls for each frame in the skb going to be
173 .. c:function:: int ed(struct ieee802154_hw *hw, u8 *level)
175 Handler that 802.15.4 module calls for Energy Detection from the hardware
178 .. c:function:: int set_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
182 Moreover IEEE 802.15.4 device operations structure should be filled.