摘要:
通过Python内建库ctypes调用C语言。 #!/usr/bin/python3 # file : bytes_test.py import ctypes as ct import os # 编译C程序为动态库 os.system("gcc -fpic -shared bytes_test.c 阅读全文
摘要:
1 工具列表 Python3及其程序库pyvisa Python3下载 IO Suite Libraries 下载 2 下载 Python3安装需要勾选“Add Python 3.10 to PATH”,其他都可以默认安装。 pyvisa安装。打开cmd,输入指令“pip install pyvis 阅读全文
摘要:
1 数据类型转换 2 常用库 library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; 3 关键字 4 简单的例子 library ieee; use ieee.std_logic_1164.all; use ieee. 阅读全文
摘要:
void main() { char *u; while(1){ u = (char*)malloc(); if(u) *u = 'u'; } } 阅读全文
摘要:
使用`apt install`时报错: dpkg-dev未配置,dpkg-dev依赖binutils,但binutils未安装,"E:Sub-process /usr/bin/dpkg returned an error code (1)"(隐号内是原文)。 阅读全文
摘要:
1 代码 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <termios.h> # 阅读全文
摘要:
1 快速解决 对于报错fatal: Could not read from remote repository.,网上一般都通过添加ssh密钥解决。但我遇到的多了一条Permission denied, user: 'git',这条报错中的“方框”在终端不可见,就是这个方框导致用户名错误。这个方框 阅读全文
摘要:
添加用户到sudo;软件更新;安装WIFI驱动;亮度调节问题; 阅读全文
摘要:
场景 MDK开发STM32程序,有一段运行正常的程序。 程序中有一些冗余代码,删除后构建正常。硬件测试时问题来了,恢复冗余代码,程序正常。查看冗余代码,包含C库的一些底层函数(如_sys_exit),而在其他代码中调用了pirntf,但不包含冗余代码构建却无错误无警告。 void _sys_exit 阅读全文
摘要:
三个文件,一条命令构建。 -- 文件:oo.ads package OO is type Object is tagged record X : Float; Y : Float; end record; function Area (Obj : Object) return Float; type 阅读全文