摘要:
function getElementsByClassName(className) { var el = new Array(); var _el = document.getElementsByTagName("*"); for (var i=0; i<_el.length; i++ ) { i 阅读全文
摘要:
1、u-boot配置: petalinux-config -c u-boot 2、在<plnx-proj-root>/project-spec/meta-user/conf/petalinuxbsp.conf中添加以下内容: IMAGE_INSTALL_append += "u-boot-fw-ut 阅读全文
摘要:
https://leetcode-cn.com/problems/two-sum/ 1. 暴力法: /** * Note: The returned array must be malloced, assume caller calls free(). */ int* twoSum(int* num 阅读全文
摘要:
find . -type f -name '*.*' | xargs grep --color -n 'Admin@123'find . -type f -name '*.*' | xargs sed -i 's/Admin@123/XXX/g' 阅读全文
摘要:
KiCad里Pcbnew中各层的使用说明 Kicad里Pcbnew提供了至多50个层供电路板设计师使用。 总计32个铜层供导线走线(可覆铜) 总计14个固定用途技术层 12个技术层对(上技术层和下技术层对称),包括Adhesive, Solder Paste, Silk Screen, Solder 阅读全文
摘要:
安装Xming X Server for Windows sudo apt update sudo apt install xfce4 xfce4-terminal echo "export DISPLAY=127.0.0.1:0.0" >> ~/.bashrc source ~/.bashrc e 阅读全文
摘要:
eclipse.sh #!/bin/bashexport PATH=$PATH:/home/arci/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf/binexport CROSS_COMPILE=arm-linux-gnueabihf-exp 阅读全文
摘要:
1、sudo yum install libusbx-devel 2、 ./configure --prefix=$HOME/openocd-0.10.0 --enable-jlink CFLAGS="-Wno-implicit-fallthrough -Wno-tautological-compa 阅读全文