Ввёл настройки PLL для SYS = 160, AUX = 60
This commit is contained in:
parent
f6852a4bec
commit
2bd2955417
@ -66,6 +66,7 @@
|
||||
</option>
|
||||
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE.1001775310" name="Pre-define NAME (--define, -D)" superClass="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE" valueType="definedSymbols">
|
||||
<listOptionValue builtIn="false" value="${COM_TI_C2000WARE_SOFTWARE_PACKAGE_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="SYS_160_AUX_60"/>
|
||||
<listOptionValue builtIn="false" value="${SYSCONFIG_TOOL_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="CPU1"/>
|
||||
<listOptionValue builtIn="false" value="USE_20MHZ_XTAL"/>
|
||||
@ -396,6 +397,7 @@
|
||||
<option id="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.ADVICE__PERFORMANCE.1653479912" name="Provide advice on optimization techniques (--advice:performance)" superClass="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.ADVICE__PERFORMANCE" value="--advice:performance=all" valueType="string"/>
|
||||
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE.1752541959" name="Pre-define NAME (--define, -D)" superClass="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE" valueType="definedSymbols">
|
||||
<listOptionValue builtIn="false" value="${COM_TI_C2000WARE_SOFTWARE_PACKAGE_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="SYS_160_AUX_60"/>
|
||||
<listOptionValue builtIn="false" value="${SYSCONFIG_TOOL_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="CPU2"/>
|
||||
<listOptionValue builtIn="false" value="USE_20MHZ_XTAL"/>
|
||||
@ -519,9 +521,10 @@
|
||||
</option>
|
||||
<option IS_BUILTIN_EMPTY="false" IS_VALUE_EMPTY="false" id="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE.189898346" name="Pre-define NAME (--define, -D)" superClass="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.DEFINE" valueType="definedSymbols">
|
||||
<listOptionValue builtIn="false" value="${COM_TI_C2000WARE_SOFTWARE_PACKAGE_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="SYS_160_AUX_60"/>
|
||||
<listOptionValue builtIn="false" value="${SYSCONFIG_TOOL_SYMBOLS}"/>
|
||||
<listOptionValue builtIn="false" value="CPU1"/>
|
||||
<listOptionValue builtIn="false" value="USE_20MHZ_XTAL"/>
|
||||
<listOptionValue builtIn="false" value="USE_25MHZ_XTAL"/>
|
||||
<listOptionValue builtIn="false" value="DEBUG"/>
|
||||
</option>
|
||||
<option id="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.OPT_LEVEL.1081819479" name="Optimization level (--opt_level, -O)" superClass="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.OPT_LEVEL" useByScannerDiscovery="false" value="com.ti.ccstudio.buildDefinitions.C2000_22.6.compilerID.OPT_LEVEL.off" valueType="enumerated"/>
|
||||
|
@ -1,4 +1,21 @@
|
||||
eclipse.preferences.version=1
|
||||
encoding//CPU1_RAM_DEBUG/Freemaster/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/Freemaster/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/device/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/device/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/lib/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/lib/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/makefile=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/objects.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/sources.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/ExternalEEPROM/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/ExternalEEPROM/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/Peripherals/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/Peripherals/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/src/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_DEBUG/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_RELEASE/Freemaster/subdir_rules.mk=UTF-8
|
||||
encoding//CPU1_RAM_RELEASE/Freemaster/subdir_vars.mk=UTF-8
|
||||
encoding//CPU1_RAM_RELEASE/device/subdir_rules.mk=UTF-8
|
||||
|
@ -74,6 +74,24 @@
|
||||
|
||||
#define OSC_FREQ 20
|
||||
|
||||
#ifdef SYS_160_AUX_60
|
||||
//
|
||||
// Multipliers and dividers to configure 160MHz SYSPLL output from 20MHz XTAL
|
||||
//
|
||||
#define SYS_IMULT IMULT_32
|
||||
#define SYS_REFDIV REFDIV_2
|
||||
#define SYS_ODIV ODIV_2
|
||||
#define SYS_DIV PLLCLK_BY_1
|
||||
|
||||
//
|
||||
// Multipliers and dividers to configure 60MHz AUXPLL output from 20MHz XTAL
|
||||
//
|
||||
#define AUX_IMULT IMULT_48
|
||||
#define AUX_REFDIV REFDIV_2
|
||||
#define AUX_ODIV ODIV_4
|
||||
#define AUX_DIV AUXPLLRAWCLK_BY_2
|
||||
|
||||
#else //SYS200_AUX_125
|
||||
//
|
||||
// Multipliers and dividers to configure 200MHz SYSPLL output from 20MHz XTAL
|
||||
//
|
||||
@ -89,12 +107,30 @@
|
||||
#define AUX_REFDIV REFDIV_2
|
||||
#define AUX_ODIV ODIV_4
|
||||
#define AUX_DIV AUXPLLRAWCLK_BY_1
|
||||
|
||||
#endif //SYS_160_AUX_200
|
||||
|
||||
#else // USE_25MHZ_XTAL
|
||||
|
||||
#define OSC_FREQ 25
|
||||
|
||||
#ifdef SYS_160_AUX_60
|
||||
//
|
||||
// Multipliers and dividers to configure 160MHz SYSPLL output from 20MHz XTAL
|
||||
//
|
||||
#define SYS_IMULT IMULT_64
|
||||
#define SYS_REFDIV REFDIV_2
|
||||
#define SYS_ODIV ODIV_5
|
||||
#define SYS_DIV PLLCLK_BY_1
|
||||
|
||||
//
|
||||
// Multipliers and dividers to configure 60MHz AUXPLL output from 20MHz XTAL
|
||||
//
|
||||
#define AUX_IMULT IMULT_24
|
||||
#define AUX_REFDIV REFDIV_2
|
||||
#define AUX_ODIV ODIV_5
|
||||
#define AUX_DIV AUXPLLRAWCLK_BY_1
|
||||
|
||||
#else //SYS200_AUX_125
|
||||
//
|
||||
// Multipliers and dividers to configure 200MHz SYSPLL output from 25MHz XTAL
|
||||
//
|
||||
@ -111,8 +147,9 @@
|
||||
#define AUX_ODIV ODIV_4
|
||||
#define AUX_DIV AUXPLLRAWCLK_BY_1
|
||||
|
||||
#endif
|
||||
#endif //SYS_160_AUX_60
|
||||
|
||||
#endif //USE_25MHZ_XTAL
|
||||
//
|
||||
// InitSysCtrl - Initialization of system resources.
|
||||
//
|
||||
|
@ -1,6 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<configurations XML_version="1.2" id="configurations_0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -23,7 +30,14 @@
|
||||
|
||||
|
||||
<configuration XML_version="1.2" id="Texas Instruments XDS100v2 USB Debug Probe_0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -46,7 +60,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" desc="Texas Instruments XDS100v2 USB Debug Probe_0" href="connections/TIXDS100v2_Connection.xml" id="Texas Instruments XDS100v2 USB Debug Probe_0" xml="TIXDS100v2_Connection.xml" xmlpath="connections"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -69,7 +90,14 @@
|
||||
|
||||
|
||||
<connection XML_version="1.2" id="Texas Instruments XDS100v2 USB Debug Probe_0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -92,7 +120,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2icepick_c.xml" id="drivers" xml="tixds100v2icepick_c.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -115,7 +150,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2c28x.xml" id="drivers" xml="tixds100v2c28x.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -138,7 +180,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2cla2.xml" id="drivers" xml="tixds100v2cla2.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -161,7 +210,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2cs_child.xml" id="drivers" xml="tixds100v2cs_child.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -184,7 +240,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2cs_dap.xml" id="drivers" xml="tixds100v2cs_dap.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -207,7 +270,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds100v2cortexM.xml" id="drivers" xml="tixds100v2cortexM.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -230,7 +300,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" href="drivers/tixds510ajsm.xml" id="drivers" xml="tixds510ajsm.xml" xmlpath="drivers"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -253,7 +330,14 @@
|
||||
|
||||
|
||||
<platform XML_version="1.2" id="platform_0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -276,7 +360,14 @@
|
||||
|
||||
|
||||
<instance XML_version="1.2" desc="TMS320F28388D_0" href="devices/f28388d.xml" id="TMS320F28388D_0" xml="f28388d.xml" xmlpath="devices"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -299,7 +390,14 @@
|
||||
|
||||
|
||||
<device HW_revision="1" XML_version="1.2" description="" id="TMS320F28388D_0" partnum="TMS320F28388D" simulation="no">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -322,7 +420,14 @@
|
||||
|
||||
|
||||
<router HW_revision="1.0" XML_version="1.2" description="ICEPick_C router" id="IcePick_C_0" isa="ICEPICK_C">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -345,7 +450,14 @@
|
||||
|
||||
|
||||
<subpath id="Subpath_1">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -368,7 +480,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x11" desc="Port Number_0" id="Port Number"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -391,7 +510,14 @@
|
||||
|
||||
|
||||
</subpath>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -414,7 +540,14 @@
|
||||
|
||||
|
||||
<subpath id="CM">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -437,7 +570,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x12" desc="Port Number_1" id="Port Number"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -460,7 +600,14 @@
|
||||
|
||||
|
||||
</subpath>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -483,7 +630,14 @@
|
||||
|
||||
|
||||
<subpath id="Subpath_3">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -506,7 +660,14 @@
|
||||
|
||||
|
||||
<cpu HW_revision="1.0" XML_version="1.2" description="JLM" deviceSim="false" id="JLM" isa="AJSM">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -529,7 +690,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x0" id="Unlock Key bits 31:00"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -552,7 +720,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x0" id="Unlock Key bits 63:32"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -575,7 +750,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x0" id="Unlock Key bits 95:64"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -598,7 +780,14 @@
|
||||
|
||||
|
||||
<property Type="numericfield" Value="0x0" id="Unlock Key bits 127:96"/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -621,7 +810,14 @@
|
||||
|
||||
|
||||
</cpu>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -644,7 +840,14 @@
|
||||
|
||||
|
||||
</subpath>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -667,7 +870,14 @@
|
||||
|
||||
|
||||
</router>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -690,7 +900,14 @@
|
||||
|
||||
|
||||
</device>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -713,7 +930,14 @@
|
||||
|
||||
|
||||
</platform>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -736,7 +960,14 @@
|
||||
|
||||
|
||||
</connection>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -759,7 +990,14 @@
|
||||
|
||||
|
||||
</configuration>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user