Remove all project files from stlink.

The project is made with Makefiles, so while the project files provided some convenience to some people, they were not in any
way portable or maintained.  Removing them also allows other people to keep their own versions without having to deal with
shared conflicts.

Updated gitignore to reflec this.
pull/57/head
Karl Palsson 2012-02-01 23:54:02 +00:00
rodzic 18d6fe4893
commit 9153dd5c08
6 zmienionych plików z 2 dodań i 931 usunięć

3
.gitignore vendored
Wyświetl plik

@ -1,4 +1,5 @@
/nbproject/private/
nbproject
.project
*.o
*.elf
doc/tutorial/*.log

Wyświetl plik

@ -1,81 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>stlink</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
<dictionary>
<key>?children?</key>
<value>?name?=outputEntries\|?children?=?name?=entry\\\\\\\|\\\|\||</value>
</dictionary>
<dictionary>
<key>?name?</key>
<value></value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.append_environment</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.autoBuildTarget</key>
<value>all</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildArguments</key>
<value></value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.buildCommand</key>
<value>make</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.cleanBuildTarget</key>
<value>clean</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.contents</key>
<value>org.eclipse.cdt.make.core.activeConfigSettings</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableAutoBuild</key>
<value>false</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableCleanBuild</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.enableFullBuild</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.fullBuildTarget</key>
<value>all</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.stopOnError</key>
<value>true</value>
</dictionary>
<dictionary>
<key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key>
<value>true</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
</projectDescription>

Wyświetl plik

@ -1,75 +0,0 @@
#!/bin/bash -x
#
# Generated - do not edit!
#
# Macros
TOP=`pwd`
CND_PLATFORM=GNU-Linux-x86
CND_CONF=Default
CND_DISTDIR=dist
CND_BUILDDIR=build
NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
TMPDIRNAME=tmp-packaging
OUTPUT_PATH=gdbserver/st-util
OUTPUT_BASENAME=st-util
PACKAGE_TOP_DIR=stlink/
# Functions
function checkReturnCode
{
rc=$?
if [ $rc != 0 ]
then
exit $rc
fi
}
function makeDirectory
# $1 directory path
# $2 permission (optional)
{
mkdir -p "$1"
checkReturnCode
if [ "$2" != "" ]
then
chmod $2 "$1"
checkReturnCode
fi
}
function copyFileToTmpDir
# $1 from-file path
# $2 to-file path
# $3 permission
{
cp "$1" "$2"
checkReturnCode
if [ "$3" != "" ]
then
chmod $3 "$2"
checkReturnCode
fi
}
# Setup
cd "${TOP}"
mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
rm -rf ${NBTMPDIR}
mkdir -p ${NBTMPDIR}
# Copy files and create directories and links
cd "${TOP}"
makeDirectory "${NBTMPDIR}/stlink/bin"
copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
# Generate tar file
cd "${TOP}"
rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/stlink.tar
cd ${NBTMPDIR}
tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/stlink.tar *
checkReturnCode
# Cleanup
cd "${TOP}"
rm -rf ${NBTMPDIR}

Wyświetl plik

@ -1,75 +0,0 @@
#!/bin/bash -x
#
# Generated - do not edit!
#
# Macros
TOP=`pwd`
CND_PLATFORM=GNU-Linux-x86
CND_CONF=flash
CND_DISTDIR=dist
CND_BUILDDIR=build
NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
TMPDIRNAME=tmp-packaging
OUTPUT_PATH=MissingOutputInProject
OUTPUT_BASENAME=MissingOutputInProject
PACKAGE_TOP_DIR=stlink/
# Functions
function checkReturnCode
{
rc=$?
if [ $rc != 0 ]
then
exit $rc
fi
}
function makeDirectory
# $1 directory path
# $2 permission (optional)
{
mkdir -p "$1"
checkReturnCode
if [ "$2" != "" ]
then
chmod $2 "$1"
checkReturnCode
fi
}
function copyFileToTmpDir
# $1 from-file path
# $2 to-file path
# $3 permission
{
cp "$1" "$2"
checkReturnCode
if [ "$3" != "" ]
then
chmod $3 "$2"
checkReturnCode
fi
}
# Setup
cd "${TOP}"
mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
rm -rf ${NBTMPDIR}
mkdir -p ${NBTMPDIR}
# Copy files and create directories and links
cd "${TOP}"
makeDirectory "${NBTMPDIR}/stlink"
copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
# Generate tar file
cd "${TOP}"
rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/stlink.tar
cd ${NBTMPDIR}
tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/stlink.tar *
checkReturnCode
# Cleanup
cd "${TOP}"
rm -rf ${NBTMPDIR}

Wyświetl plik

@ -1,672 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<configurationDescriptor version="79">
<logicalFolder name="root" displayName="root" projectFiles="true" kind="ROOT">
<df name="stlink" root=".">
<df name="doc">
<df name="tutorial">
</df>
</df>
<df name="example">
<df name="32l_dac">
<in>discover_board.h</in>
<in>main.c</in>
<in>startup_stm32l1xx_md.s</in>
<in>system_stm32l1xx.c</in>
</df>
<df name="32l_lcd">
<in>discover_board.h</in>
<in>main.c</in>
<in>stm32l_discovery_lcd.c</in>
<in>stm32l_discovery_lcd.h</in>
</df>
<df name="32vl_factory_demo">
<in>main.c</in>
<in>startup_stm32f10x_md_vl.S</in>
<in>stm32f10x_conf.h</in>
<in>stm32f10x_it.c</in>
<in>stm32f10x_it.h</in>
<in>system_stm32f10x.c</in>
</df>
<df name="blink">
<in>main.c</in>
</df>
<df name="blink_flash">
<in>discover_board.h</in>
<in>main.c</in>
<in>startup_stm32l1xx_md.s</in>
<in>system_stm32l1xx.c</in>
</df>
<df name="board_support">
<df name="discovery_32vl">
<in>STM32vldiscovery.c</in>
<in>STM32vldiscovery.h</in>
</df>
</df>
<df name="libs_stm">
<df name="build">
</df>
<df name="inc">
<df name="base">
<in>stdint.h</in>
</df>
<df name="core_support">
<in>core_cm3.c</in>
<in>core_cm3.h</in>
</df>
<df name="device_support">
<in>stm32f10x.h</in>
<in>stm32l1xx.h</in>
<in>system_stm32f10x.h</in>
<in>system_stm32l1xx.h</in>
</df>
<df name="stm32f10x">
<in>misc.h</in>
<in>stm32f10x_adc.h</in>
<in>stm32f10x_bkp.h</in>
<in>stm32f10x_can.h</in>
<in>stm32f10x_cec.h</in>
<in>stm32f10x_crc.h</in>
<in>stm32f10x_dac.h</in>
<in>stm32f10x_dbgmcu.h</in>
<in>stm32f10x_dma.h</in>
<in>stm32f10x_exti.h</in>
<in>stm32f10x_flash.h</in>
<in>stm32f10x_fsmc.h</in>
<in>stm32f10x_gpio.h</in>
<in>stm32f10x_i2c.h</in>
<in>stm32f10x_iwdg.h</in>
<in>stm32f10x_pwr.h</in>
<in>stm32f10x_rcc.h</in>
<in>stm32f10x_rtc.h</in>
<in>stm32f10x_sdio.h</in>
<in>stm32f10x_spi.h</in>
<in>stm32f10x_tim.h</in>
<in>stm32f10x_usart.h</in>
<in>stm32f10x_wwdg.h</in>
</df>
<df name="stm32l1xx">
<in>misc.h</in>
<in>stm32l1xx_adc.h</in>
<in>stm32l1xx_comp.h</in>
<in>stm32l1xx_crc.h</in>
<in>stm32l1xx_dac.h</in>
<in>stm32l1xx_dbgmcu.h</in>
<in>stm32l1xx_dma.h</in>
<in>stm32l1xx_exti.h</in>
<in>stm32l1xx_flash.h</in>
<in>stm32l1xx_gpio.h</in>
<in>stm32l1xx_i2c.h</in>
<in>stm32l1xx_iwdg.h</in>
<in>stm32l1xx_lcd.h</in>
<in>stm32l1xx_pwr.h</in>
<in>stm32l1xx_rcc.h</in>
<in>stm32l1xx_rtc.h</in>
<in>stm32l1xx_spi.h</in>
<in>stm32l1xx_syscfg.h</in>
<in>stm32l1xx_tim.h</in>
<in>stm32l1xx_usart.h</in>
<in>stm32l1xx_wwdg.h</in>
</df>
</df>
<df name="src">
<df name="stm32f10x">
<in>misc.c</in>
<in>stm32f10x_adc.c</in>
<in>stm32f10x_bkp.c</in>
<in>stm32f10x_can.c</in>
<in>stm32f10x_cec.c</in>
<in>stm32f10x_crc.c</in>
<in>stm32f10x_dac.c</in>
<in>stm32f10x_dbgmcu.c</in>
<in>stm32f10x_dma.c</in>
<in>stm32f10x_exti.c</in>
<in>stm32f10x_flash.c</in>
<in>stm32f10x_fsmc.c</in>
<in>stm32f10x_gpio.c</in>
<in>stm32f10x_i2c.c</in>
<in>stm32f10x_iwdg.c</in>
<in>stm32f10x_pwr.c</in>
<in>stm32f10x_rcc.c</in>
<in>stm32f10x_rtc.c</in>
<in>stm32f10x_sdio.c</in>
<in>stm32f10x_spi.c</in>
<in>stm32f10x_tim.c</in>
<in>stm32f10x_usart.c</in>
<in>stm32f10x_wwdg.c</in>
</df>
<df name="stm32l1xx">
<in>misc.c</in>
<in>stm32l1xx_adc.c</in>
<in>stm32l1xx_comp.c</in>
<in>stm32l1xx_crc.c</in>
<in>stm32l1xx_dac.c</in>
<in>stm32l1xx_dbgmcu.c</in>
<in>stm32l1xx_dma.c</in>
<in>stm32l1xx_exti.c</in>
<in>stm32l1xx_flash.c</in>
<in>stm32l1xx_flash_ramfunc.c</in>
<in>stm32l1xx_gpio.c</in>
<in>stm32l1xx_i2c.c</in>
<in>stm32l1xx_iwdg.c</in>
<in>stm32l1xx_lcd.c</in>
<in>stm32l1xx_pwr.c</in>
<in>stm32l1xx_rcc.c</in>
<in>stm32l1xx_rtc.c</in>
<in>stm32l1xx_spi.c</in>
<in>stm32l1xx_syscfg.c</in>
<in>stm32l1xx_tim.c</in>
<in>stm32l1xx_usart.c</in>
<in>stm32l1xx_wwdg.c</in>
</df>
</df>
</df>
<df name="libs_stm">
<df name="inc">
<df name="base">
</df>
<df name="base">
</df>
<df name="device_support">
</df>
<df name="device_support">
</df>
<df name="stm32f10x">
</df>
<df name="stm32l1xx">
</df>
<df name="stm32l1xx">
</df>
</df>
</df>
<df name="libs_stm">
<df name="inc">
<df name="base">
</df>
<df name="base">
</df>
<df name="device_support">
</df>
<df name="device_support">
</df>
<df name="stm32f10x">
</df>
<df name="stm32f10x">
</df>
<df name="stm32l1xx">
</df>
<df name="stm32l1xx">
</df>
</df>
</df>
</df>
<df name="flash">
<in>main.c</in>
</df>
<df name="gdbserver">
<in>gdb-remote.c</in>
<in>gdb-remote.h</in>
<in>gdb-server.c</in>
</df>
<df name="src">
<in>stlink-common.c</in>
<in>stlink-common.h</in>
<in>stlink-sg.c</in>
<in>stlink-sg.h</in>
<in>stlink-usb.c</in>
<in>stlink-usb.h</in>
<in>test_sg.c</in>
<in>test_usb.c</in>
<in>uglylogging.c</in>
<in>uglylogging.h</in>
</df>
<df name="toremove">
<df name="stm32l">
<df name="src">
<in>stlink-hw.h</in>
</df>
</df>
<df name="stm32l_notes">
</df>
</df>
</df>
<logicalFolder name="ExternalFiles"
displayName="Important Files"
projectFiles="false"
kind="IMPORTANT_FILES_FOLDER">
<itemPath>Makefile</itemPath>
</logicalFolder>
</logicalFolder>
<sourceFolderFilter>^(nbproject)$</sourceFolderFilter>
<sourceRootList>
<Elem>.</Elem>
</sourceRootList>
<projectmakefile>Makefile</projectmakefile>
<confs>
<conf name="Default" type="0">
<toolsSet>
<remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
<compilerSet>default</compilerSet>
</toolsSet>
<makefileType>
<makeTool>
<buildCommandWorkingDir>.</buildCommandWorkingDir>
<buildCommand>${MAKE} -f Makefile</buildCommand>
<cleanCommand>${MAKE} -f Makefile clean</cleanCommand>
<executablePath>gdbserver/st-util</executablePath>
</makeTool>
</makefileType>
<item path="example/32l_dac/startup_stm32l1xx_md.s"
ex="true"
tool="4"
flavor="0">
</item>
<item path="example/32vl_factory_demo/startup_stm32f10x_md_vl.S"
ex="true"
tool="4"
flavor="0">
</item>
<item path="example/blink/main.c" ex="true" tool="0" flavor="0">
</item>
<item path="example/blink_flash/discover_board.h" ex="true" tool="3" flavor="0">
</item>
<item path="example/blink_flash/main.c" ex="true" tool="0" flavor="0">
</item>
<item path="example/blink_flash/startup_stm32l1xx_md.s"
ex="true"
tool="4"
flavor="0">
</item>
<item path="example/blink_flash/system_stm32l1xx.c"
ex="true"
tool="0"
flavor="0">
</item>
<item path="example/blink_mfischer/crt.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/blink_mfischer/main.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/blink_mfischer/vectors_stm32f10x_md.c"
ex="false"
tool="3"
flavor="0">
</item>
<item path="example/dac/main.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/dac/system_stm32l1xx.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/lcd/main.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/lcd/stm32l_discovery_lcd.c" ex="false" tool="3" flavor="0">
</item>
<item path="example/libs_stm/inc/base/stdint.h" ex="true" tool="3" flavor="0">
</item>
<item path="example/libs_stm/inc/core_support/core_cm3.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/device_support/stm32f10x.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/device_support/stm32l1xx.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/device_support/system_stm32f10x.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/device_support/system_stm32l1xx.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/misc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_adc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_bkp.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_can.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_cec.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_crc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_dac.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_dbgmcu.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_dma.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_exti.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_flash.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_fsmc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_gpio.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_i2c.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_iwdg.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_pwr.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_rcc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_rtc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_sdio.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_spi.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_tim.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_usart.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32f10x/stm32f10x_wwdg.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/misc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_adc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_comp.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_crc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_dac.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_dbgmcu.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_dma.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_exti.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_flash.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_gpio.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_i2c.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_iwdg.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_lcd.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_pwr.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_rcc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_rtc.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_spi.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_syscfg.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_tim.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_usart.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libs_stm/inc/stm32l1xx/stm32l1xx_wwdg.h"
ex="true"
tool="3"
flavor="0">
</item>
<item path="example/libstm32l_discovery/inc/core_support/core_cm3.c"
ex="false"
tool="3"
flavor="0">
</item>
<folder path="stlink/example">
<cTool>
<incDir>
<pElem>.</pElem>
</incDir>
<preprocessorList>
<Elem>DEBUG=1</Elem>
</preprocessorList>
</cTool>
</folder>
<folder path="stlink/flash">
<cTool>
<incDir>
<pElem>src</pElem>
</incDir>
<preprocessorList>
<Elem>CONFIG_USE_LIBUSB=1</Elem>
<Elem>DEBUG</Elem>
</preprocessorList>
</cTool>
</folder>
<folder path="stlink/gdbserver">
<cTool>
<incDir>
<pElem>src</pElem>
</incDir>
<preprocessorList>
<Elem>CONFIG_USE_LIBUSB=1</Elem>
</preprocessorList>
</cTool>
</folder>
<folder path="stlink/src">
<cTool>
<incDir>
<pElem>.</pElem>
</incDir>
<preprocessorList>
<Elem>DEBUG=1</Elem>
</preprocessorList>
</cTool>
</folder>
<item path="toremove/stm32l/src/stlink-hw.h" ex="true" tool="3" flavor="0">
</item>
</conf>
<conf name="flash" type="0">
<toolsSet>
<remote-sources-mode>LOCAL_SOURCES</remote-sources-mode>
<compilerSet>default</compilerSet>
</toolsSet>
<makefileType>
<makeTool>
<buildCommandWorkingDir>flash</buildCommandWorkingDir>
<buildCommand>${MAKE} -f Makefile</buildCommand>
<cleanCommand>${MAKE} -f Makefile clean</cleanCommand>
<executablePath></executablePath>
<cTool>
<preprocessorList>
<Elem>DEBUG</Elem>
</preprocessorList>
</cTool>
</makeTool>
</makefileType>
<item path="example/32vl_factory_demo/startup_stm32f10x_md_vl.S"
ex="true"
tool="4"
flavor="0">
</item>
<item path="example/blink/main.c" ex="true" tool="0" flavor="0">
</item>
<item path="example/blink_flash/main.c" ex="true" tool="0" flavor="0">
</item>
<item path="example/blink_flash/startup_stm32l1xx_md.s"
ex="true"
tool="4"
flavor="0">
</item>
<item path="example/blink_flash/system_stm32l1xx.c"
ex="true"
tool="0"
flavor="0">
</item>
<folder path="stlink/flash">
<cTool>
<incDir>
<pElem>src</pElem>
</incDir>
<preprocessorList>
<Elem>CONFIG_USE_LIBUSB=1</Elem>
</preprocessorList>
</cTool>
</folder>
<folder path="stlink/gdbserver">
<cTool>
<incDir>
<pElem>src</pElem>
</incDir>
<preprocessorList>
<Elem>CONFIG_USE_LIBSG=1</Elem>
<Elem>CONFIG_USE_LIBUSB=1</Elem>
</preprocessorList>
</cTool>
</folder>
<folder path="stlink/src">
<cTool>
<incDir>
<pElem>.</pElem>
</incDir>
</cTool>
</folder>
<item path="gdbserver/gdb-remote.c" ex="true" tool="0" flavor="0">
</item>
<item path="gdbserver/gdb-remote.h" ex="true" tool="3" flavor="0">
</item>
<item path="gdbserver/gdb-server.c" ex="true" tool="0" flavor="0">
</item>
<item path="toremove/stm32l/src/stlink-hw.h" ex="true" tool="3" flavor="0">
</item>
</conf>
</confs>
</configurationDescriptor>

Wyświetl plik

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.cnd.makeproject</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/make-project/1">
<name>stlink</name>
<c-extensions>c</c-extensions>
<cpp-extensions/>
<header-extensions>h</header-extensions>
<sourceEncoding>UTF-8</sourceEncoding>
<make-dep-projects/>
<sourceRootList>
<sourceRootElem>.</sourceRootElem>
</sourceRootList>
<confList>
<confElem>
<name>Default</name>
<type>0</type>
</confElem>
<confElem>
<name>flash</name>
<type>0</type>
</confElem>
</confList>
</data>
</configuration>
</project>