This file contains hidden or 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
| <!doctype html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <title>簡易ポータルサイトタイトル</title> | |
| <meta name="description" content="簡易ポータルサイト説明文"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style type="text/css"> |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ## | |
| ## @file opencv_camera.py | |
| ## @brief Display the image captured by the webcam | |
| ## @author Keitetsu | |
| ## @date 2018/05/30 | |
| ## @copyright Copyright (c) 2018 Keitetsu | |
| ## @par License |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| ## | |
| ## @file installDependencies.sh | |
| ## @brief Script to install dependencies for Xilinx SDSoC 2017.4 | |
| ## on Ubuntu 18.04 LTS (Minimal Installation) | |
| ## @author Keitetsu | |
| ## @date 2018/08/11 | |
| ## @copyright Copyright (c) 2018 Keitetsu | |
| ## @par License |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| ## | |
| ## @file installDependencies.sh | |
| ## @brief Script to install dependencies for Xilinx PetaLinux 2017.4 | |
| ## on Ubuntu 16.04 LTS | |
| ## @author Keitetsu | |
| ## @date 2018/08/11 | |
| ## @copyright Copyright (c) 2018 Keitetsu | |
| ## @par License |
This file contains hidden or 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
| the_ROM_image: | |
| { | |
| [fsbl_config] a53_x64 | |
| [bootloader] <fsbl.elf> | |
| [pmufw_image] <pmufw.elf> | |
| [destination_device=pl] <bitstream> | |
| [destination_cpu=a53-0, exception_level=el-3, trustzone] <bl31.elf> | |
| [destination_cpu=a53-0, exception_level=el-2] <u-boot.elf> | |
| } |
This file contains hidden or 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
| if [ ! -d ./boot ]; then | |
| mkdir ./boot | |
| fi | |
| if [ ! -d ./image ]; then | |
| mkdir ./image | |
| fi | |
| cp u-boot.elf ./boot/u-boot.elf | |
| cp zynqmp_fsbl.elf ./boot/fsbl.elf |
This file contains hidden or 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
| if [ -f /opt/Xilinx/SDx/2018.2/settings64.sh ]; then | |
| . /opt/Xilinx/SDx/2018.2/settings64.sh | |
| fi | |
| if [ -f /opt/Xilinx/PetaLinux/settings.sh ]; then | |
| . /opt/Xilinx/PetaLinux/settings.sh | |
| fi | |
| if [ -f /opt/Xilinx/SDK/2018.2/settings64.sh ]; then | |
| . /opt/Xilinx/SDK/2018.2/settings64.sh |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ## | |
| ## @file opencv_test.py | |
| ## @brief OpenCV Test Script | |
| ## @author Keitetsu | |
| ## @date 2018/09/04 | |
| ## @copyright Copyright (c) 2018 Keitetsu | |
| ## @par License |
This file contains hidden or 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
| /** | |
| * @file q10199318425.c | |
| * @brief calculate LC circuit resonant frequency | |
| * @author Keitetsu | |
| * @date 2018/11/20 | |
| * @copyright Copyright (c) 2018 Keitetsu | |
| * @par License | |
| * This software is released under the MIT License. | |
| */ |
This file contains hidden or 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
| /** | |
| * @file q11199328296.cpp | |
| * @brief q11199328296 | |
| * @author Keitetsu | |
| * @date 2018/11/20 | |
| * @copyright Copyright (c) 2018 Keitetsu | |
| * @par License | |
| * This software is released under the MIT License. | |
| */ |