Date:2013-02-20 22:48:53 (11 years 1 month ago)
Author:Werner Almesberger
Commit:88c7e64e38dcfdf85b5a47e6dfdc83a5a8b3f445
Message:atusb/fw/mac.c (txing, queued_tx_ack): change from "int" to "bool"

Files: atusb/fw/mac.c (2 diffs)

Change Details

atusb/fw/mac.c
1111 */
1212
1313#include <stddef.h>
14#include <stdbool.h>
1415#include <stdint.h>
1516
1617#include "usb.h"
...... 
2728static uint8_t rx_buf[MAX_PSDU+2]; /* PHDR+payload+LQ */
2829static uint8_t tx_buf[MAX_PSDU];
2930static uint8_t tx_size = 0;
30static int txing = 0;
31static int queued_tx_ack = 0;
31static bool txing = 0;
32static bool queued_tx_ack = 0;
3233
3334
3435static uint8_t reg_read(uint8_t reg)

Archive Download the corresponding diff file



interactive