1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-10-01 12:33:50 +03:00

The Great ATSPI Renaming, part 1: rename atusb firmware files from atspi to atusb

- atusb/fw/atspi/atspi.c: renamed to atusb/fw/atspi/atusb.c
- atusb/fw/atspi/Makefile: track above change
- atusb/fw/include/atspi/: renamed to atusb/fw/include/atusb/
- atusb/fw/common/config.h, atusb/fw/atspi/atspi.c, atusb/fw/atspi/descr.c,
  atusb/fw/atspi/ep0.c: track change of include location
- atusb/fw/atspi/: renamed to atusb
- atusb/fw/Makefile: track above change
- tools/atspi-id/atspi-id.c, tools/atspi-trim/atspi-trim.c,
  tools/lib/atusb.c: track change of include location
This commit is contained in:
Werner Almesberger 2010-11-11 08:26:01 -03:00
parent 1e78135bf4
commit 7e71f98007
11 changed files with 12 additions and 13 deletions

View File

@ -1,5 +1,5 @@
# #
# fw/Makefile - ATSPI firmware build # fw/Makefile - ATUSB firmware build
# #
# Written 2008-2010 by Werner Almesberger # Written 2008-2010 by Werner Almesberger
# Copyright 2008-2010 Werner Almesberger # Copyright 2008-2010 Werner Almesberger
@ -11,7 +11,7 @@
# #
DIRS=common boot atspi DIRS=common boot atusb
.PHONY: all depend install uninstall clean spotless .PHONY: all depend install uninstall clean spotless

View File

@ -1,5 +1,5 @@
# #
# atspi/Makefile - Makefile for USB to SPI translator (for AT86RF230) # atusb/Makefile - Makefile for USB to SPI translator (for AT86RF230)
# #
# Written 2010 by Werner Almesberger # Written 2010 by Werner Almesberger
# Copyright 2010 Werner Almesberger # Copyright 2010 Werner Almesberger
@ -11,7 +11,7 @@
# #
MAIN = atspi MAIN = atusb
OBJS = $(MAIN) usb descr version ep0 OBJS = $(MAIN) usb descr version ep0
F32XBASE = ../../../../f32xbase F32XBASE = ../../../../f32xbase

View File

@ -1,5 +1,5 @@
/* /*
* atspi/atspi.c - ATSPI initialization and main loop * atusb/atusb.c - ATUSB initialization and main loop
* *
* Written 2008-2010 by Werner Almesberger * Written 2008-2010 by Werner Almesberger
* Copyright 2008-2010 Werner Almesberger * Copyright 2008-2010 Werner Almesberger
@ -14,7 +14,7 @@
#include "regs.h" #include "regs.h"
#include "io.h" #include "io.h"
#include "usb.h" #include "usb.h"
#include "atspi/ep0.h" #include "atusb/ep0.h"
#include "version.h" #include "version.h"

View File

@ -20,7 +20,7 @@
#include "regs.h" #include "regs.h"
//#include "uart.h" //#include "uart.h"
#include "usb.h" #include "usb.h"
#include "atspi/ep0.h" #include "atusb/ep0.h"
#include "at86rf230.h" #include "at86rf230.h"
#include "version.h" #include "version.h"

View File

@ -15,7 +15,7 @@
#include "io.h" #include "io.h"
#include "io-parts.h" #include "io-parts.h"
#include "atspi/usb-ids.h" #include "atusb/usb-ids.h"
/* ----- Boot loader configuration ----------------------------------------- */ /* ----- Boot loader configuration ----------------------------------------- */

View File

@ -1,5 +1,5 @@
/* /*
* include/atspi/ep0.h - EP0 extension protocol * include/atusb/ep0.h - EP0 extension protocol
* *
* Written 2008-2010 by Werner Almesberger * Written 2008-2010 by Werner Almesberger
* Copyright 2008-2010 Werner Almesberger * Copyright 2008-2010 Werner Almesberger

View File

@ -19,7 +19,7 @@
#endif #endif
#include "at86rf230.h" #include "at86rf230.h"
#include "atspi/ep0.h" #include "atusb/ep0.h"
#include "atspi.h" #include "atspi.h"

View File

@ -16,7 +16,6 @@
#include <sys/time.h> #include <sys/time.h>
#include "at86rf230.h" #include "at86rf230.h"
#include "atspi/ep0.h"
#include "atspi.h" #include "atspi.h"

View File

@ -15,8 +15,8 @@
#include <usb.h> #include <usb.h>
#include "f32xbase/usb.h" #include "f32xbase/usb.h"
#include "atspi/ep0.h" #include "atusb/ep0.h"
#include "atspi/usb-ids.h" #include "atusb/usb-ids.h"
#include "driver.h" #include "driver.h"