Skip to content

Commit

Permalink
Remove extra import and fix _ with memory type things
Browse files Browse the repository at this point in the history
  • Loading branch information
docprofsky committed Jan 19, 2015
1 parent ffeb512 commit a2430af
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions iclicker/isniffer/isniffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,21 @@
#include "ioCCxx10_bitdef.h"
#include "display.h"
#include "keys.h"
#include "5x7.h"
#include "stdio.h"
#include "isniffer.h"
#include "pm.h"

/* globals */
bit sleepy;
__bit sleepy;
static volatile u8 rxdone = 0;
xdata DMA_DESC dmaConfig;
__xdata DMA_DESC dmaConfig;
u16 pktcount = 0;

//#define NUM_CLICKERS 100
//xdata clicker clicker_table[NUM_CLICKERS];

#define LEN 9
xdata u8 rxbuf[LEN];
__xdata u8 rxbuf[LEN];

void setup_dma_rx()
{
Expand Down

0 comments on commit a2430af

Please sign in to comment.