Compare commits
103 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 143f733077 | |||
| a774a98ea4 | |||
| 22350a3555 | |||
| bd3ab34263 | |||
| 1f3ef4c84a | |||
| 2add4a55ef | |||
| 8788cf21c4 | |||
| 2ddc9eb927 | |||
| a4f8684bef | |||
| 10c6cf52b1 | |||
| f12064e029 | |||
| 985cf9f977 | |||
| 1b54fcae86 | |||
| f1b2e5a530 | |||
| 2464c99999 | |||
| 17fd5ace9b | |||
| e266de61bf | |||
| e8ba02eb7a | |||
| 40edc8677f | |||
| 82d9be071b | |||
| 81760c35c9 | |||
| 9a361e6e97 | |||
| 67a276dbb6 | |||
| be1276785c | |||
| 2f8b646a4f | |||
| 1ff7bc8746 | |||
| 1dbf5c1b6b | |||
| 5ba1f22de8 | |||
| e04a49b6a0 | |||
| 5b2529ad71 | |||
| e0a193c671 | |||
| 99023db231 | |||
| 2c5c92e578 | |||
| 22594e36c0 | |||
| 9018c98a68 | |||
| 62ed077791 | |||
| 68b32a5a15 | |||
| a24aebf4ac | |||
| 95a7926f36 | |||
| 76d5537b7a | |||
| 75f1fcc663 | |||
| ab803c7a54 | |||
| 0431f8f1be | |||
| 4f1884a468 | |||
| 1789fd82a0 | |||
| 9602b5e7fb | |||
| 08e9cc715f | |||
| 578b483c68 | |||
| fc2bd6b187 | |||
| e7180b56ee | |||
| 020703e07d | |||
| c1e8443ceb | |||
| 7cda4c4dec | |||
| 4194730f9c | |||
| a3fabf7eb6 | |||
| 33b17782cf | |||
| 0307d7ba2a | |||
| 00c431dfd0 | |||
| 317b34a8c0 | |||
| 09060b0b6f | |||
| 4cdda6dacb | |||
| 54193ffae7 | |||
| af5cd3dcf2 | |||
| c9985a3c67 | |||
| 1d7aa1b0ad | |||
| bb4561bd4e | |||
| 9077420de8 | |||
| 26e5f36783 | |||
| 4d5b7b3033 | |||
| ed73d2fdae | |||
| a00aec83ff | |||
| 6b611ff248 | |||
| e2af8153ed | |||
| 5724a22c9d | |||
| ee8e207004 | |||
| a2c93167ce | |||
| e94fd65e8f | |||
| ddf2f9e8f5 | |||
| 923e6408e7 | |||
| 96e6a441b9 | |||
| fbb8a4cbf6 | |||
| 2c84a79ebb | |||
| 7bd2381dca | |||
| a922b0cc40 | |||
| 3c0cf37074 | |||
| f9412ed0ea | |||
| da6647391c | |||
| a2c6c0298e | |||
| aa6c58df79 | |||
| 71d43c26be | |||
| e9dea14165 | |||
| 3b076f0faa | |||
| 2f4c6ce787 | |||
| 6425ffd91c | |||
| cbbe0a7387 | |||
| ad0c8e6bd6 | |||
| 68085d5ea5 | |||
| bfba8a23e1 | |||
| 2cd847b57b | |||
| 11928ccbb8 | |||
| 7bc70b5a72 | |||
| e10eeb48dd | |||
| 1298b5ce2a |
@@ -1,10 +0,0 @@
|
||||
#safe table
|
||||
#Sat Feb 15 20:42:11 CST 2020
|
||||
.contributors=19
|
||||
.mainData=19
|
||||
.table=19
|
||||
.namespaces=19
|
||||
.orphans=19
|
||||
.contributions=19
|
||||
.extraData=19
|
||||
.crc1820b878.v1
|
||||
@@ -1,4 +0,0 @@
|
||||
#safe table
|
||||
#Wed Feb 19 22:45:58 CST 2020
|
||||
framework.info=10
|
||||
.crcb678e773.v1
|
||||
@@ -1,4 +0,0 @@
|
||||
#safe table
|
||||
#Wed Feb 19 22:46:38 CST 2020
|
||||
framework.info=11
|
||||
.crc93736921.v1
|
||||
|
Before Width: | Height: | Size: 959 B |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 556 B |
|
Before Width: | Height: | Size: 603 B |
|
Before Width: | Height: | Size: 931 B |
@@ -1,147 +0,0 @@
|
||||
importPackage(Packages.com.ti.ccstudio.scripting.gss)
|
||||
|
||||
/**
|
||||
* Exports the visible contents of a DVT table view to a CSV(comma separated values) file.
|
||||
* Note: This function only works on a DVT table views currently.
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.exportAll("c:/rawlogs.csv");
|
||||
* @param fileName the complete path directory path and filename of the file data will be exported to - example: 'c:/myfile.csv'
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function exportAll(fileName) {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Applies or removes a filter to/from a DVT data view.
|
||||
* Sample Usage:
|
||||
* v = openView("Raw Logs");
|
||||
* v.applyFilter('formattedMsg like ".*swi.*"');
|
||||
* v.applyFilter('(seqID> 8653) && (formattedMsg like ".*swi.*")');
|
||||
* v.applyFilter(''); //to remove filter
|
||||
* v.applyFilter(null); // to remove filter
|
||||
* @param dvtExpression the expression to be used when filtering - please search for "DVT expression" in main CCS help for the syntax
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function applyFilter(dvtExpression) {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the number of records in this view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getRecordCount();
|
||||
* @returns integer
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getRecordCount() {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the fieldNames in the buffer connected to this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getFieldNames();
|
||||
* @returns String[]
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getFieldNames() {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a record in the buffer connected to this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getRecord(0);
|
||||
* @param recordIndex - zero based
|
||||
* @returns Object[]
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getRecord(recordIndex) {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of field in a record in the buffer connected to this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getValue(1, "currentThread");
|
||||
* @param rowNumber - starting from 1
|
||||
* @param columnName
|
||||
* @returns Object
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getValue(rowNumber, columnName) {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the textual string value of a field in a record in the buffer connected to this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getValue(2, "currentThread");
|
||||
* @param rowNumber - starting from 1
|
||||
* @param columnName
|
||||
* @returns String
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getText(rowNumber, columnName) {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the status message in the bottom left side of this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getStatus();
|
||||
* @returns String
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getStatus() {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the progress text in the bottom right side of this data view
|
||||
* Sample Usage:
|
||||
* myview = openView("Raw Logs");
|
||||
* myview.getProgress();
|
||||
* @returns String
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function getProgress() {
|
||||
; // this function is only provided for scripting console help purposes - the actual implementation is in Java code
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* opens an Analysis View. E.g. to open a single time graph, openAnalysisView('Single Time','C:\\abc.graphProp')
|
||||
* @param viewID Name of the view. Please see feature specific view names
|
||||
* For CCS Graphs Feature: 'Single Time', 'Dual Time', 'FFT Magnitude', 'FFT Magnitude Phase', 'Complex FFT', 'FFT Waterfall'
|
||||
* @param arg See feature specific interpretation of this argument
|
||||
* For CCS Graphs: Used as a property file from which to load the graph property values
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function openAnalysisView(viewID, arg) {
|
||||
wb = GSSScripting.getInstance().getActiveWorkbenchWindow();
|
||||
view = wb.openView(viewID, arg, 0);
|
||||
return view;
|
||||
}
|
||||
|
||||
/**
|
||||
* Opens(/Activates) a view using both primary and secondary IDs
|
||||
* @param primaryID (example: com.ti.dvt.ui.views.dvtgraph )
|
||||
* @param secondaryID (example: dvtviewname)
|
||||
* @service DVT Analysis UI scripting commands
|
||||
*/
|
||||
function openView2(primaryID, secondaryID) {
|
||||
wb = GSSScripting.getInstance().getActiveWorkbenchWindow();
|
||||
wb.openView(primaryID, secondaryID, 1); //1: IWorkbenchPage.VIEW_ACTIVATE ( 2: VIEW_VISIBLE, 3:VIEW_CREATE )
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 361 B |
|
Before Width: | Height: | Size: 578 B |
|
Before Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 372 B |
|
Before Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 200 B |
|
Before Width: | Height: | Size: 441 B |
|
Before Width: | Height: | Size: 321 B |
|
Before Width: | Height: | Size: 407 B |
|
Before Width: | Height: | Size: 349 B |
|
Before Width: | Height: | Size: 304 B |
|
Before Width: | Height: | Size: 291 B |
|
Before Width: | Height: | Size: 492 B |
|
Before Width: | Height: | Size: 614 B |
|
Before Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 727 B |
|
Before Width: | Height: | Size: 539 B |
|
Before Width: | Height: | Size: 252 B |
|
Before Width: | Height: | Size: 429 B |
|
Before Width: | Height: | Size: 356 B |
|
Before Width: | Height: | Size: 457 B |
|
Before Width: | Height: | Size: 379 B |
|
Before Width: | Height: | Size: 318 B |
|
Before Width: | Height: | Size: 330 B |
|
Before Width: | Height: | Size: 563 B |
|
Before Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 284 B |
|
Before Width: | Height: | Size: 378 B |
|
Before Width: | Height: | Size: 245 B |
|
Before Width: | Height: | Size: 267 B |
|
Before Width: | Height: | Size: 479 B |
|
Before Width: | Height: | Size: 762 B |
@@ -1,23 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<?artifactRepository version='1.1.0'?>
|
||||
<repository name='C:\ti\ccs910\ccs\eclipse\.eclipseextension' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1.0.0'>
|
||||
<properties size='3'>
|
||||
<property name='p2.timestamp' value='1582123682247'/>
|
||||
<property name='org.eclipse.update.site.policy' value='USER-EXCLUDE'/>
|
||||
<property name='org.eclipse.update.site.list' value=''/>
|
||||
</properties>
|
||||
<mappings size='3'>
|
||||
<rule filter='(& (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
|
||||
<rule filter='(& (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
|
||||
<rule filter='(& (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
|
||||
</mappings>
|
||||
<artifacts size='1'>
|
||||
<artifact classifier='osgi.bundle' id='com.ti.cc2538' version='2.0.4.11'>
|
||||
<repositoryProperties size='3'>
|
||||
<property name='artifact.folder' value='true'/>
|
||||
<property name='artifact.reference' value='file:/C:/ti/ccs910/ccs/eclipse/plugins/com.ti.cc2538_2.00.04.11/'/>
|
||||
<property name='file.name' value='C:\ti\ccs910\ccs\eclipse\plugins\com.ti.cc2538_2.00.04.11'/>
|
||||
</repositoryProperties>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</repository>
|
||||
@@ -1,6 +0,0 @@
|
||||
#Sat Feb 15 19:49:19 CST 2020
|
||||
C\:\\ti\\ccs910\\ccs\\eclipse\\links=0
|
||||
C\:\\ti\\ccs910\\ccs\\eclipse\\plugins=1565848658658
|
||||
C\:\\ti\\ccs910\\ccs\\eclipse\\configuration\\org.eclipse.update\\platform.xml=1565848659942
|
||||
C\:\\ti\\ccs910\\ccs\\eclipse\\features=1565848658716
|
||||
C\:\\ti\\ccs910\\ccs\\eclipse\\dropins=1565844995326
|
||||
@@ -1,5 +0,0 @@
|
||||
#Timestamps for epp.package.cpp
|
||||
#Sat Feb 15 19:49:19 CST 2020
|
||||
file\:/C\:/ti/ccs910/ccs/eclipse/configuration/org.eclipse.osgi/381/data/listener_1925729951/=1581767358447
|
||||
PROFILE=1581767359473
|
||||
file\:/C\:/ti/ccs910/ccs/eclipse/.eclipseextension=1581767359204
|
||||
|
Before Width: | Height: | Size: 513 B |
|
Before Width: | Height: | Size: 577 B |
|
Before Width: | Height: | Size: 121 B |
|
Before Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 655 B |
@@ -1,14 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<?artifactRepository version='1.1.0'?>
|
||||
<repository name='update site: file:/C:/ti/ccs910/ccs/eclipse/configuration/org.eclipse.osgi/381/data/listener_1925729951/' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'>
|
||||
<properties size='2'>
|
||||
<property name='p2.timestamp' value='1581767358483'/>
|
||||
<property name='site.checksum' value='0'/>
|
||||
</properties>
|
||||
<mappings size='3'>
|
||||
<rule filter='(& (classifier=osgi.bundle))' output='${repoUrl}/plugins/${id}_${version}.jar'/>
|
||||
<rule filter='(& (classifier=binary))' output='${repoUrl}/binary/${id}_${version}'/>
|
||||
<rule filter='(& (classifier=org.eclipse.update.feature))' output='${repoUrl}/features/${id}_${version}.jar'/>
|
||||
</mappings>
|
||||
<artifacts size='0'/>
|
||||
</repository>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<?metadataRepository version='1.2.0'?>
|
||||
<repository name='update site: file:/C:/ti/ccs910/ccs/eclipse/configuration/org.eclipse.osgi/381/data/listener_1925729951/' type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1'>
|
||||
<properties size='2'>
|
||||
<property name='p2.timestamp' value='1581767358431'/>
|
||||
<property name='site.checksum' value='0'/>
|
||||
</properties>
|
||||
</repository>
|
||||
|
Before Width: | Height: | Size: 861 B |
|
Before Width: | Height: | Size: 525 B |
|
Before Width: | Height: | Size: 330 B |
|
Before Width: | Height: | Size: 236 B |
|
Before Width: | Height: | Size: 210 B |
|
Before Width: | Height: | Size: 327 B |
|
Before Width: | Height: | Size: 153 B |
|
Before Width: | Height: | Size: 147 B |
|
Before Width: | Height: | Size: 273 B |
@@ -1,18 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Bundle-SymbolicName: com.ti.ccstudio.builddefinitions.generator; singl
|
||||
eton:=true
|
||||
Export-Package: com.ti.ccstudio.builddefinitions.generator;x-friends:=
|
||||
com.ti.ccstudio.project.core,com.ti.ccstudio.builddefinitions.generat
|
||||
or.internal;x-internal:=true,com.ti.ccstudio.builddefinitions.generat
|
||||
or.internal.legacy;x-internal:=true,com.ti.ccstudio.builddefinitions.
|
||||
generator.internal.model;x-internal:=true,com.ti.ccstudio.builddefini
|
||||
tions.generator.internal.util;x-internal:=true
|
||||
Bundle-Name: CCS Build Definitions Generator
|
||||
Bundle-Version: 9.1.0.201905231800
|
||||
Bundle-Localization: plugin
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Vendor: Texas Instruments
|
||||
|
||||
|
||||