Marco Hsu / WIFI_API_32kRAM
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers boards.h Source File

boards.h

00001 /* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
00002  *
00003  * The information contained herein is property of Nordic Semiconductor ASA.
00004  * Terms and conditions of usage are described in detail in NORDIC
00005  * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
00006  *
00007  * Licensees are granted free, non-transferable use of the information. NO
00008  * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
00009  * the file.
00010  *
00011  */
00012 #ifndef BOARDS_H
00013 #define BOARDS_H
00014 
00015 #define BOARD_PCA10001//Tsungta
00016 
00017 #if defined(BOARD_NRF6310)
00018   #include "boards/nrf6310.h"
00019 #elif defined(BOARD_PCA10000)
00020   #include "boards/pca10000.h"
00021 #elif defined(BOARD_PCA10001)
00022   #include "pca10001.h"//Tsungta
00023 #elif defined(BOARD_PCA10003)
00024   #include "boards/pca10003.h"
00025 #else
00026 #error "Board is not defined"
00027 #endif
00028 
00029 #endif