11 2023 档案

摘要:WeTab codegeex 阅读全文
posted @ 2023-11-23 23:01 败人两字非傲即惰 阅读(14) 评论(0) 推荐(0) 编辑
摘要:通用 man手册 用法 : 了解如何使用:man man man手册共有9本: 第一本:查脚本命令ls、cd、pwd 第二本:查系统调用函数open()、read() 第三本:查库函数printf()、scanf() man 2 open man 2 close tty复制粘贴 安装鼠标 apt i 阅读全文
posted @ 2023-11-23 19:13 败人两字非傲即惰 阅读(12) 评论(0) 推荐(0) 编辑
摘要:kali网络经常抽风,遇到这种不符合常理的情况要重启 安装 debian系列 sudo apt install openssh-client sudo apt install openssh-server redhat系列 sudo yum install openssh-server 启动 sud 阅读全文
posted @ 2023-11-23 19:10 败人两字非傲即惰 阅读(25) 评论(0) 推荐(0) 编辑
摘要:解压tar.gz tar -zxvf tar -zxvf 压缩文件名.tar.gz zip unzip zipped_file.zip unzip zipped_file.zip -d unzipped_directory 压缩命令: tar -zcvf tar -zcvf 压缩文件名.tar.gz 阅读全文
posted @ 2023-11-23 19:09 败人两字非傲即惰 阅读(3) 评论(0) 推荐(0) 编辑
摘要:查看当前系统版本 cat /etc/os-release 查看当前网卡设备名 ip a ifcofig -a 高版本的ubuntu没有interfaces:vim /etc/netplan/xxxxxx network: ethernets: ens33: # 配置的网卡的名称 addresses: 阅读全文
posted @ 2023-11-23 19:05 败人两字非傲即惰 阅读(20) 评论(0) 推荐(0) 编辑
摘要:git clone https://gitee.com/CcMdFk/the-gobang-game-of-cc-md-fk.git git pull https://gitee.com/CcMdFk/the-gobang-game-of-cc-md-fk.git git pull --rebase 阅读全文
posted @ 2023-11-23 19:03 败人两字非傲即惰 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-11-22 22:03 败人两字非傲即惰 阅读(34) 评论(0) 推荐(0) 编辑
摘要:(26封未读) 网易邮箱6.0版 (163.com) 阅读全文
posted @ 2023-11-22 17:27 败人两字非傲即惰 阅读(9) 评论(0) 推荐(0) 编辑
摘要:exit.h #ifndef __EXTI_H #define __EXTI_H #include "stm32f4xx.h" void Exti_PA0_Init(void); #endif exit.c #include "exti.h" /*************************** 阅读全文
posted @ 2023-11-22 16:48 败人两字非傲即惰 阅读(2) 评论(0) 推荐(0) 编辑
摘要:delay.h #ifndef __DELAY_H #define __DELAY_H #include "stm32f4xx.h" void Delay_Init(void); void delay_us(int nus); void delay_ms(int nms); void delay_s 阅读全文
posted @ 2023-11-22 16:46 败人两字非傲即惰 阅读(276) 评论(0) 推荐(0) 编辑
摘要:有道云笔记 (youdao.com) https://note.youdao.com/web/#/file/B08C4488DA4C4616AAD6A4248B3AE52C/note/912450CACF0A41339C4D0EEC7762B9EC/ 阅读全文
posted @ 2023-11-22 16:26 败人两字非傲即惰 阅读(11) 评论(0) 推荐(0) 编辑
摘要:#include "stm32f4xx.h" 记得改为自己的芯片型号 #ifndef __SYS_H_ #define __SYS_H_ #include "stm32f4xx.h" //IO口操作宏定义 #define BITBAND(addr, bitnum) ((addr & 0xF00000 阅读全文
posted @ 2023-11-22 15:36 败人两字非傲即惰 阅读(17) 评论(0) 推荐(0) 编辑
摘要:TFTLCD引脚 RTOS CLK 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 F12 D4 D14 D0 E7 E9 E11 E13 E15 D9 GND 3.3V GND 5V F11 MO空 B0 G14 D5 G15 D15 D1 E8 E10 E12 阅读全文
posted @ 2023-11-19 19:45 败人两字非傲即惰 阅读(6) 评论(0) 推荐(0) 编辑
摘要:上课时看到老师写 u8 Spi1_Send_Recv_Byte(u8 txdata) { u8 rxdata = 0x00; u8 i; SCK = 0; for(i=0; i<8; i++) { //下降沿发数据 if(txdata & 1<<(7-i)) { MOSI = 1; } else { 阅读全文
posted @ 2023-11-18 19:38 败人两字非傲即惰 阅读(4) 评论(0) 推荐(0) 编辑
摘要:问题:发AT后可以接受但没回复 乱码,初始化超时 原因(解决方法):供电问题,USB转TTL供电容易出错(资料上说用干电池和LDO),开发板插座问题(我实践,老师角度方法跳线,CH_PD和VCC接3.3V或5V) 阅读全文
posted @ 2023-11-18 18:15 败人两字非傲即惰 阅读(43) 评论(0) 推荐(0) 编辑