Skip to content

Commit a65b7c9

Browse files
committed
Bump version and docs for release.
Change-Id: I185d5c5599ee1e2141518ca86628ae7fb812db7a
1 parent 71cca27 commit a65b7c9

File tree

2,362 files changed

+90378
-19440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,362 files changed

+90378
-19440
lines changed

ARM.CMSIS.pdsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<url>http://www.keil.com/pack/</url>
99

1010
<releases>
11-
<release version="5.7.0-rc2">
11+
<release version="5.7.0" date="2020-04-09">
1212
CMSIS-Build: 0.9.0 (beta)
1313
- Draft for CMSIS Project description (CPRJ)
1414
CMSIS-Core(M): 5.4.0 (see revision history for details)

docs/Build/html/CmdLineBuild.html

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -110,8 +110,8 @@
110110
<div class="title">Command Line Build </div> </div>
111111
</div><!--header-->
112112
<div class="contents">
113-
<div class="textblock"><p>The following scripts and tools enable command line build with projects that include software components in CMSIS-Pack format:</p>
114-
<p>For command line build with software packs, the following tools are provided.</p>
113+
<div class="textblock"><p>The following bash scripts and command line tools can be used for managing the build of CMSIS Projects from the command line. These scripts can be easily adopted to specific environments and are intended as a minimal reference. CMSIS-Build tools are available for download as an asset of the respective <a href="https://github.com/ARM-software/CMSIS_5/releases/" target="_blank"><b>CMSIS Release Version</b></a> (starting 5.7.0 e/o April 2020).</p>
114+
<p>For command line build with software packs, the following tools and utilities are provided.</p>
115115
<table class="doxtable">
116116
<tr>
117117
<th align="left">Tool / Script </th><th align="left">Description </th></tr>
@@ -142,40 +142,37 @@ <h2>Usage Example </h2>
142142
</div><!-- fragment --><p>Start the build process for a existing project file: </p>
143143
<div class="fragment"><div class="line">$ cbuild.sh MyProject.cprj</div>
144144
</div><!-- fragment --><p>Below is the output that shows a successful build:</p>
145-
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000002">Todo:</a></b></dt><dd>update below for final release</dd></dl>
146-
<pre class="fragment">(cbuild.sh): Build Invocation 0.1.0 (C) 2020 ARM
145+
<pre class="fragment">(cbuild.sh): Build Invocation 0.9.0 (C) 2020 ARM
147146
MyProject.cprj validates
148-
CMSIS Build (cbuildgen) 0.1.1 (Feb 14 2020, 15:03:45)
149-
Copyright (C) 2020 ARM Ltd and ARM Germany GmbH. All rights reserved.
147+
(cbuildgen): Build Process Manager 0.9.0 (C) 2020
150148
M654: URL 'https://www.keil.com/pack/ARM.CMSIS.5.6.0.pack' was added to the list of missing packages.
151-
M650: Setup run successfully.
152-
(cp_install.sh): Install Packs 0.1.0 (C) 2020 ARM
149+
M650: Command completed successfully.
150+
(cp_install.sh): Install Packs 0.9.0 (C) 2020 ARM
153151
info: reading file: MyProject.cp_install
154152
dos2unix: converting file MyProject.cp_install to Unix format...
155153
https://www.keil.com/pack/ARM.CMSIS.5.6.0.pack
156-
######################################################################## 100.0%#=#=#
157-
info: ARM.CMSIS.5.6.0.pack installing into /c/project/MyPackRepo/ARM/CMSIS/5.6.0
154+
######################################################################## 100.0%
155+
info: ARM.CMSIS.5.6.0.pack installing into /c/Projects/Packs/ARM/CMSIS/5.6.0
158156
pack installation completed successfully
159-
CMSIS Build (cbuildgen) 0.1.1 (Feb 14 2020, 15:03:45)
160-
Copyright (C) 2020 ARM Ltd and ARM Germany GmbH. All rights reserved.
157+
(cbuildgen): Build Process Manager 0.9.0 (C) 2020 ARM
161158
M653: Local config file RTE/Device/ARMCM0/ARMCM0_ac6.sct was not found. Copying default file from package.
162159
M653: Local config file RTE/Device/ARMCM0/startup_ARMCM0.c was not found. Copying default file from package.
163160
M653: Local config file RTE/Device/ARMCM0/system_ARMCM0.c was not found. Copying default file from package.
164161
M651: Generated makefile for merging config files: 'MyProject_cfg.mak'
165162
M652: Generated makefile for project building:'MyProject.mak'
166-
mkdir -p "Objects/RTE/Device/Startup/C Startup"
167-
mkdir -p "Objects/Source"
168-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"Objects/Source/MyMain.o._cc"
169-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"Objects/RTE/Device/Startup/C Startup/startup_ARMCM0.o._cc"
170-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"Objects/RTE/Device/Startup/C Startup/system_ARMCM0.o._cc"
171-
"/C/Keil_v5/ARM/ARMCLANG/bin/armlink" --via="Objects/MyBinary.axf._ld"
163+
mkdir -p "/c/Projects/MyProject/Objects/RTE/Device/Startup/C Startup"
164+
mkdir -p "/c/Projects/MyProject/Objects/Source"
165+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Projects/MyProject/Objects/Source/MyMain.o._cc"
166+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Projects/MyProject/Objects/RTE/Device/Startup/C Startup/startup_ARMCM0.o._cc"
167+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Projects/MyProject/Objects/RTE/Device/Startup/C Startup/system_ARMCM0.o._cc"
168+
"/C/Keil_v5/ARM/ARMCLANG/bin/armlink" --via="/c/Projects/MyProject/Objects/MyBinary.axf._ld"
172169
cbuild.sh finished successfully!
173170
</pre> </div></div><!-- contents -->
174171
</div><!-- doc-content -->
175172
<!-- start footer part -->
176173
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
177174
<ul>
178-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
175+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
179176
<!--
180177
<a href="http://www.doxygen.org/index.html">
181178
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/Build/html/Layer.png

