getting there...

This commit is contained in:
Mariano Alvira 2010-02-21 18:47:12 -05:00
parent 5adb6413d7
commit 1759ff01a0
9 changed files with 296 additions and 164 deletions

7
board/Makefile.board Normal file
View file

@ -0,0 +1,7 @@
CFLAGS += -I obj_$(BOARD)_board
OBJDIR = obj_$(BOARD)_board
board:
@echo "setup object directory for dev board"
mkdir -p $(OBJDIR)
cp $(MC1322X)/board/$(BOARD).h $(OBJDIR)

View file

@ -1,7 +0,0 @@
#ifdef BOARD_REDBEE_DEV
#include "redbee-dev.h"
#endif
#ifdef BOARD_REDWIRE_R1
#include "red-r1.h"
#endif

4
board/redbee-dev.h Normal file
View file

@ -0,0 +1,4 @@
#ifndef BOARD_REDBEE_DEV_H
#define BOARD_REDBEE_DEV_H
#endif