-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
QL
committed
Mar 18, 2020
1 parent
1cf770e
commit d60c50d
Showing
135 changed files
with
32,718 additions
and
4,769 deletions.
There are no files selected for viewing
File renamed without changes.
686 changes: 686 additions & 0 deletions
686
3rd_party/ek-tm4c123gxl/armclang/startup_TM4C123GH6PM.s
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
@echo off | ||
:: ========================================================================== | ||
:: Product: QP-nano script for generating Doxygen documentation | ||
:: Last Updated for Version: 6.7.0 | ||
:: Date of the Last Update: 2019-12-30 | ||
:: Last Updated for Version: 6.8.0 | ||
:: Date of the Last Update: 2020-01-17 | ||
:: | ||
:: Q u a n t u m L e a P s | ||
:: ------------------------ | ||
:: Modern Embedded Software | ||
:: | ||
:: Copyright (C) Quantum Leaps, LLC. All rights reserved. | ||
:: Copyright (C) 2005-2020 Quantum Leaps, LLC. All rights reserved. | ||
:: | ||
:: This program is open source software: you can redistribute it and/or | ||
:: modify it under the terms of the GNU General Public License as published | ||
|
@@ -29,7 +29,7 @@ | |
:: along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
:: | ||
:: Contact information: | ||
:: <www.state-machine.com> | ||
:: <www.state-machine.com/licensing> | ||
:: <[email protected]> | ||
:: ========================================================================== | ||
@setlocal | ||
|
@@ -38,25 +38,23 @@ | |
@echo make | ||
@echo make -CHM | ||
|
||
@set VERSION=6.7.0 | ||
|
||
@set DOXHOME="C:\tools\doxygen\bin" | ||
|
||
:: Generate Resource Standard Metrics for QP-nano ............................ | ||
@set RCMHOME="C:\tools\MSquared\M2 RSM" | ||
:: Generate Metrics for QP/C++ .............................................. | ||
@set LIZARD=C:\tools\Python27\python.exe C:\tools\lizard\lizard.py | ||
|
||
@set RSM_OUTPUT=metrics.dox | ||
@set RSM_INPUT=..\include\*.h ..\src\qfn\*.c ..\src\qkn\*.c ..\src\qvn\*.c | ||
@set METRICS_INP=..\include ..\src -x ..\src\qs\* | ||
@set METRICS_OUT=metrics.dox | ||
|
||
@echo /** @page metrics Code Metrics > %RSM_OUTPUT% | ||
@echo.>> %RSM_OUTPUT% | ||
@echo @code >> %RSM_OUTPUT% | ||
@echo Standard Code Metrics for QP-nano %VERSION% >> %RSM_OUTPUT% | ||
@echo /** @page metrics Code Metrics > %METRICS_OUT% | ||
@echo.>> %METRICS_OUT% | ||
@echo @code{cpp} >> %METRICS_OUT% | ||
@echo Code Metrics for QP-nano >> %METRICS_OUT% | ||
|
||
%RCMHOME%\rsm.exe -fd -xNOCOMMAND -xNOCONFIG -u"File cfg rsm_qpn.cfg" %RSM_INPUT% >> %RSM_OUTPUT% | ||
%LIZARD% -m -L500 -a10 -C20 -V %METRICS_INP% >> %METRICS_OUT% | ||
|
||
@echo @endcode >> %RSM_OUTPUT% | ||
@echo */ >> %RSM_OUTPUT% | ||
@echo @endcode >> %METRICS_OUT% | ||
@echo */ >> %METRICS_OUT% | ||
|
||
:: Generate Doxygen Documentation ........................................... | ||
if "%1"=="-CHM" ( | ||
|
Oops, something went wrong.