-7.2 KB
Loading

docs/Build/html/Make.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -144,7 +144,7 @@ <h1><a class="anchor" id="Make_example"></a>
144144
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
145145
<ul>
146146
<li class="navelem"><a class="el" href="CmdLineBuild.html">Command Line Build</a></li>
147-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
147+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
148148
<!--
149149
<a href="http://www.doxygen.org/index.html">
150150
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/Build/html/build_revisionHistory.html

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -114,14 +114,21 @@
114114
<tr>
115115
<th>Version </th><th>Description </th></tr>
116116
<tr>
117-
<td>0.10 </td><td>Release for beta review </td></tr>
117+
<td>0.9.0 (beta) </td><td>Release for beta review:<ul>
118+
<li>added layer description to project format specification.</li>
119+
<li>added support for multiple compilers.</li>
120+
<li>added commands for layer operations to cbuildgen. </li>
121+
</ul>
122+
</td></tr>
123+
<tr>
124+
<td>0.1.0 </td><td>Release for alpha review </td></tr>
118125
</table>
119126
</div></div><!-- contents -->
120127
</div><!-- doc-content -->
121128
<!-- start footer part -->
122129
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
123130
<ul>
124-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
131+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
125132
<!--
126133
<a href="http://www.doxygen.org/index.html">
127134
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/Build/html/cbuild.html

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -122,7 +122,7 @@
122122
<p>The <a class="el" href="cbuild.html">cbuild.sh: Build Invocation</a> script implements the build flow by chaining the utilities <a class="el" href="cbuildgen.html">cbuildgen</a>, <a class="el" href="ccmerge.html">ccmerge</a>, and <b>Make</b>. It replicates the build steps of CMSIS-Pack aware IDEs and also updates configuration files if necessary. The script can be adopted to project specific requirements.</p>
123123
<p>The build flow of the <a class="el" href="cbuild.html">cbuild.sh: Build Invocation</a> script is:</p>
124124
<ol type="1">
125-
<li>Call <a class="el" href="cbuildgen.html">cbuildgen: Build Process Manager</a> with command <b>pack</b> to list the URLs of missing software packs.</li>
125+
<li>Call <a class="el" href="cbuildgen.html">cbuildgen: Build Process Manager</a> with command <b>packlist</b> to list the URLs of missing software packs.</li>
126126
<li>Call <a class="el" href="cp_install.html">cp_install.sh: Install Packs</a> to download and install missing software packs.</li>
127127
<li>Call <a class="el" href="cbuildgen.html">cbuildgen: Build Process Manager</a> with command <b>make</b> to generate Make files.</li>
128128
<li>Call <a class="el" href="Make.html">make: GNU Make</a> to update configuration files using <a class="el" href="ccmerge.html">ccmerge: Config File Updater</a>.</li>
@@ -131,26 +131,24 @@
131131
<h1><a class="anchor" id="cbuild_example"></a>
132132
Usage Example</h1>
133133
<pre class="fragment">$ cbuild.sh Simulation.cprj
134-
(cbuild.sh): Build Invocation 0.1.0 (C) 2020 ARM
134+
(cbuild.sh): Build Invocation 0.9.0 (C) 2020 ARM
135135
Simulation.cprj validates
136-
CMSIS Build (cbuildgen) 0.1.1 (Feb 14 2020, 15:03:45)
137-
Copyright (C) 2020 ARM Ltd and ARM Germany GmbH. All rights reserved.
136+
(cbuildgen): Build Process Manager 0.9.0 (C) 2020 ARM
138137
M650: Config command completed successfully.
139-
CMSIS Build (cbuildgen) 0.1.1 (Feb 14 2020, 15:03:45)
140-
Copyright (C) 2020 ARM Ltd and ARM Germany GmbH. All rights reserved.
138+
(cbuildgen): Build Process Manager 0.9.0 (C) 2020 ARM
141139
M651: Generated makefile for merging config files: 'Simulation_cfg.mak'
142140
M652: Generated makefile for project build:'Simulation.mak'
143-
mkdir -p "C:/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library"
144-
mkdir -p "C:/Examples/Blinky/Objects/RTE/Compiler/IO/STDOUT/ITM"
145-
mkdir -p "C:/Examples/Blinky/Objects/RTE/Device/Startup/C Startup"
146-
mkdir -p "C:/Examples/Blinky/Objects/Source Files"
147-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library/RTX_Config.o._cc"
148-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library/rtx_lib.o._cc"
149-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/RTE/Compiler/IO/STDOUT/ITM/retarget_io.o._cc"
150-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/RTE/Device/Startup/C Startup/startup_ARMCM3.o._cc"
151-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/RTE/Device/Startup/C Startup/system_ARMCM3.o._cc"
152-
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"C:/Examples/Blinky/Objects/Source Files/Blinky.o._cc"
153-
"/C/Keil_v5/ARM/ARMCLANG/bin/armlink" --via="C:/Examples/Blinky/Objects/Blinky.axf._ld"
141+
mkdir -p "/c/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library"
142+
mkdir -p "/c/Examples/Blinky/Objects/RTE/Compiler/IO/STDOUT/ITM"
143+
mkdir -p "/c/Examples/Blinky/Objects/RTE/Device/Startup/C Startup"
144+
mkdir -p "/c/Examples/Blinky/Objects/Source Files"
145+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library/RTX_Config.o._cc"
146+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/RTE/CMSIS/RTOS2/Keil RTX5/Library/rtx_lib.o._cc"
147+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/RTE/Compiler/IO/STDOUT/ITM/retarget_io.o._cc"
148+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/RTE/Device/Startup/C Startup/startup_ARMCM3.o._cc"
149+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/RTE/Device/Startup/C Startup/system_ARMCM3.o._cc"
150+
"/C/Keil_v5/ARM/ARMCLANG/bin/armclang" @"/c/Examples/Blinky/Objects/Source Files/Blinky.o._cc"
151+
"/C/Keil_v5/ARM/ARMCLANG/bin/armlink" --via="/c/Examples/Blinky/Objects/Blinky.axf._ld"
154152
Program Size: Code=7516 RO-data=1264 RW-data=168 ZI-data=9084
155153
cbuild.sh finished successfully!
156154
</pre><h1><a class="anchor" id="cbuild_errors"></a>
@@ -175,7 +173,7 @@ <h1><a class="anchor" id="cbuild_example"></a>
175173
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
176174
<ul>
177175
<li class="navelem"><a class="el" href="CmdLineBuild.html">Command Line Build</a></li>
178-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
176+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
179177
<!--
180178
<a href="http://www.doxygen.org/index.html">
181179
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/Build/html/cbuild_install.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -122,7 +122,7 @@
122122
</ul>
123123
<h1><a class="anchor" id="cbuild_install2"></a>
124124
cbuild_install.sh: Install Build Tools</h1>
125-
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000003">Todo:</a></b></dt><dd>Where to find cbuild_install.sh: CMSIS build tools</dd></dl>
125+
<p>CMSIS-Build tools are available for download as an asset of the respective <a href="https://github.com/ARM-software/CMSIS_5/releases/" target="_blank"><b>CMSIS Release Version</b></a> (starting 5.7.0 e/o April 2020).</p>
126126
<p>To install the command line build environment start from the Bash prompt: </p>
127127
<div class="fragment"><div class="line">$ ./cbuild_install.sh</div>
128128
</div><!-- fragment --><p>This install script queries for:</p>
@@ -152,13 +152,12 @@ <h1><a class="anchor" id="cbuild_envsetup"></a>
152152
<tr>
153153
<td align="left"><code>$CMSIS_BUILD_ROOT</code> </td><td align="left">Base directory of the CMSIS command line build tools. </td></tr>
154154
<tr>
155-
<td align="left"><code>$MDK_ROOT</code> </td><td align="left">Base directory of the MDK installation. </td></tr>
155+
<td align="left"><code>$MDK_ROOT</code> </td><td align="left">Base directory of the MDK installation (optional). </td></tr>
156156
</table>
157157
<h1><a class="anchor" id="cbuild_compiler_config"></a>
158158
Compiler Configuration</h1>
159-
<p>The CMSIS <a class="el" href="cbuildgen.html">cbuildgen: Build Process Manager</a> uses toolchain specific <b>.mak files</b> that map the CMSIS project settings to the toolchain. For each supported toolchain a <b>.mak files</b> is provided in the directory <b>./cbuild/etc</b> and specifies the root directory of the toolchain (TOOLCHAIN_ROOT) The user should update the this setting to reflect the actual installation.</p>
159+
<p>The CMSIS <a class="el" href="cbuildgen.html">cbuildgen: Build Process Manager</a> uses toolchain specific <b>.mak files</b> that map the CMSIS project settings to the toolchain. For each supported toolchain a <b>.mak files</b> is provided in the directory <b>./cbuild/etc</b> and specifies the base directory of the toolchain installation (TOOLCHAIN_ROOT). In addition other toolchain specific environment variables may be setup here (e.g. license file and product variant). The user is required to update the these settings after installation to reflect the actual installation.</p>
160160
<p><b>Example file: ./cbuild/etc/ARMCC.6.13.1.mak</b></p>
161-
<dl class="todo"><dt><b><a class="el" href="todo.html#_todo000004">Todo:</a></b></dt><dd>Joachim: verify licensing</dd></dl>
162161
<div class="fragment"><div class="line"><span class="preprocessor"># Version: 1.0.0</span></div>
163162
<div class="line"><span class="preprocessor"></span><span class="preprocessor"># Date: 2020-02-11</span></div>
164163
<div class="line"><span class="preprocessor"></span><span class="preprocessor"># This file maps the CMSIS project options to toolchain settings.</span></div>
@@ -198,7 +197,7 @@ <h1><a class="anchor" id="libxml"></a>
198197
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
199198
<ul>
200199
<li class="navelem"><a class="el" href="CmdLineBuild.html">Command Line Build</a></li>
201-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
200+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
202201
<!--
203202
<a href="http://www.doxygen.org/index.html">
204203
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/Build/html/cbuild_uv.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-Build
35-
&#160;<span id="projectnumber">Version 0.1.0</span>
35+
&#160;<span id="projectnumber">Version 0.9.0 (beta)</span>
3636
</div>
3737
<div id="projectbrief">Tools, software frameworks, and work flows for productivity with CMSIS based projects</div>
3838
</td>
@@ -120,35 +120,35 @@
120120
Some MDK features are not converted as not all build features of µVision are available in command line build process. For example:<ul>
121121
<li>User commands pre and post build</li>
122122
<li><code>fcarm</code> code generator</li>
123-
<li>Linker script generation</li>
123+
<li>Linker script generation. Instead the linker script generated by MDK is used by cmsis build.</li>
124124
</ul>
125125
</dd></dl>
126126
<h1><a class="anchor" id="cbuild_uv_example"></a>
127127
Usage Example</h1>
128128
<pre class="fragment">$ cbuild_uv.sh FTP_Server.uvprojx
129-
(cbuild_uv.sh): Build MDK Project 0.1.0 (C) 2020 ARM
129+
(cbuild_uv.sh): Build MDK Project 0.9.0 (C) 2020 ARM
130130
uVision has created CPRJ files for the following targets:
131-
Debug.cprj
132-
Release.cprj
131+
FTP_Server.Debug.cprj
132+
FTP_Server.Release.cprj
133133
--------------------------------------------------------------------
134-
calling cbuild.sh for Debug.cprj
134+
calling cbuild.sh for FTP_Server.Debug.cprj
135135
--------------------------------------------------------------------
136136
...
137137
--------------------------------------------------------------------
138-
calling cbuild.sh for Release.cprj
138+
calling cbuild.sh for FTP_Server.Release.cprj
139139
--------------------------------------------------------------------
140140
...
141141
builds completed for:
142-
Debug.cprj
143-
Release.cprj
142+
FTP_Server.Debug.cprj
143+
FTP_Server.Release.cprj
144144
total: 2 failed: 0
145145
</pre> </div></div><!-- contents -->
146146
</div><!-- doc-content -->
147147
<!-- start footer part -->
148148
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
149149
<ul>
150150
<li class="navelem"><a class="el" href="CmdLineBuild.html">Command Line Build</a></li>
151-
<li class="footer">Generated on Wed Feb 26 2020 09:42:01 for CMSIS-Build Version 0.1.0 by Arm Ltd. All rights reserved.
151+
<li class="footer">Generated on Thu Apr 9 2020 15:49:55 for CMSIS-Build Version 0.9.0 (beta) by Arm Ltd. All rights reserved.
152152
<!--
153153
<a href="http://www.doxygen.org/index.html">
154154
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

0 commit comments

Comments
 (0)