This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simulator added and vcpkg support optimized
- Loading branch information
1 parent
9fbca7d
commit 9e0e0cd
Showing
32 changed files
with
24,642 additions
and
6,899 deletions.
There are no files selected for viewing
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,54 +1,60 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
\.idea/ | ||
|
||
CMakeFiles/3\.10\.2/ | ||
|
||
CMakeFiles/3\.12\.1/ | ||
|
||
CMakeCache\.txt | ||
|
||
CMakeFiles/ | ||
|
||
sick_scan_base\.cbp | ||
|
||
cmake_install\.cmake | ||
|
||
Makefile | ||
|
||
sick_generic_caller | ||
scan.jpg | ||
scan_tmp.jpg | ||
|
||
build/ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
\.idea/ | ||
|
||
CMakeFiles/3\.10\.2/ | ||
|
||
CMakeFiles/3\.12\.1/ | ||
|
||
CMakeCache\.txt | ||
|
||
CMakeFiles/ | ||
|
||
sick_scan_base\.cbp | ||
|
||
cmake_install\.cmake | ||
|
||
Makefile | ||
|
||
sick_generic_caller | ||
scan.jpg | ||
scan_tmp.jpg | ||
|
||
build/ | ||
build_x64/ | ||
|
||
sick_scan_base_vs.code-workspace | ||
test/emulator/scandata/20210302_lms511.pcapng.json | ||
|
||
.vscode/ |
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,16 +1,16 @@ | ||
set vcpkg=-DCMAKE_TOOLCHAIN_FILE=%USERPROFILE%/documents/development/vcpkg/scripts/buildsystems/vcpkg.cmake | ||
cd | ||
set msvc=-DMSVC=TRUE | ||
REM set Version=-T v141 | ||
md build | ||
cd build | ||
REM set triplet=-DVCPKG_TARGET_TRIPLET=x86-windows-static | ||
set triplet=-DVCPKG_TARGET_TRIPLET=x86-windows | ||
REM https://stackoverflow.com/questions/28350214/how-to-build-x86-and-or-x64-on-windows-from-command-line-with-cmake | ||
cmake.exe %vcpkg% %msvc% %triplet% -G "Visual Studio 16 2019" -A Win32 .. | ||
cd .. | ||
REM md x64 | ||
REM cd x64 | ||
REM set triplet=-DVCPKG_TARGET_TRIPLET=x64-windows-static | ||
REM cmake.exe %vcpkg% %msvc% %triplet% -G "Visual Studio 15 2017 Win64" %Version% .. | ||
set vcpkg=-DCMAKE_TOOLCHAIN_FILE=%USERPROFILE%/documents/development/vcpkg/scripts/buildsystems/vcpkg.cmake | ||
cd | ||
set msvc=-DMSVC=TRUE | ||
REM set Version=-T v141 | ||
md build | ||
cd build | ||
REM set triplet=-DVCPKG_TARGET_TRIPLET=x86-windows-static | ||
set triplet=-DVCPKG_TARGET_TRIPLET=x86-windows | ||
REM https://stackoverflow.com/questions/28350214/how-to-build-x86-and-or-x64-on-windows-from-command-line-with-cmake | ||
cmake.exe %vcpkg% %msvc% %triplet% -G "Visual Studio 16 2019" -A Win32 .. | ||
cd .. | ||
REM md x64 | ||
REM cd x64 | ||
REM set triplet=-DVCPKG_TARGET_TRIPLET=x64-windows-static | ||
REM cmake.exe %vcpkg% %msvc% %triplet% -G "Visual Studio 15 2017 Win64" %Version% .. | ||
REM cd .. |
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,29 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
div{ | ||
width: 801px; | ||
height:801px; | ||
border:solid | ||
} | ||
|
||
img{ | ||
width: 100%; | ||
height: 100%; | ||
object-fit: contain; | ||
} | ||
</style> | ||
</head> | ||
<meta http-equiv="refresh" content="1.0"> | ||
<body> | ||
<h1> | ||
Display Scan-Data of MRS 1104 <br> | ||
<a href="scan.csv"> Scan Data as CSV file</a> | ||
<br> | ||
</h1> | ||
<div> | ||
<img src="scan.jpg" alt="SCAN Image"> | ||
</div> | ||
</body> | ||
</html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
div{ | ||
width: 801px; | ||
height:801px; | ||
border:solid | ||
} | ||
|
||
img{ | ||
width: 100%; | ||
height: 100%; | ||
object-fit: contain; | ||
} | ||
</style> | ||
</head> | ||
<meta http-equiv="refresh" content="1.0"> | ||
<body> | ||
<h1> | ||
Display Scan-Data of MRS 1104 <br> | ||
<a href="scan.csv"> Scan Data as CSV file</a> | ||
<br> | ||
</h1> | ||
<div> | ||
<img src="scan.jpg" alt="SCAN Image"> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.