码迷,mamicode.com
首页 >  
搜索关键字:uint srcrowpitch    ( 791个结果
基于51单片机通过点击移位按键移位修改LCD1602字符型液晶显示器显示时分秒个位十位数值的计时项目工程
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
STC12 -定时器0 定时 1s LED0翻转1次 (二)中断法
程序:中断法 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
STC12 -定时器0 定时 1s LED0翻转1次
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系列教程-类型
下面是 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基础-变量
```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
基于51单片机的独立按键和矩阵按键用法
恢复内容开始 主要实现如图所示的功能 将主函数以外的函数全部放在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数据结构之ngx_int_t和ngx_uint_t
位置: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
Menu
#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
Timer
#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
791条   上一页 1 ... 3 4 5 6 7 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!