Skip to content

Commit

Permalink
Added target XK-1A
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancoZandbergen committed Feb 4, 2014
1 parent 3d5b60a commit 2e621f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Demo/XMOS_XS1_XCC/simple/ParTest/ParTest.xc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ unsigned long mask = 0x0F;
#elif defined(XK_1)
on stdcore[0] : out port leds = XS1_PORT_4F;
unsigned long mask = 0x0F;
#elif defined(XK_1A)
on stdcore[0] : out port leds = XS1_PORT_4F;
unsigned long mask = 0x0F;
#elif defined(XDK)
on stdcore[0] : out port leds = XS1_PORT_1F;
unsigned long mask = 0x01;
Expand Down
8 changes: 7 additions & 1 deletion Demo/XMOS_XS1_XCC/simple/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,20 @@ ifeq ($(BOARD),XC_5)
TARGET=XC-5
endif
ifeq ($(BOARD),XK_1)
TARGET=XK-1
TARGET=XS1-L8A-64-TQ128-C5
endif
ifeq ($(BOARD),XK_1A)
TARGET=XK-1A
endif
ifeq ($(BOARD),XDK)
TARGET=XDK
endif
ifeq ($(BOARD),STARTKIT)
TARGET=STARTKIT
endif
ifeq ($(BOARD),SLICEKIT_L16)
TARGET=SLICEKIT-L16
endif

# program executable name
PROGRAM=demo.xe
Expand Down

0 comments on commit 2e621f8

Please sign in to comment.