mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:04:38 +02:00
atusb/fw/: moved USB IDs from descr.c to board.h
- descr.c (USB_VENDOR, USB_PRODUCT): moved to board.h - descr.c: include board.h
This commit is contained in:
parent
0293911fed
commit
79b5daf5a4
@ -1,8 +1,8 @@
|
||||
/*
|
||||
* fw/board.h - Board-specific functions and definitions
|
||||
*
|
||||
* Written 2008-2010 by Werner Almesberger
|
||||
* Copyright 2008-2010 Werner Almesberger
|
||||
* Written 2008-2011 by Werner Almesberger
|
||||
* Copyright 2008-2011 Werner Almesberger
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -55,6 +55,10 @@
|
||||
#define PIN(n) PIN_1(n##_PORT, n##_BIT)
|
||||
|
||||
|
||||
#define USB_VENDOR 0x20b7 /* Qi Hardware */
|
||||
#define USB_PRODUCT 0x1540 /* ben-wpan atusb */
|
||||
|
||||
|
||||
void reset_rf(void);
|
||||
uint8_t read_irq(void);
|
||||
void led(int on);
|
||||
|
@ -12,11 +12,9 @@
|
||||
|
||||
|
||||
#include "usb.h"
|
||||
#include "board.h"
|
||||
|
||||
|
||||
#define USB_VENDOR 0x20b7 /* Qi Hardware */
|
||||
#define USB_PRODUCT 0x1540 /* ben-wpan atusb */
|
||||
|
||||
#define LE(x) ((uint16_t) (x) & 0xff), ((uint16_t) (x) >> 8)
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user