1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2025-04-21 12:27:27 +03:00

Moved fw/ and tools/ into atrf/ as well.

- fw/: moved to atrf/fw/
- tools/: moved to atrf/tools/
- atrf/fw/atspi/Makefile, atrf/fw/boot/Makefile: updated relative path to
  f32xbase
- atrf/tools/Makefile: updated relative path to Makefile.recurse
- atrf/tools/atspi-id/Makefile, atrf/tools/atspi-reset/Makefile,
  atrf/tools/atspi-rssi/Makefile, atrf/tools/lib/Makefile: updated relative
  path to f32xbase
- atrf/fw/include/at86rf230.h: corrected path in title
- atrf/tools/include/atspi.h: added title and copyright header
This commit is contained in:
Werner Almesberger
2010-08-23 13:39:07 -03:00
parent d6b045c513
commit c2dd23840c
24 changed files with 22 additions and 11 deletions

34
atrf/fw/common/io.h Normal file
View File

@@ -0,0 +1,34 @@
/*
* common/io.h - I/O pin assignment
*
* Written 2010 by Werner Almesberger
* Copyright 2010 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef IO_H
#define IO_H
/* Diagnostic LED */
#define LED P0_1
/* SPI */
#define MOSI P2_2
#define MISO P2_5
#define SCLK P2_4
#define nSS P2_3
/* Miscellaneous RF signals */
#define nRST_RF P2_0
#define IRQ_RF P0_2 /* change to P0_0 when 100813 board are reworked */
#define SLP_TR P2_1
#endif /* !IO_H */