Index: README.md =================================================================== diff -u -r28c6de16995eccda5170c5385752da0cc4277183 -r028952270169971af5075574ba7b7b4ba241acd3 --- README.md (.../README.md) (revision 28c6de16995eccda5170c5385752da0cc4277183) +++ README.md (.../README.md) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,8 +1,8 @@ ![Diality](images/logo.jpg) -# Dial-In +# Dialin -This repository contains the source code for the Dial-In API. -The Dial-In API supports cross-functional testing of the Denali system. +This repository contains the source code for the Dialin API. +The Dialin API supports cross-functional testing of the Denali system. It supports the Systems level testing, Software Verification & Validation, and pre-release SW and FW developmental testing by exposing and simulating interaction with the UI, HD, and DG sub-components. Index: build.sh =================================================================== diff -u -r9a16ece9f9370e4e644ca1ef463da57bc7b3b148 -r028952270169971af5075574ba7b7b4ba241acd3 --- build.sh (.../build.sh) (revision 9a16ece9f9370e4e644ca1ef463da57bc7b3b148) +++ build.sh (.../build.sh) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,4 +1,19 @@ #!/bin/bash +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file build.sh +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Packages Dialin into a standalone .whl file +# +############################################################################ python3 setup.py bdist_wheel if [ $? -ne 0 ]; then echo "Error building package. Exiting..."; exit 1; fi Index: setup.py =================================================================== diff -u -r3c6e1e61afe606f16e0e0300f4d93d5e0e8b001a -r028952270169971af5075574ba7b7b4ba241acd3 --- setup.py (.../setup.py) (revision 3c6e1e61afe606f16e0e0300f4d93d5e0e8b001a) +++ setup.py (.../setup.py) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,3 +1,18 @@ +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file setup.py +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Contains the setup parameters for package deployment +# +############################################################################ import setuptools setuptools.setup( Index: tests/dg_test_script.py =================================================================== diff -u -r28c6de16995eccda5170c5385752da0cc4277183 -r028952270169971af5075574ba7b7b4ba241acd3 --- tests/dg_test_script.py (.../dg_test_script.py) (revision 28c6de16995eccda5170c5385752da0cc4277183) +++ tests/dg_test_script.py (.../dg_test_script.py) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -97,6 +97,5 @@ """ - if __name__ == '__main__': unittest.main(verbosity=2) Index: tests/test_imports.py =================================================================== diff -u -r28c6de16995eccda5170c5385752da0cc4277183 -r028952270169971af5075574ba7b7b4ba241acd3 --- tests/test_imports.py (.../test_imports.py) (revision 28c6de16995eccda5170c5385752da0cc4277183) +++ tests/test_imports.py (.../test_imports.py) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,3 +1,18 @@ +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file test_imports.py +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Tests imports of all available modules +# +############################################################################ import unittest import sys sys.path.append("..") Index: tools/document.sh =================================================================== diff -u -r9d9105c7dc3379c2e14996522291b23a19e7ba46 -r028952270169971af5075574ba7b7b4ba241acd3 --- tools/document.sh (.../document.sh) (revision 9d9105c7dc3379c2e14996522291b23a19e7ba46) +++ tools/document.sh (.../document.sh) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,4 +1,19 @@ #!/bin/bash +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file document.sh +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Generates doxygen documentation +# +############################################################################ cd ../ export PROJECT_DIRECTORY=$(pwd) rm -rf document/html Index: tools/setup_canbus.sh =================================================================== diff -u -r619cd8f345bf168dc37bb12befef3db0290e5329 -r028952270169971af5075574ba7b7b4ba241acd3 --- tools/setup_canbus.sh (.../setup_canbus.sh) (revision 619cd8f345bf168dc37bb12befef3db0290e5329) +++ tools/setup_canbus.sh (.../setup_canbus.sh) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,5 +1,19 @@ #!/bin/bash +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file setup_canbus.sh +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Initializes the canbus interface +# +############################################################################ - sudo ip link set can0 up type can bitrate 250000 restart-ms 100 Index: tools/setup_environment.sh =================================================================== diff -u -r619cd8f345bf168dc37bb12befef3db0290e5329 -r028952270169971af5075574ba7b7b4ba241acd3 --- tools/setup_environment.sh (.../setup_environment.sh) (revision 619cd8f345bf168dc37bb12befef3db0290e5329) +++ tools/setup_environment.sh (.../setup_environment.sh) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,4 +1,19 @@ #!/bin/bash +########################################################################### +# +# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +# +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# +# @file setup_environment.sh +# +# @date 29-Apr-2020 +# @author P. Lucia +# +# @brief Configurations the virtual environment +# +############################################################################ cd ../ pip3 install virtualenv Index: tools/setup_environment_windows.bat =================================================================== diff -u -r619cd8f345bf168dc37bb12befef3db0290e5329 -r028952270169971af5075574ba7b7b4ba241acd3 --- tools/setup_environment_windows.bat (.../setup_environment_windows.bat) (revision 619cd8f345bf168dc37bb12befef3db0290e5329) +++ tools/setup_environment_windows.bat (.../setup_environment_windows.bat) (revision 028952270169971af5075574ba7b7b4ba241acd3) @@ -1,3 +1,18 @@ +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" +" Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +" +" THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +" WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +" +" @file setup_environment_windows.bat +" +" @date 29-Apr-2020 +" @author P. Lucia +" +" @brief Configures the virtual environment on windows +" +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" cd ../ pip3 install virtualenv virtualenv --python=python3 venv