mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-22 22:44:03 +02: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:
parent
d6b045c513
commit
c2dd23840c
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
DIRS=common atspi-boot atspi
|
DIRS=common boot atspi
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all depend install uninstall clean spotless
|
.PHONY: all depend install uninstall clean spotless
|
@ -14,7 +14,7 @@
|
|||||||
MAIN = atspi
|
MAIN = atspi
|
||||||
OBJS = $(MAIN) usb descr version ep0
|
OBJS = $(MAIN) usb descr version ep0
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
include $(F32XBASE)/fw/common/Makefile.system
|
include $(F32XBASE)/fw/common/Makefile.system
|
||||||
include $(F32XBASE)/fw/common/Makefile.common
|
include $(F32XBASE)/fw/common/Makefile.common
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# atspi-boot/Makefile - Makefile for DFU-capable boot loader for ATSPI
|
# boot/Makefile - Makefile for DFU-capable boot loader for ATSPI
|
||||||
#
|
#
|
||||||
# Written 2008, 2010 by Werner Almesberger
|
# Written 2008, 2010 by Werner Almesberger
|
||||||
# Copyright 2008, 2010 Werner Almesberger
|
# Copyright 2008, 2010 Werner Almesberger
|
||||||
@ -13,7 +13,7 @@
|
|||||||
MAIN=boot
|
MAIN=boot
|
||||||
OBJS=$(MAIN) usb dfu version
|
OBJS=$(MAIN) usb dfu version
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
include $(F32XBASE)/fw/common/Makefile.system
|
include $(F32XBASE)/fw/common/Makefile.system
|
||||||
include $(F32XBASE)/fw/common/Makefile.common
|
include $(F32XBASE)/fw/common/Makefile.common
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* atspi/at86rf230.h - AT86RF230 protocol and register definitions
|
* include/at86rf230.h - AT86RF230 protocol and register definitions
|
||||||
*
|
*
|
||||||
* Written 2008-2010 by Werner Almesberger
|
* Written 2008-2010 by Werner Almesberger
|
||||||
* Copyright 2008-2010 Werner Almesberger
|
* Copyright 2008-2010 Werner Almesberger
|
@ -13,4 +13,4 @@
|
|||||||
|
|
||||||
DIRS=atspi-id atspi-reset atspi-rssi
|
DIRS=atspi-id atspi-reset atspi-rssi
|
||||||
|
|
||||||
include ../Makefile.recurse
|
include ../../Makefile.recurse
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
MAIN = atspi-id
|
MAIN = atspi-id
|
||||||
|
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
MAIN = atspi-reset
|
MAIN = atspi-reset
|
||||||
|
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
MAIN = atspi-rssi
|
MAIN = atspi-rssi
|
||||||
|
|
@ -1,7 +1,18 @@
|
|||||||
|
/*
|
||||||
|
* include/atspi.h - ATSPI access functions library
|
||||||
|
*
|
||||||
|
* 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 ATSPI_H
|
#ifndef ATSPI_H
|
||||||
#define ATSPI_H
|
#define ATSPI_H
|
||||||
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
|
|
@ -11,7 +11,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
F32XBASE = ../../../f32xbase
|
F32XBASE = ../../../../f32xbase
|
||||||
|
|
||||||
LIB = libatspi.a
|
LIB = libatspi.a
|
||||||
|
|
Loading…
Reference in New Issue
Block a user