framer-802154: Style fixes

This commit is contained in:
kkrentz 2013-05-24 00:43:11 -07:00
parent a5a9b42457
commit c9ad9c04bd
2 changed files with 12 additions and 12 deletions

View File

@ -66,9 +66,9 @@
#ifdef IEEE802154_CONF_PANID #ifdef IEEE802154_CONF_PANID
#define IEEE802154_PANID IEEE802154_CONF_PANID #define IEEE802154_PANID IEEE802154_CONF_PANID
#else #else /* IEEE802154_CONF_PANID */
#define IEEE802154_PANID 0xABCD #define IEEE802154_PANID 0xABCD
#endif #endif /* IEEE802154_CONF_PANID */
/* Macros & Defines */ /* Macros & Defines */
@ -152,15 +152,15 @@ typedef struct {
* specification for details. * specification for details.
*/ */
typedef struct { typedef struct {
frame802154_fcf_t fcf; /**< Frame control field */ frame802154_fcf_t fcf; /**< Frame control field */
uint8_t seq; /**< Sequence number */ uint8_t seq; /**< Sequence number */
uint16_t dest_pid; /**< Destination PAN ID */ uint16_t dest_pid; /**< Destination PAN ID */
uint8_t dest_addr[8]; /**< Destination address */ uint8_t dest_addr[8]; /**< Destination address */
uint16_t src_pid; /**< Source PAN ID */ uint16_t src_pid; /**< Source PAN ID */
uint8_t src_addr[8]; /**< Source address */ uint8_t src_addr[8]; /**< Source address */
frame802154_aux_hdr_t aux_hdr; /**< Aux security header */ frame802154_aux_hdr_t aux_hdr; /**< Aux security header */
uint8_t *payload; /**< Pointer to 802.15.4 frame payload */ uint8_t *payload; /**< Pointer to 802.15.4 payload */
int payload_len; /**< Length of payload field */ int payload_len; /**< Length of payload field */
} frame802154_t; } frame802154_t;
/* Prototypes */ /* Prototypes */

View File

@ -213,7 +213,7 @@ parse(void)
packetbuf_hdrreduce(len - frame.payload_len)) { packetbuf_hdrreduce(len - frame.payload_len)) {
if(frame.fcf.dest_addr_mode) { if(frame.fcf.dest_addr_mode) {
if(frame.dest_pid != mac_src_pan_id && if(frame.dest_pid != mac_src_pan_id &&
frame.dest_pid != FRAME802154_BROADCASTPANDID) { frame.dest_pid != FRAME802154_BROADCASTPANDID) {
/* Packet to another PAN */ /* Packet to another PAN */
PRINTF("15.4: for another pan %u\n", frame.dest_pid); PRINTF("15.4: for another pan %u\n", frame.dest_pid);
return FRAMER_FAILED; return FRAMER_FAILED;