摘要:
原链接C/C++ CreateFileMapping 共享内存 - lyshark - 博客园 (cnblogs.com) #include <iostream> #include <Windows.h> using namespace std; int main() { HANDLE hMap; 阅读全文
摘要:
服务端: #include <stdio.h> #include <stdlib.h> #include <winsock2.h> #pragma comment(lib, "ws2_32") static SOCKET Udp; int udp_init(char *ip, int port) { 阅读全文
摘要:
/* 栈的特性:先进后出。 栈在计算语言处理和将递归算法改为非递归算法等方面起着非常重要的作用。 */ #define INITSIZE 100 //储存空间的初始分配量 typedef int ElemType; typedef struct { int top; //栈顶指针 ElemType 阅读全文
摘要:
#include<stdio.h> void func_int(void * a){ printf("%d\n",*(int*)a); //输出int类型,注意 void * 转化为int} void func_double(void * b){ printf("%.2f\n",*(double*) 阅读全文
摘要:
#include <stdio.h> #include <winsock2.h> #pragma comment(lib,"ws2_32.lib") int main(void) { //初始化wsa WORD sockVision = MAKEWORD(2, 2); WSADATA wsadata 阅读全文
摘要:
引用原连接,此处只做标记 https://blog.51cto.com/u_15067236/3337420 将其改为真正的中断发送。 步骤一:初始化GPIOGPIO_InitTypeDef GPIO_InitStructure;GPIO_InitStructure.GPIO_Pin = GPIO_ 阅读全文
摘要:
https://files.cnblogs.com/files/xwtstudio/STM32_USART_LED_CAN500K.zip 阅读全文
摘要:
void yuv422p_quto_rgb565(unsigned char *yuvBuffer_in, unsigned char *rgbBuffer_out, int width, int height) { u8 *yuvBuffer = (u8 *)yuvBuffer_in; u8 *r 阅读全文
摘要:
1、开关电路 2、共射极放大电路 直流等效电路:计算静态工作点,通过R1与R2分压电路,使R2上的分压为-0.7v左右偏置 交流工作电路:(直流电源置0,电容做短路处理) 在交流电路中将三极管用小信号模型代替 电压放大倍数:(输出为反向) 输入电阻:r_i 输出电阻:r_o 根据输出电阻定义:令 U 阅读全文
摘要:
https://files.cnblogs.com/files/xwtstudio/0e612421.zip 阅读全文