摘要:赋读写权限 sudo chmod 777 -R /home/jeams/code https://www.jb51.net/article/231757.htm 在share definitions字段中添加要共享的目录,如:[public]path = /public #共享目录的路径public
阅读全文
摘要:winserver 2016 添加文件共享服务器 linux 访问:
阅读全文
摘要: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=
阅读全文
摘要:CString str = _T("test"); char cmd[20]; int len = str.GetLength() * sizeof(TCHAR); memcpy(cmd, CW2A(str), len); //经测试,转换成功
阅读全文
摘要:#include "stdafx.h" #include <vector> #include <iostream> using namespace std; int main() { vector<double> listdata = { 10.2,10.6,12.9 }; for (size_t
阅读全文
摘要:https://blog.csdn.net/zj820137793/article/details/130587595
阅读全文
摘要:https://www.bloomy.com/support/blog/getting-started-actor-framework-part-i The Queued Message Handler As a LabVIEW developer you probably utilize the
阅读全文
摘要:代码实现: #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
阅读全文
摘要:第一步:配置RCC时钟 第二步:配置uart1,波特率115200, 根据原理图配置管脚是PA9,PA10, 第三步:时钟配置 第四步:生成工程 第五步:代码实现 while (1) { /* USER CODE END WHILE */ char cmd[]="this is test !!\n"
阅读全文
摘要:第一步:选择板子 第二步:选择rcc 时钟,外部时钟源 第三步: 配置usart1 第四部:时钟树配置,选择hse, 板子最大48Mhz 第五步:生成keil工程 第六步:编写代码 while (1) { /* USER CODE END WHILE */ /* USER CODE END WHIL
阅读全文