├── .github ├── dependabot.yml ├── doxygen.json ├── linkchecker.json └── workflows │ └── gh-pages.yaml ├── .gitignore ├── ARM.AVH_FVP.pdsc ├── Documentation └── index.html ├── DoxyGen ├── Doxygen_Templates │ ├── Layout_forUser.xml │ ├── arm.png │ ├── darkmode_toggle.js │ ├── extra_navtree.css │ ├── extra_search.css │ ├── extra_stylesheet.css │ ├── footer.html │ ├── footer.js │ ├── header.html │ ├── navtree.css │ ├── navtree.js │ ├── printComponentTabs.js │ ├── search.css │ ├── tab_b.png │ ├── tabs.css │ └── toc.js ├── How2Doc.md ├── check_links.sh ├── examples │ ├── examples.dxy │ └── src │ │ ├── ATS-Keyword.md │ │ ├── GetStarted.md │ │ ├── aws_mqtt.md │ │ ├── examples_beta.md │ │ ├── images │ │ ├── basic_ci_workflow.png │ │ ├── basic_ec2_keypair_create.png │ │ ├── basic_ec2_keypair_overview.png │ │ ├── basic_gh_actions.png │ │ ├── basic_gh_actions1.png │ │ ├── basic_gh_ci_default.png │ │ ├── basic_gh_ci_test_log.png │ │ ├── basic_gh_create_repo.png │ │ ├── basic_gh_test_results_success.png │ │ ├── basic_gh_test_results_view.png │ │ ├── basic_gh_workflow_jobs_default.png │ │ ├── basic_gh_workflow_jobs_success.png │ │ ├── basic_telnet_default.png │ │ ├── basic_telnet_success.png │ │ ├── ec2_launch.png │ │ ├── ec2_sg.png │ │ ├── ec2_vpc.png │ │ ├── github_actionreports.png │ │ ├── github_actionreports_failed.png │ │ ├── github_createrunner.png │ │ ├── github_idlerunner.png │ │ ├── github_newrunner.png │ │ ├── instance_type.png │ │ ├── key_pair.png │ │ ├── mdk_conf_mve.png │ │ ├── mdk_tf_kernel_variants.png │ │ ├── mimxrt1050_hw_setup.png │ │ ├── mimxrt1064_hw_setup.png │ │ ├── moba_ssh.png │ │ ├── moba_tunnel.png │ │ ├── moba_vnc.png │ │ ├── putty_ip.png │ │ ├── putty_key.png │ │ └── subscribe.png │ │ ├── main.md │ │ └── mspeech.md ├── gen_doc.sh ├── index.html ├── infrastructure │ ├── infrastructure.dxy │ └── src │ │ ├── avh_ami.md │ │ ├── avh_ami_ds.md │ │ ├── avh_ami_github.md │ │ ├── avh_ami_inventory.md │ │ ├── avh_ami_jenkins.md │ │ ├── avh_artifactory.md │ │ ├── avh_beta.md │ │ ├── avh_desktop.md │ │ ├── avh_gh_actions.md │ │ ├── avh_gh_inventory.md │ │ ├── avh_gh_runner.md │ │ ├── avh_mdk_uv4.md │ │ ├── avh_mdk_vscode.md │ │ ├── avhclient.md │ │ ├── images │ │ ├── Access_AMI.png │ │ ├── GHSecrets.PNG │ │ ├── GitHub-GH-AWS.png │ │ ├── IAM1.PNG │ │ ├── IAM2.PNG │ │ ├── IAM3.PNG │ │ ├── View_GitHub-Actions.png │ │ ├── avh_gh_image_select.png │ │ ├── avh_gh_new_runner.png │ │ ├── avh_gh_repo_runners.png │ │ ├── create_debug_test.png │ │ ├── debug_config1.png │ │ ├── debug_config2b.png │ │ ├── ec2_instance_connect.png │ │ ├── fvp_uv4_setup_basic.png │ │ ├── mdk_avh_device_pack.png │ │ ├── mdk_avh_device_select.png │ │ ├── mdk_fvp_core_clk.png │ │ ├── mdk_vscode_mng_solution.png │ │ ├── select_create_key.png │ │ ├── select_existing_key.png │ │ ├── uv4_model_debug.png │ │ ├── vht_action.png │ │ └── windows_telnet_enable.png │ │ └── main.md ├── overview │ ├── overview.dxy │ └── src │ │ ├── benefits.md │ │ ├── history.md │ │ ├── images │ │ ├── avh_overview.png │ │ ├── basic_ci_workflow.png │ │ ├── effort_comparison.png │ │ ├── img_src.pptx │ │ ├── simulation2hardware.png │ │ ├── simulation_concept.png │ │ └── workflow.png │ │ ├── main.md │ │ └── workflow.md └── simulation │ ├── simulation.dxy │ └── src │ ├── FVP-Timing.md │ ├── Ref_audio.txt │ ├── Ref_overview.txt │ ├── Ref_sensor.txt │ ├── Ref_video.txt │ ├── Ref_vio.txt │ ├── Ref_vsi.txt │ ├── Ref_vsi_api.txt │ ├── Ref_vsi_py.txt │ ├── Ref_vsocket.txt │ ├── avh_fvp_cmsis.md │ ├── graphs.txt │ ├── hints_and_tips.md │ ├── images │ ├── Corstone_SSE-300_Ethos-U55_FVP_MPS3_Technical_Overview.pdf │ ├── Corstone_SSE-310_FVP_Technical_Overview.pdf │ ├── DMA_Buffer.png │ ├── Example-Structure.png │ ├── Example-Structure_orig.png │ ├── Virtual_Interfaces.png │ ├── vio_structure.png │ ├── virtual_platform.png │ ├── vsi_audio.png │ ├── vsi_structure.png │ ├── vsi_video_structure.png │ └── vsocket_structure.png │ ├── main.md │ ├── using.md │ ├── using_video_vsi_uml.uml │ ├── using_vio_uml.uml │ └── using_vsi_uml.uml ├── LICENSE ├── README.md └── interface ├── audio ├── driver │ └── audio_drv.c ├── include │ └── audio_drv.h └── python │ ├── arm_vsi0.py │ └── arm_vsi1.py ├── include ├── arm_vio.h ├── arm_vsi.h └── arm_vsocket.h ├── python ├── arm_vio.py ├── arm_vsi0.py ├── arm_vsi1.py ├── arm_vsi2.py ├── arm_vsi3.py ├── arm_vsi4.py ├── arm_vsi5.py ├── arm_vsi6.py └── arm_vsi7.py ├── sensor ├── include │ ├── sensor_drv.h │ └── sensor_drv_hw.h ├── python │ ├── arm_vsi2.py │ └── vsi_sensor.py ├── source │ ├── sensor_drv.c │ └── sensor_drv_hw.c └── template │ └── sensor_config.h ├── video ├── include │ └── video_drv.h ├── python │ ├── arm_vsi4.py │ ├── arm_vsi5.py │ ├── arm_vsi6.py │ ├── arm_vsi7.py │ ├── vsi_video.py │ └── vsi_video_server.py └── source │ └── video_drv.c ├── vio └── vio_fvp.c ├── vsocket └── iot_socket.c └── vstream ├── config ├── vstream_video_in_config.h └── vstream_video_out_config.h ├── python ├── arm_vsi0.py ├── arm_vsi1.py ├── arm_vsi4.py ├── arm_vsi5.py ├── arm_vsi6.py ├── arm_vsi7.py ├── vsi_video.py └── vsi_video_server.py └── source ├── vstream_audio_in.c ├── vstream_audio_out.c ├── vstream_video_in.c ├── vstream_video_in.h ├── vstream_video_out.c └── vstream_video_out.h /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/doxygen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/.github/doxygen.json -------------------------------------------------------------------------------- /.github/linkchecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/.github/linkchecker.json -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/.github/workflows/gh-pages.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/.gitignore -------------------------------------------------------------------------------- /ARM.AVH_FVP.pdsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/ARM.AVH_FVP.pdsc -------------------------------------------------------------------------------- /Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/Documentation/index.html -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/Layout_forUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/Layout_forUser.xml -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/arm.png -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/darkmode_toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/darkmode_toggle.js -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/extra_navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/extra_navtree.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/extra_search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/extra_search.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/extra_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/extra_stylesheet.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/footer.html -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/footer.js -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/header.html -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/navtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/navtree.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/navtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/navtree.js -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/printComponentTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/printComponentTabs.js -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/search.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/tab_b.png -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/tabs.css -------------------------------------------------------------------------------- /DoxyGen/Doxygen_Templates/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/Doxygen_Templates/toc.js -------------------------------------------------------------------------------- /DoxyGen/How2Doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/How2Doc.md -------------------------------------------------------------------------------- /DoxyGen/check_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/check_links.sh -------------------------------------------------------------------------------- /DoxyGen/examples/examples.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/examples.dxy -------------------------------------------------------------------------------- /DoxyGen/examples/src/ATS-Keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/ATS-Keyword.md -------------------------------------------------------------------------------- /DoxyGen/examples/src/GetStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/GetStarted.md -------------------------------------------------------------------------------- /DoxyGen/examples/src/aws_mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/aws_mqtt.md -------------------------------------------------------------------------------- /DoxyGen/examples/src/examples_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/examples_beta.md -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_ci_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_ci_workflow.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_ec2_keypair_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_ec2_keypair_create.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_ec2_keypair_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_ec2_keypair_overview.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_actions.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_actions1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_actions1.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_ci_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_ci_default.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_ci_test_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_ci_test_log.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_create_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_create_repo.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_test_results_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_test_results_success.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_test_results_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_test_results_view.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_workflow_jobs_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_workflow_jobs_default.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_gh_workflow_jobs_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_gh_workflow_jobs_success.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_telnet_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_telnet_default.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/basic_telnet_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/basic_telnet_success.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/ec2_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/ec2_launch.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/ec2_sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/ec2_sg.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/ec2_vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/ec2_vpc.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/github_actionreports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/github_actionreports.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/github_actionreports_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/github_actionreports_failed.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/github_createrunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/github_createrunner.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/github_idlerunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/github_idlerunner.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/github_newrunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/github_newrunner.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/instance_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/instance_type.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/key_pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/key_pair.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/mdk_conf_mve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/mdk_conf_mve.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/mdk_tf_kernel_variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/mdk_tf_kernel_variants.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/mimxrt1050_hw_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/mimxrt1050_hw_setup.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/mimxrt1064_hw_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/mimxrt1064_hw_setup.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/moba_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/moba_ssh.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/moba_tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/moba_tunnel.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/moba_vnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/moba_vnc.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/putty_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/putty_ip.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/putty_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/putty_key.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/images/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/images/subscribe.png -------------------------------------------------------------------------------- /DoxyGen/examples/src/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/main.md -------------------------------------------------------------------------------- /DoxyGen/examples/src/mspeech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/examples/src/mspeech.md -------------------------------------------------------------------------------- /DoxyGen/gen_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/gen_doc.sh -------------------------------------------------------------------------------- /DoxyGen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/index.html -------------------------------------------------------------------------------- /DoxyGen/infrastructure/infrastructure.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/infrastructure.dxy -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_ami.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_ami.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_ami_ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_ami_ds.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_ami_github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_ami_github.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_ami_inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_ami_inventory.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_ami_jenkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_ami_jenkins.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_artifactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_artifactory.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_beta.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_desktop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_desktop.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_gh_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_gh_actions.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_gh_inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_gh_inventory.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_gh_runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_gh_runner.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_mdk_uv4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_mdk_uv4.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avh_mdk_vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avh_mdk_vscode.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/avhclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/avhclient.md -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/Access_AMI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/Access_AMI.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/GHSecrets.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/GHSecrets.PNG -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/GitHub-GH-AWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/GitHub-GH-AWS.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/IAM1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/IAM1.PNG -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/IAM2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/IAM2.PNG -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/IAM3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/IAM3.PNG -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/View_GitHub-Actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/View_GitHub-Actions.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/avh_gh_image_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/avh_gh_image_select.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/avh_gh_new_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/avh_gh_new_runner.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/avh_gh_repo_runners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/avh_gh_repo_runners.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/create_debug_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/create_debug_test.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/debug_config1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/debug_config1.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/debug_config2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/debug_config2b.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/ec2_instance_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/ec2_instance_connect.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/fvp_uv4_setup_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/fvp_uv4_setup_basic.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/mdk_avh_device_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/mdk_avh_device_pack.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/mdk_avh_device_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/mdk_avh_device_select.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/mdk_fvp_core_clk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/mdk_fvp_core_clk.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/mdk_vscode_mng_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/mdk_vscode_mng_solution.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/select_create_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/select_create_key.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/select_existing_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/select_existing_key.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/uv4_model_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/uv4_model_debug.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/vht_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/vht_action.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/images/windows_telnet_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/images/windows_telnet_enable.png -------------------------------------------------------------------------------- /DoxyGen/infrastructure/src/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/infrastructure/src/main.md -------------------------------------------------------------------------------- /DoxyGen/overview/overview.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/overview.dxy -------------------------------------------------------------------------------- /DoxyGen/overview/src/benefits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/benefits.md -------------------------------------------------------------------------------- /DoxyGen/overview/src/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/history.md -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/avh_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/avh_overview.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/basic_ci_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/basic_ci_workflow.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/effort_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/effort_comparison.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/img_src.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/img_src.pptx -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/simulation2hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/simulation2hardware.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/simulation_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/simulation_concept.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/images/workflow.png -------------------------------------------------------------------------------- /DoxyGen/overview/src/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/main.md -------------------------------------------------------------------------------- /DoxyGen/overview/src/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/overview/src/workflow.md -------------------------------------------------------------------------------- /DoxyGen/simulation/simulation.dxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/simulation.dxy -------------------------------------------------------------------------------- /DoxyGen/simulation/src/FVP-Timing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/FVP-Timing.md -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_audio.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_overview.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_sensor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_sensor.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_video.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_video.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_vio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_vio.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_vsi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_vsi.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_vsi_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_vsi_api.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_vsi_py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_vsi_py.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/Ref_vsocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/Ref_vsocket.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/avh_fvp_cmsis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/avh_fvp_cmsis.md -------------------------------------------------------------------------------- /DoxyGen/simulation/src/graphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/graphs.txt -------------------------------------------------------------------------------- /DoxyGen/simulation/src/hints_and_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/hints_and_tips.md -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/Corstone_SSE-300_Ethos-U55_FVP_MPS3_Technical_Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/Corstone_SSE-300_Ethos-U55_FVP_MPS3_Technical_Overview.pdf -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/Corstone_SSE-310_FVP_Technical_Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/Corstone_SSE-310_FVP_Technical_Overview.pdf -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/DMA_Buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/DMA_Buffer.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/Example-Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/Example-Structure.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/Example-Structure_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/Example-Structure_orig.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/Virtual_Interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/Virtual_Interfaces.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/vio_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/vio_structure.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/virtual_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/virtual_platform.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/vsi_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/vsi_audio.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/vsi_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/vsi_structure.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/vsi_video_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/vsi_video_structure.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/images/vsocket_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/images/vsocket_structure.png -------------------------------------------------------------------------------- /DoxyGen/simulation/src/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/main.md -------------------------------------------------------------------------------- /DoxyGen/simulation/src/using.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/using.md -------------------------------------------------------------------------------- /DoxyGen/simulation/src/using_video_vsi_uml.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/using_video_vsi_uml.uml -------------------------------------------------------------------------------- /DoxyGen/simulation/src/using_vio_uml.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/using_vio_uml.uml -------------------------------------------------------------------------------- /DoxyGen/simulation/src/using_vsi_uml.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/DoxyGen/simulation/src/using_vsi_uml.uml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/README.md -------------------------------------------------------------------------------- /interface/audio/driver/audio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/audio/driver/audio_drv.c -------------------------------------------------------------------------------- /interface/audio/include/audio_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/audio/include/audio_drv.h -------------------------------------------------------------------------------- /interface/audio/python/arm_vsi0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/audio/python/arm_vsi0.py -------------------------------------------------------------------------------- /interface/audio/python/arm_vsi1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/audio/python/arm_vsi1.py -------------------------------------------------------------------------------- /interface/include/arm_vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/include/arm_vio.h -------------------------------------------------------------------------------- /interface/include/arm_vsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/include/arm_vsi.h -------------------------------------------------------------------------------- /interface/include/arm_vsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/include/arm_vsocket.h -------------------------------------------------------------------------------- /interface/python/arm_vio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vio.py -------------------------------------------------------------------------------- /interface/python/arm_vsi0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi0.py -------------------------------------------------------------------------------- /interface/python/arm_vsi1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi1.py -------------------------------------------------------------------------------- /interface/python/arm_vsi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi2.py -------------------------------------------------------------------------------- /interface/python/arm_vsi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi3.py -------------------------------------------------------------------------------- /interface/python/arm_vsi4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi4.py -------------------------------------------------------------------------------- /interface/python/arm_vsi5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi5.py -------------------------------------------------------------------------------- /interface/python/arm_vsi6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi6.py -------------------------------------------------------------------------------- /interface/python/arm_vsi7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/python/arm_vsi7.py -------------------------------------------------------------------------------- /interface/sensor/include/sensor_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/include/sensor_drv.h -------------------------------------------------------------------------------- /interface/sensor/include/sensor_drv_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/include/sensor_drv_hw.h -------------------------------------------------------------------------------- /interface/sensor/python/arm_vsi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/python/arm_vsi2.py -------------------------------------------------------------------------------- /interface/sensor/python/vsi_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/python/vsi_sensor.py -------------------------------------------------------------------------------- /interface/sensor/source/sensor_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/source/sensor_drv.c -------------------------------------------------------------------------------- /interface/sensor/source/sensor_drv_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/source/sensor_drv_hw.c -------------------------------------------------------------------------------- /interface/sensor/template/sensor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/sensor/template/sensor_config.h -------------------------------------------------------------------------------- /interface/video/include/video_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/include/video_drv.h -------------------------------------------------------------------------------- /interface/video/python/arm_vsi4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/arm_vsi4.py -------------------------------------------------------------------------------- /interface/video/python/arm_vsi5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/arm_vsi5.py -------------------------------------------------------------------------------- /interface/video/python/arm_vsi6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/arm_vsi6.py -------------------------------------------------------------------------------- /interface/video/python/arm_vsi7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/arm_vsi7.py -------------------------------------------------------------------------------- /interface/video/python/vsi_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/vsi_video.py -------------------------------------------------------------------------------- /interface/video/python/vsi_video_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/python/vsi_video_server.py -------------------------------------------------------------------------------- /interface/video/source/video_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/video/source/video_drv.c -------------------------------------------------------------------------------- /interface/vio/vio_fvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vio/vio_fvp.c -------------------------------------------------------------------------------- /interface/vsocket/iot_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vsocket/iot_socket.c -------------------------------------------------------------------------------- /interface/vstream/config/vstream_video_in_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/config/vstream_video_in_config.h -------------------------------------------------------------------------------- /interface/vstream/config/vstream_video_out_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/config/vstream_video_out_config.h -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi0.py -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi1.py -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi4.py -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi5.py -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi6.py -------------------------------------------------------------------------------- /interface/vstream/python/arm_vsi7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/arm_vsi7.py -------------------------------------------------------------------------------- /interface/vstream/python/vsi_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/vsi_video.py -------------------------------------------------------------------------------- /interface/vstream/python/vsi_video_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/python/vsi_video_server.py -------------------------------------------------------------------------------- /interface/vstream/source/vstream_audio_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_audio_in.c -------------------------------------------------------------------------------- /interface/vstream/source/vstream_audio_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_audio_out.c -------------------------------------------------------------------------------- /interface/vstream/source/vstream_video_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_video_in.c -------------------------------------------------------------------------------- /interface/vstream/source/vstream_video_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_video_in.h -------------------------------------------------------------------------------- /interface/vstream/source/vstream_video_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_video_out.c -------------------------------------------------------------------------------- /interface/vstream/source/vstream_video_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/AVH/HEAD/interface/vstream/source/vstream_video_out.h --------------------------------------------------------------------------------