Skip to content

Commit 17f8daf

Browse files
committed
ci, single-step cmake build, docs update, license
Signed-off-by: Roy, Biswajit <biswroy@qti.qualcomm.com>
1 parent 4d99b8b commit 17f8daf

5 files changed

Lines changed: 6 additions & 47 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
pip install aqtinstall
5353
aqt install-qt linux desktop ${{ matrix.qt_version }} linux_gcc_64
54-
aqt install-qt linux desktop ${{ matrix.qt_version }} linux_gcc_64 -m qtmultimedia qtserialport qtsvg
54+
aqt install-qt linux desktop ${{ matrix.qt_version }} linux_gcc_64 -m qtmultimedia qtserialport
5555
5656
- name: Configure CMake (${{ matrix.build_type }})
5757
run: |

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ QEPM is a software suite that enables users to perform power measurement on Qual
3737

3838
**Setup**: Connect the device to the debug board (directly or via cable strip) and both to the host.
3939

40-
![QEPM Hardware Software Setup](./docs/qepm-overview.drawio.png)
41-
4240
## Common Prerequisites
4341

4442
### Development Tools

interfaces/C++/UDASDev/UDASDev.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ UDAS_RESULT GetEPMVersion
154154
{
155155
UDAS_RESULT result{NO_UDAS_ERROR};
156156

157-
QByteArray version{TAC_VERSION};
157+
QByteArray version{EPM_VERSION};
158158

159159
if (version.size() < bufferSize)
160160
{

src/libraries/libexcel/QTExcel.cpp

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,5 @@
1-
//The MIT License
2-
//
3-
//Copyright (c) 2008-2018 Michael Simpson
4-
//
5-
//Permission is hereby granted, free of charge, to any person obtaining a copy
6-
//of this software and associated documentation files (the "Software"), to deal
7-
//in the Software without restriction, including without limitation the rights
8-
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
//copies of the Software, and to permit persons to whom the Software is
10-
//furnished to do so, subject to the following conditions:
11-
//
12-
//The above copyright notice and this permission notice shall be included in
13-
//all copies or substantial portions of the Software.
14-
//
15-
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
//THE SOFTWARE.
1+
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
2+
// SPDX-License-Identifier: BSD-3-Clause
223

234
#include "QTExcel.h"
245

src/libraries/libexcel/QTExcel.h

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,8 @@
11
#ifndef QTEXCEL_H
22
#define QTEXCEL_H
33

4-
//The MIT License
5-
//
6-
//Copyright (c) 2008 Michael Simpson
7-
//
8-
//Permission is hereby granted, free of charge, to any person obtaining a copy
9-
//of this software and associated documentation files (the "Software"), to deal
10-
//in the Software without restriction, including without limitation the rights
11-
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12-
//copies of the Software, and to permit persons to whom the Software is
13-
//furnished to do so, subject to the following conditions:
14-
//
15-
//The above copyright notice and this permission notice shall be included in
16-
//all copies or substantial portions of the Software.
17-
//
18-
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19-
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20-
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21-
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22-
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23-
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24-
//THE SOFTWARE.
25-
4+
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
5+
// SPDX-License-Identifier: BSD-3-Clause
266

277
// QT
288
#include <QtGlobal>

0 commit comments

Comments
 (0)