mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-22 08:10:17 +02:00
atusb/fw/mac.c (txing, queued_tx_ack): change from "int" to "bool"
This commit is contained in:
parent
de8bcc1925
commit
88c7e64e38
@ -11,6 +11,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "usb.h"
|
#include "usb.h"
|
||||||
@ -27,8 +28,8 @@ int (*mac_irq)(void) = NULL;
|
|||||||
static uint8_t rx_buf[MAX_PSDU+2]; /* PHDR+payload+LQ */
|
static uint8_t rx_buf[MAX_PSDU+2]; /* PHDR+payload+LQ */
|
||||||
static uint8_t tx_buf[MAX_PSDU];
|
static uint8_t tx_buf[MAX_PSDU];
|
||||||
static uint8_t tx_size = 0;
|
static uint8_t tx_size = 0;
|
||||||
static int txing = 0;
|
static bool txing = 0;
|
||||||
static int queued_tx_ack = 0;
|
static bool queued_tx_ack = 0;
|
||||||
|
|
||||||
|
|
||||||
static uint8_t reg_read(uint8_t reg)
|
static uint8_t reg_read(uint8_t reg)
|
||||||
|
Loading…
Reference in New Issue
Block a user