boards: arm: Add support for TI SimpleLink WiFi CC3200 LaunchXL
Added Kconfig and makefiles to be able to build a Zephyr application on Linux/gcc, and load via OpenOCD. Validated by running the hello world, and philosophers microkernel samples, and stepping through the code in gdb. Jira: ZEP-1109 Change-Id: If5d3e7b1a8ecf5ecf6a00f147742b3bc5716190f Signed-off-by: Gil Pitney <gil.pitney@linaro.org>
This commit is contained in:
parent
385c7be8af
commit
10ea5d01c6
7 changed files with 55 additions and 2 deletions
6
boards/arm/cc3200_launchxl/Kconfig
Normal file
6
boards/arm/cc3200_launchxl/Kconfig
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Kconfig - TI CC3200 LaunchXL configuration
|
||||
#
|
||||
|
||||
if BOARD_CC3200_LAUNCHXL
|
||||
|
||||
endif # BOARD_CC3200_LAUNCHXL
|
6
boards/arm/cc3200_launchxl/Kconfig.board
Normal file
6
boards/arm/cc3200_launchxl/Kconfig.board
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Kconfig - TI SimpleLink CC3200 LaunchXL Board
|
||||
#
|
||||
|
||||
config BOARD_CC3200_LAUNCHXL
|
||||
bool "TI CC3200 LAUNCHXL"
|
||||
depends on SOC_CC3200
|
9
boards/arm/cc3200_launchxl/Kconfig.defconfig
Normal file
9
boards/arm/cc3200_launchxl/Kconfig.defconfig
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Kconfig - TI CC3200 LaunchXL board configuration
|
||||
#
|
||||
|
||||
if BOARD_CC3200_LAUNCHXL
|
||||
|
||||
config BOARD
|
||||
default cc3200_launchxl
|
||||
|
||||
endif # BOARD_CC3200_LAUNCHXL
|
2
boards/arm/cc3200_launchxl/Makefile
Normal file
2
boards/arm/cc3200_launchxl/Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
# No C files (yet)
|
||||
obj- += dummy.o
|
19
boards/arm/cc3200_launchxl/board.h
Normal file
19
boards/arm/cc3200_launchxl/board.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* Copyright (c) 2016, Texas Instruments Incorporated
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#ifndef __INC_BOARD_H
|
||||
#define __INC_BOARD_H
|
||||
|
||||
#endif /* __INC_BOARD_H */
|
12
boards/arm/cc3200_launchxl/cc3200_launchxl_defconfig
Normal file
12
boards/arm/cc3200_launchxl/cc3200_launchxl_defconfig
Normal file
|
@ -0,0 +1,12 @@
|
|||
CONFIG_ARM=y
|
||||
CONFIG_BOARD_CC3200_LAUNCHXL=y
|
||||
CONFIG_SOC_FAMILY_TISIMPLELINK=y
|
||||
CONFIG_SOC_SERIES_CC32XX=y
|
||||
CONFIG_SOC_CC3200=y
|
||||
CONFIG_CORTEX_M_SYSTICK=y
|
||||
CONFIG_FLASH=n
|
||||
CONFIG_FLASH_BASE_ADDRESS=0x00000000
|
||||
CONFIG_XIP=n
|
||||
|
||||
# Enable CC3200 SDK driver files
|
||||
CONFIG_CC3200SDK_BUILTIN=y
|
|
@ -3,8 +3,7 @@ name = arm
|
|||
platforms = qemu_cortex_m3 frdm_k64f arduino_due nucleo_f103rb stm32_mini_a15
|
||||
olimexino_stm32 96b_nitrogen nrf52_pca10040 hexiwear_k64
|
||||
nrf51_pca10028 nucleo_f401re 96b_carbon nrf51_blenano
|
||||
arduino_101_ble
|
||||
|
||||
arduino_101_ble cc3200_launchxl
|
||||
supported_toolchains = zephyr gccarmemb
|
||||
|
||||
[qemu_cortex_m3]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue