10 2023 档案

摘要:赋读写权限 sudo chmod 777 -R /home/jeams/code https://www.jb51.net/article/231757.htm 在share definitions字段中添加要共享的目录,如:[public]path = /public #共享目录的路径public 阅读全文
posted @ 2023-10-27 18:28 微笑的''80 阅读(11) 评论(0) 推荐(0)
摘要:winserver 2016 添加文件共享服务器 linux 访问: 阅读全文
posted @ 2023-10-27 17:44 微笑的''80 阅读(19) 评论(0) 推荐(0)
摘要:16384/1024=16 KB 10:28:21 : Read File: C:\Users\Administrator\Desktop\stm32f030p4.hex 10:28:21 : Number of segments: 1 10:28:21 : segment[0]: address= 阅读全文
posted @ 2023-10-21 10:24 微笑的''80 阅读(32) 评论(0) 推荐(0)
摘要:CString str = _T("test"); char cmd[20]; int len = str.GetLength() * sizeof(TCHAR); memcpy(cmd, CW2A(str), len); //经测试,转换成功 阅读全文
posted @ 2023-10-20 17:55 微笑的''80 阅读(186) 评论(0) 推荐(0)
摘要:#include "stdafx.h" #include <vector> #include <iostream> using namespace std; int main() { vector<double> listdata = { 10.2,10.6,12.9 }; for (size_t 阅读全文
posted @ 2023-10-17 09:13 微笑的''80 阅读(108) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/zj820137793/article/details/130587595 阅读全文
posted @ 2023-10-15 11:14 微笑的''80 阅读(261) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-10-11 08:49 微笑的''80 阅读(5) 评论(0) 推荐(0)
摘要:https://www.bloomy.com/support/blog/getting-started-actor-framework-part-i The Queued Message Handler As a LabVIEW developer you probably utilize the 阅读全文
posted @ 2023-10-10 12:58 微笑的''80 阅读(266) 评论(0) 推荐(0)
摘要:字体,光标,铜皮 阅读全文
posted @ 2023-10-08 13:59 微笑的''80 阅读(44) 评论(0) 推荐(0)
摘要:代码实现: #define LED1_Pin GPIO_PIN_4#define LED1_GPIO_Port GPIOA while (1) { /* USER CODE END WHILE */ HAL_GPIO_TogglePin(GPIOA, LED1_Pin); HAL_Delay(100 阅读全文
posted @ 2023-10-07 15:27 微笑的''80 阅读(185) 评论(0) 推荐(0)
摘要:第一步:配置RCC时钟 第二步:配置uart1,波特率115200, 根据原理图配置管脚是PA9,PA10, 第三步:时钟配置 第四步:生成工程 第五步:代码实现 while (1) { /* USER CODE END WHILE */ char cmd[]="this is test !!\n" 阅读全文
posted @ 2023-10-07 10:13 微笑的''80 阅读(559) 评论(0) 推荐(0)
摘要:第一步:选择板子 第二步:选择rcc 时钟,外部时钟源 第三步: 配置usart1 第四部:时钟树配置,选择hse, 板子最大48Mhz 第五步:生成keil工程 第六步:编写代码 while (1) { /* USER CODE END WHILE */ /* USER CODE END WHIL 阅读全文
posted @ 2023-10-07 09:17 微笑的''80 阅读(31) 评论(0) 推荐(0)