1 #include<reg52.h>//单片机头文件 2 #define uchar unsigned char//宏定义,用uchar表示unsigned char,叫无符号字符型数据类型,取值范围为:0到255。 3 #define uint unsigned int//宏定义,用uint表示 ...
分类:
其他好文 时间:
2020-04-25 10:30:16
阅读次数:
72
程序:中断法 1. Timer0_Init() 在上次 (一)查询法 中说过 2.main.c 用 flag #include<reg52.h> #include<Timer0_Init.h> #define uchar unsigned char #define uint unsigned int ...
分类:
其他好文 时间:
2020-04-22 12:55:59
阅读次数:
76
1. main.c #include<reg52.h> #include<intrins.h> #include<Timer0_Init.h> #define uchar unsigned char #define uint unsigned int sbit LED0 = P2^0; void m ...
分类:
其他好文 时间:
2020-04-20 01:20:10
阅读次数:
64
下面是 Go 支持的基本类型: bool 数字类型 int8, int16, int32, int64, int uint8, uint16, uint32, uint64, uint float32, float64 complex64, complex128 byte rune string b ...
分类:
其他好文 时间:
2020-04-12 00:09:32
阅读次数:
84
```go package main /** Constants: true false iota nil Types: int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 uintptr float32 float64 comple... ...
分类:
其他好文 时间:
2020-04-11 20:23:03
阅读次数:
59
恢复内容开始 主要实现如图所示的功能 将主函数以外的函数全部放在qiyu.h文件中 1 //qiyu.h 2 #define KEY_PORT P1 3 #define led P2 4 #define unchar unsigned char 5 #define uint unsigned int ...
分类:
其他好文 时间:
2020-04-09 19:11:58
阅读次数:
103
Windows内核分析索引目录:https://www.cnblogs.com/onetrainee/p/11675224.html 消息机制 1.最基本的窗口创建 #include <windows.h> LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, L ...
分类:
其他好文 时间:
2020-04-06 15:42:41
阅读次数:
79
位置:nginx/src/core/nginx_config.htypedef intptr_t ngx_int_t;typedef uintptr_t ngx_uint_t;intptr_t和uintptr_t在linux平台的/usr/include/stdint.h头文件中可以找到/* Typ... ...
分类:
其他好文 时间:
2020-03-25 16:20:48
阅读次数:
78
#include "windows.h" #include "resource.h" LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; HMENU hm; int WINAPI WinMain (HINSTANCE hInstance, ...
分类:
其他好文 时间:
2020-03-23 09:36:57
阅读次数:
72
#include <windows.h> LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM); VOID CALLBACK fun(PVOID lp); int WINAPI WinMain (HINSTANCE hInstance, HINS ...
分类:
其他好文 时间:
2020-03-23 09:21:48
阅读次数:
78