📄 ch375prt.c
字号:
/* 2004.03.05, 2004.8.18, 2005.12.29
****************************************
** Copyright (C) W.ch 1999-2005 **
** Web: http://www.winchiphead.com **
****************************************
** USB 1.1 Host Examples for CH375 **
** KC7.0@MCS-51 **
****************************************
*/
/* 单片机通过CH375控制USB打印机 */
/* 程序示例,C语言,CH375中断为查询方式,只负责数据传输,不涉及打印格式及打印描述语言 */
/* 另可提供多台计算机共享一台USB打印机的方案 */
/* 以下定义适用于MCS-51单片机,其它单片机参照修改,为了提供C语言的速度需要对本程序进行优化 */
#include <reg52.h>
#include<intrins.h>
#include <string.h>
#include <stdio.h>
unsigned char volatile xdata CH375_CMD_PORT _at_ 0x7fff; /* CH375命令端口的I/O地址 */
unsigned char volatile xdata CH375_DAT_PORT _at_ 0x3fff; /* CH375数据端口的I/O地址 */
sbit CH375_INT_WIRE = 0xB0^2; /* P3.2, INT0, 连接CH375的INT#引脚,用于查询中断状态 */
typedef unsigned char BOOL1; /* typedef bit BOOL1; */
#include"tu.h"
/* 定义CH375命令代码及返回状态 */
#include "CH375INC.H"
#define dot 0x2e
#define hpstart 0x1b
#define true 1
#define false 0
sbit SDA=P1^2;
sbit SCL=P1^3;
sbit led1=P2^0;
sbit led2=P2^1;
sfr t2mod=0xc9;
sfr sbuf1=0xc1;
sfr scon1=0xc0;
sfr scon0=0x98;
sfr rcap2h=0xcb;
sfr rcap2l=0xca;
sfr t2con=0xc8;
sfr CKCON=0x8E;
sfr EIE=0xE8;
sfr TA=0xC7;
sfr WDCON=0xD8;
sfr PMR=0xC4;
sfr DPH1=0x85;
sfr DPL1=0x84;
sbit ti_1=scon1^1;
sbit ri_1=scon1^0;
sbit tr2=t2con^2;
sbit es1=IE^6;// ; 有效电平
typedef unsigned char UCHAR;
typedef unsigned int UINT;
typedef unsigned short USHORT;
UCHAR data1,data2,data3,data4;
UCHAR date[7]; //日期数组
/*date[0]=year,date[1]=month,date[2]=day,date[3]=week,
date[4]=hour,date[5]=minute,date[6]=second*/
void I2CReadDate();
void SendTime();
void I2CWriteTime();
void I2CWriteStatus();
typedef struct _USB_DEVICE_DESCRIPTOR {
UCHAR bLength;
UCHAR bDescriptorType;
USHORT bcdUSB;
UCHAR bDeviceClass;
UCHAR bDeviceSubClass;
UCHAR bDeviceProtocol;
UCHAR bMaxPacketSize0;
USHORT idVendor;
USHORT idProduct;
USHORT bcdDevice;
UCHAR iManufacturer;
UCHAR iProduct;
UCHAR iSerialNumber;
UCHAR bNumConfigurations;
} USB_DEV_DESCR, *PUSB_DEV_DESCR;
typedef struct _USB_CONFIG_DESCRIPTOR {
UCHAR bLength;
UCHAR bDescriptorType;
USHORT wTotalLength;
UCHAR bNumInterfaces;
UCHAR bConfigurationValue;
UCHAR iConfiguration;
UCHAR bmAttributes;
UCHAR MaxPower;
} USB_CFG_DESCR, *PUSB_CFG_DESCR;
typedef struct _USB_INTERF_DESCRIPTOR {
UCHAR bLength;
UCHAR bDescriptorType;
UCHAR bInterfaceNumber;
UCHAR bAlternateSetting;
UCHAR bNumEndpoints;
UCHAR bInterfaceClass;
UCHAR bInterfaceSubClass;
UCHAR bInterfaceProtocol;
UCHAR iInterface;
} USB_ITF_DESCR, *PUSB_ITF_DESCR;
typedef struct _USB_ENDPOINT_DESCRIPTOR {
UCHAR bLength;
UCHAR bDescriptorType;
UCHAR bEndpointAddress;
UCHAR bmAttributes;
UCHAR wMaxPacketSize;
UCHAR wMaxPacketSize1;
UCHAR bInterval;
} USB_ENDP_DESCR, *PUSB_ENDP_DESCR;
typedef struct _USB_CONFIG_DESCRIPTOR_LONG {
USB_CFG_DESCR cfg_descr;
USB_ITF_DESCR itf_descr;
USB_ENDP_DESCR endp_descr[4];
} USB_CFG_DESCR_LONG, *PUSB_CFG_DESCR_LONG;
unsigned char idata buffer[124]; /* 公用缓冲区 100~154用于接收串口数据*/
unsigned int RecvCount,RecvStart,RecvFlage=0;
/*120cm-210cm,水标准范围值,小值在前,大值在后*/
unsigned char code twb_m[]={
0x01,0x24,0x01,0x51,0x01,0x26,0x01,0x54,0x01,0x29,0x01,0x57,0x01,0x31,0x01,0x60,0x01,0x34,0x01,0x64,//100~104
0x01,0x36,0x01,0x67,0x01,0x39,0x01,0x70,0x01,0x42,0x01,0x73,0x01,0x44,0x01,0x76,0x01,0x47,0x01,0x80,//105~109
0x01,0x50,0x01,0x83,0x01,0x52,0x01,0x86,0x01,0x55,0x01,0x90,0x01,0x58,0x01,0x93,0x01,0x61,0x01,0x96,//110~114
0x01,0x64,0x02,0x00,0x01,0x66,0x02,0x03,0x01,0x69,0x02,0x07,0x01,0x72,0x02,0x11,0x01,0x75,0x02,0x14,//110~119
0x01,0x78,0x02,0x18,0x01,0x81,0x02,0x21,0x01,0x84,0x02,0x25,0x01,0x87,0x02,0x29,0x01,0x90,0x02,0x32,//120~124
0x01,0x93,0x02,0x36,0x01,0x96,0x02,0x40,0x02,0x00,0x02,0x44,0x02,0x03,0x02,0x48,0x02,0x06,0x02,0x52,//125~129
0x02,0x09,0x02,0x56,0x02,0x12,0x02,0x59,0x02,0x16,0x02,0x63,0x02,0x19,0x02,0x67,0x02,0x22,0x02,0x71,//130~134
0x02,0x25,0x02,0x76,0x02,0x29,0x02,0x80,0x02,0x32,0x02,0x84,0x02,0x36,0x02,0x88,0x02,0x39,0x02,0x92,//135~139
0x02,0x42,0x02,0x96,0x02,0x46,0x03,0x01,0x02,0x49,0x03,0x05,0x02,0x53,0x03,0x09,0x02,0x57,0x03,0x14,//140~144
0x02,0x60,0x03,0x18,0x02,0x64,0x03,0x22,0x02,0x67,0x03,0x27,0x02,0x71,0x03,0x31,0x02,0x75,0x03,0x36,//145~149
0x02,0x78,0x03,0x40,0x02,0x82,0x03,0x45,0x02,0x86,0x03,0x49,0x02,0x90,0x03,0x54,0x02,0x93,0x03,0x59,//150~154
0x02,0x97,0x03,0x63,0x03,0x01,0x03,0x68,0x03,0x05,0x03,0x73,0x03,0x09,0x03,0x77,0x03,0x13,0x03,0x82,//155~159
0x03,0x17,0x03,0x87,0x03,0x21,0x03,0x92,0x03,0x25,0x03,0x97,0x03,0x29,0x04,0x02,0x03,0x33,0x04,0x07,//160~164
0x03,0x37,0x04,0x12,0x03,0x41,0x04,0x17,0x03,0x45,0x04,0x22,0x03,0x49,0x04,0x27,0x03,0x53,0x04,0x32,//165~169
0x03,0x57,0x04,0x37,0x03,0x62,0x04,0x42,0x03,0x66,0x04,0x47,0x03,0x70,0x04,0x52,0x03,0x75,0x04,0x58,//170~174
0x03,0x79,0x04,0x63,0x03,0x83,0x04,0x68,0x03,0x88,0x04,0x74,0x03,0x92,0x04,0x79,0x03,0x96,0x04,0x84,//175~179
0x04,0x01,0x04,0x90,0x04,0x05,0x04,0x95,0x04,0x10,0x05,0x01,0x04,0x14,0x05,0x06,0x04,0x19,0x05,0x12,//180~184
0x04,0x23,0x05,0x17,0x04,0x28,0x05,0x23,0x04,0x33,0x05,0x29,0x04,0x37,0x05,0x34,0x04,0x42,0x05,0x40,//185~189
0x04,0x47,0x05,0x46,0x04,0x51,0x05,0x52,0x04,0x56,0x05,0x57,0x04,0x61,0x05,0x63,0x04,0x66,0x05,0x69,//190~194
0x04,0x70,0x05,0x75,0x04,0x75,0x05,0x81,0x04,0x80,0x05,0x87,0x04,0x85,0x05,0x93,0x04,0x90,0x05,0x99,//195~199
0x04,0x95,0x06,0x05,//200cm~
};
unsigned char code twb_f[]={
0x01,0x07,0x01,0x31,0x01,0x09,0x01,0x33,0x01,0x11,0x01,0x36,0x01,0x13,0x01,0x39,0x01,0x16,0x01,0x41,//100~104
0x01,0x18,0x01,0x44,0x01,0x20,0x01,0x47,0x01,0x22,0x01,0x50,0x01,0x25,0x01,0x52,0x01,0x27,0x01,0x55,//105~109
0x01,0x29,0x01,0x58,0x01,0x32,0x01,0x61,0x01,0x34,0x01,0x64,0x01,0x37,0x01,0x67,0x01,0x39,0x01,0x70,//110~114
0x01,0x41,0x01,0x73,0x01,0x44,0x01,0x76,0x01,0x46,0x01,0x79,0x01,0x49,0x01,0x82,0x01,0x51,0x01,0x85,//115~119
0x01,0x54,0x01,0x88,0x01,0x57,0x01,0x91,0x01,0x59,0x01,0x95,0x01,0x62,0x01,0x98,0x01,0x64,0x02,0x01,//120~124
0x01,0x67,0x02,0x04,0x01,0x70,0x02,0x08,0x01,0x73,0x02,0x11,0x01,0x75,0x02,0x14,0x01,0x78,0x02,0x18,//125~129
0x01,0x81,0x02,0x21,0x01,0x84,0x02,0x24,0x01,0x86,0x02,0x28,0x01,0x89,0x02,0x31,0x01,0x92,0x02,0x35,//130~134
0x01,0x95,0x02,0x38,0x01,0x98,0x02,0x42,0x02,0x01,0x02,0x45,0x02,0x04,0x02,0x49,0x02,0x07,0x02,0x53,//135~139
0x02,0x10,0x02,0x56,0x02,0x13,0x02,0x60,0x02,0x16,0x02,0x64,0x02,0x19,0x02,0x67,0x02,0x22,0x02,0x71,//140~144
0x02,0x25,0x02,0x75,0x02,0x28,0x02,0x79,0x02,0x31,0x02,0x83,0x02,0x34,0x02,0x86,0x02,0x37,0x02,0x90,//145~149
0x02,0x41,0x02,0x94,0x02,0x44,0x02,0x98,0x02,0x47,0x03,0x02,0x02,0x50,0x03,0x06,0x02,0x54,0x03,0x10,//150~154
0x02,0x57,0x03,0x14,0x02,0x60,0x03,0x18,0x02,0x64,0x03,0x22,0x02,0x67,0x03,0x26,0x02,0x70,0x03,0x31,//155~159
0x02,0x74,0x03,0x35,0x02,0x77,0x03,0x39,0x02,0x81,0x03,0x43,0x02,0x84,0x03,0x47,0x02,0x88,0x03,0x52,//160~164
0x02,0x91,0x03,0x56,0x02,0x95,0x03,0x60,0x02,0x98,0x03,0x65,0x03,0x02,0x03,0x69,0x03,0x06,0x03,0x73,//165~169
0x03,0x09,0x03,0x78,0x03,0x13,0x03,0x82,0x03,0x16,0x03,0x87,0x03,0x20,0x03,0x91,0x03,0x24,0x03,0x96,//170~174
0x03,0x28,0x04,0x00,0x03,0x31,0x04,0x05,0x03,0x35,0x04,0x10,0x03,0x39,0x04,0x14,0x03,0x43,0x04,0x19,//175~179
0x03,0x47,0x04,0x24,0x03,0x50,0x04,0x28,0x03,0x54,0x04,0x33,0x03,0x58,0x04,0x38,0x03,0x62,0x04,0x43,//180~184
0x03,0x66,0x04,0x47,0x03,0x70,0x04,0x52,0x03,0x74,0x04,0x57,0x03,0x78,0x04,0x62,0x03,0x82,0x04,0x67,//185~189
0x03,0x86,0x04,0x72,0x03,0x90,0x04,0x77,0x03,0x94,0x04,0x82,0x03,0x98,0x04,0x87,0x04,0x03,0x04,0x92,//190~194
0x04,0x07,0x04,0x97,0x04,0x11,0x05,0x02,0x04,0x15,0x05,0x07,0x04,0x19,0x05,0x13,0x04,0x24,0x05,0x18,//195~199
0x04,0x28,0x05,0x23,//200~204
};
/*120cm-210cm,蛋白质标准,小值在前,大值在后*/
unsigned char code protein_m[]={
0x00,0x33,0x00,0x41,0x00,0x34,0x00,0x41,0x00,0x34,0x00,0x42,0x00,0x35,0x00,0x43,0x00,0x36,0x00,0x44,//100~104
0x00,0x37,0x00,0x45,0x00,0x37,0x00,0x46,0x00,0x38,0x00,0x46,0x00,0x39,0x00,0x47,0x00,0x39,0x00,0x48,//105~109
0x00,0x40,0x00,0x49,0x00,0x41,0x00,0x50,0x00,0x42,0x00,0x51,0x00,0x42,0x00,0x52,0x00,0x43,0x00,0x53,//110~114
0x00,0x44,0x00,0x54,0x00,0x45,0x00,0x55,0x00,0x45,0x00,0x55,0x00,0x46,0x00,0x56,0x00,0x47,0x00,0x57,//115~119
0x00,0x48,0x00,0x58,0x00,0x49,0x00,0x59,0x00,0x49,0x00,0x60,0x00,0x50,0x00,0x61,0x00,0x51,0x00,0x62,//120~124
0x00,0x52,0x00,0x63,0x00,0x53,0x00,0x64,0x00,0x53,0x00,0x65,0x00,0x54,0x00,0x66,0x00,0x55,0x00,0x67,//125~129
0x00,0x56,0x00,0x68,0x00,0x57,0x00,0x70,0x00,0x58,0x00,0x71,0x00,0x59,0x00,0x72,0x00,0x60,0x00,0x73,//130~134
0x00,0x60,0x00,0x74,0x00,0x61,0x00,0x75,0x00,0x62,0x00,0x76,0x00,0x63,0x00,0x77,0x00,0x64,0x00,0x78,//135~139
0x00,0x65,0x00,0x79,0x00,0x66,0x00,0x81,0x00,0x67,0x00,0x82,0x00,0x68,0x00,0x83,0x00,0x69,0x00,0x84,//140~144
0x00,0x70,0x00,0x85,0x00,0x71,0x00,0x86,0x00,0x72,0x00,0x88,0x00,0x73,0x00,0x89,0x00,0x74,0x00,0x90,//145~149
0x00,0x75,0x00,0x91,0x00,0x76,0x00,0x92,0x00,0x77,0x00,0x94,0x00,0x78,0x00,0x95,0x00,0x79,0x00,0x96,//150~154
0x00,0x80,0x00,0x97,0x00,0x81,0x00,0x99,0x00,0x82,0x01,0x00,0x00,0x83,0x01,0x01,0x00,0x84,0x01,0x02,//155~159
0x00,0x85,0x01,0x04,0x00,0x86,0x01,0x05,0x00,0x87,0x01,0x06,0x00,0x88,0x01,0x08,0x00,0x89,0x01,0x09,//160~164
0x00,0x90,0x01,0x10,0x00,0x91,0x01,0x12,0x00,0x92,0x01,0x13,0x00,0x94,0x01,0x14,0x00,0x95,0x01,0x16,//165~169
0x00,0x96,0x01,0x17,0x00,0x97,0x01,0x18,0x00,0x98,0x01,0x20,0x00,0x99,0x01,0x21,0x01,0x00,0x01,0x23,//170~174
0x01,0x02,0x01,0x24,0x01,0x03,0x01,0x26,0x01,0x04,0x01,0x27,0x01,0x05,0x01,0x28,0x01,0x06,0x01,0x30,//175~179
0x01,0x07,0x01,0x31,0x01,0x09,0x01,0x33,0x01,0x10,0x01,0x34,0x01,0x11,0x01,0x36,0x01,0x12,0x01,0x37,//180~184
0x01,0x13,0x01,0x39,0x01,0x15,0x01,0x40,0x01,0x16,0x01,0x42,0x01,0x17,0x01,0x43,0x01,0x18,0x01,0x45,//185~189
0x01,0x20,0x01,0x46,0x01,0x21,0x01,0x48,0x01,0x22,0x01,0x49,0x01,0x23,0x01,0x51,0x01,0x25,0x01,0x53,//190~194
0x01,0x26,0x01,0x54,0x01,0x27,0x01,0x56,0x01,0x29,0x01,0x57,0x01,0x30,0x01,0x59,0x01,0x31,0x01,0x60,//195~199
0x01,0x33,0x01,0x62,//200~
};
unsigned char code protein_f[]={
0x00,0x29,0x00,0x35,0x00,0x29,0x00,0x36,0x00,0x30,0x00,0x36,0x00,0x30,0x00,0x37,0x00,0x31,0x00,0x38,//100~104
0x00,0x32,0x00,0x39,0x00,0x32,0x00,0x39,0x00,0x33,0x00,0x40,0x00,0x33,0x00,0x41,0x00,0x34,0x00,0x42,//105~109
0x00,0x35,0x00,0x42,0x00,0x35,0x00,0x43,0x00,0x36,0x00,0x44,0x00,0x37,0x00,0x45,0x00,0x37,0x00,0x46,//110~114
0x00,0x38,0x00,0x46,0x00,0x39,0x00,0x47,0x00,0x39,0x00,0x48,0x00,0x40,0x00,0x49,0x00,0x41,0x00,0x50,//115~119
0x00,0x41,0x00,0x50,0x00,0x42,0x00,0x51,0x00,0x43,0x00,0x52,0x00,0x43,0x00,0x53,0x00,0x44,0x00,0x54,//120~124
0x00,0x45,0x00,0x55,0x00,0x46,0x00,0x56,0x00,0x46,0x00,0x57,0x00,0x47,0x00,0x57,0x00,0x48,0x00,0x58,//125~129
0x00,0x48,0x00,0x59,0x00,0x49,0x00,0x60,0x00,0x50,0x00,0x61,0x00,0x51,0x00,0x62,0x00,0x51,0x00,0x63,//130~134
0x00,0x52,0x00,0x64,0x00,0x53,0x00,0x65,0x00,0x54,0x00,0x66,0x00,0x55,0x00,0x67,0x00,0x55,0x00,0x68,//135~139
0x00,0x56,0x00,0x69,0x00,0x57,0x00,0x70,0x00,0x58,0x00,0x71,0x00,0x59,0x00,0x72,0x00,0x59,0x00,0x73,//140~144
0x00,0x60,0x00,0x74,0x00,0x61,0x00,0x75,0x00,0x62,0x00,0x76,0x00,0x63,0x00,0x77,0x00,0x64,0x00,0x78,//145~149
0x00,0x65,0x00,0x79,0x00,0x65,0x00,0x80,0x00,0x66,0x00,0x81,0x00,0x67,0x00,0x82,0x00,0x68,0x00,0x83, //150~154
0x00,0x69,0x00,0x84,0x00,0x70,0x00,0x85,0x00,0x71,0x00,0x86,0x00,0x72,0x00,0x87,0x00,0x72,0x00,0x89,//155~159
0x00,0x73,0x00,0x90,0x00,0x74,0x00,0x91,0x00,0x75,0x00,0x92,0x00,0x76,0x00,0x93,0x00,0x77,0x00,0x94,//160~164
0x00,0x78,0x00,0x95,0x00,0x79,0x00,0x97,0x00,0x80,0x00,0x98,0x00,0x81,0x00,0x99,0x00,0x82,0x01,0x00,//165~169
0x00,0x83,0x01,0x01,0x00,0x84,0x01,0x02,0x00,0x85,0x01,0x04,0x00,0x86,0x01,0x05,0x00,0x87,0x01,0x06,//170~174
0x00,0x88,0x01,0x07,0x00,0x89,0x01,0x09,0x00,0x90,0x01,0x10,0x00,0x90,0x01,0x11,0x00,0x92,0x01,0x12,//175~179
0x00,0x93,0x01,0x14,0x00,0x94,0x01,0x15,0x00,0x95,0x01,0x16,0x00,0x96,0x01,0x17,0x00,0x97,0x01,0x19,//180~184
0x00,0x98,0x01,0x20,0x00,0x99,0x01,0x21,0x01,0x00,0x01,0x23,0x01,0x01,0x01,0x24,0x01,0x02,0x01,0x25,//185~189
0x01,0x03,0x01,0x26,0x01,0x05,0x01,0x28,0x01,0x06,0x01,0x29,0x01,0x07,0x01,0x31,0x01,0x08,0x01,0x32,//190~194
0x01,0x09,0x01,0x33,0x01,0x10,0x01,0x35,0x01,0x11,0x01,0x36,0x01,0x12,0x01,0x37,0x01,0x14,0x01,0x39,//195~199
0x01,0x15,0x01,0x40,//200~204
};
/*120cm-210cm,无机盐标准,小值在前,大值在后*/
unsigned char code mineral_m[]={
0x01,0x14,0x01,0x40,0x01,0x17,0x01,0x43,0x01,0x19,0x01,0x46,0x01,0x21,0x01,0x48,0x01,0x24,0x01,0x51,//100~104
0x01,0x26,0x01,0x54,0x01,0x29,0x01,0x57,0x01,0x31,0x01,0x60,0x01,0x33,0x01,0x63,0x01,0x36,0x01,0x66,//105~109
0x01,0x38,0x01,0x69,0x01,0x41,0x01,0x72,0x01,0x44,0x01,0x75,0x01,0x46,0x01,0x79,0x01,0x49,0x01,0x82,//110~114
0x01,0x51,0x01,0x85,0x01,0x54,0x01,0x88,0x01,0x57,0x01,0x91,0x01,0x59,0x01,0x95,0x01,0x62,0x01,0x98,//115~119
0x01,0x65,0x02,0x01,0x01,0x68,0x02,0x05,0x01,0x70,0x02,0x08,0x01,0x73,0x02,0x12,0x01,0x76,0x02,0x15,//120~124
0x01,0x79,0x02,0x19,0x01,0x82,0x02,0x22,0x01,0x85,0x02,0x26,0x01,0x88,0x02,0x29,0x01,0x90,0x02,0x33,//125~129
0x01,0x98,0x02,0x36,0x01,0x96,0x02,0x40,0x01,0x99,0x02,0x44,0x02,0x02,0x02,0x47,0x02,0x05,0x02,0x51,//130~134
0x02,0x09,0x02,0x55,0x02,0x12,0x02,0x59,0x02,0x15,0x02,0x63,0x02,0x18,0x02,0x66,0x02,0x21,0x02,0x70,//135~139
0x02,0x24,0x02,0x74,0x02,0x28,0x02,0x78,0x02,0x31,0x02,0x82,0x02,0x34,0x02,0x86,0x02,0x37,0x02,0x90,//140~144
0x02,0x41,0x02,0x94,0x02,0x44,0x02,0x98,0x02,0x47,0x03,0x02,0x02,0x51,0x03,0x06,0x02,0x54,0x03,0x11,//145~149
0x02,0x57,0x03,0x15,0x02,0x61,0x03,0x19,0x02,0x64,0x03,0x23,0x02,0x68,0x03,0x27,0x02,0x71,0x03,0x32,//150~154
0x02,0x75,0x03,0x36,0x02,0x79,0x03,0x40,0x02,0x82,0x03,0x45,0x02,0x86,0x03,0x49,0x02,0x89,0x03,0x54,//155~159
0x02,0x93,0x03,0x58,0x02,0x97,0x03,0x63,0x03,0x00,0x03,0x67,0x03,0x04,0x03,0x72,0x03,0x08,0x03,0x76,//160~164
0x03,0x12,0x03,0x81,0x03,0x15,0x03,0x85,0x03,0x19,0x03,0x90,0x03,0x23,0x03,0x95,0x03,0x27,0x03,0x99,//165~169
0x03,0x31,0x04,0x04,0x03,0x35,0x04,0x09,0x03,0x39,0x04,0x14,0x03,0x43,0x04,0x19,0x03,0x46,0x04,0x23,//170~174
0x03,0x50,0x04,0x28,0x03,0x55,0x04,0x33,0x03,0x59,0x04,0x38,0x03,0x63,0x04,0x43,0x03,0x67,0x04,0x48,//175~179
0x03,0x71,0x04,0x53,0x03,0x75,0x04,0x58,0x03,0x79,0x04,0x63,0x03,0x83,0x04,0x68,0x03,0x87,0x04,0x74,//180~184
0x03,0x92,0x04,0x79,0x03,0x96,0x04,0x84,0x04,0x00,0x04,0x89,0x04,0x04,0x04,0x94,0x04,0x09,0x05,0x00,//185~189
0x04,0x13,0x05,0x05,0x04,0x18,0x05,0x10,0x04,0x22,0x05,0x16,0x04,0x26,0x05,0x21,0x04,0x31,0x05,0x26,//190~194
0x04,0x35,0x05,0x32,0x04,0x40,0x05,0x37,0x04,0x44,0x05,0x43,0x04,0x49,0x05,0x48,0x04,0x53,0x05,0x54,//195~199
0x04,0x58,0x05,0x60,//200~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -