虫虫首页|资源下载|资源专辑|精品软件
登录|注册

PUSH

  • 一个ISAG Server的模拟器

    一个ISAG Server的模拟器,基于中国电信综合业务接入网关的开放接口协议做的,已有接收SP下发短信、彩信、WAP PUSH的功能,可以自动回复回执,自带流量统计功能。

    标签: Server ISAG 模拟

    上传时间: 2013-12-22

    上传用户:zhoujunzhen

  • SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming l

    SMC takes a state machine stored in a .sm file and generates a State pattern in twelve programming languages. Includes: default transitions, transition args, transition guards, PUSH/pop transitions and Entry/Exit actions. See User Manual for more info.

    标签: programming generates machine pattern

    上传时间: 2013-12-25

    上传用户:gaome

  • 用C实现栈的InitStack

    用C实现栈的InitStack, empty, full, PUSH, pop, clear, getpop。的功能。

    标签: InitStack

    上传时间: 2013-12-22

    上传用户:yyyyyyyyyy

  • 16进制转十进制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定义键盘输入需要的缓冲区 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a号功能,输入一个字符串 mov ah,0ah               ;用回车结束 int 21h mov dl,0ah               ;再进行换行,以便在下一行显示转换后的字符串  mov ah,2     int 21h ;  PUSH ax ;   PUSH dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符个数,作为循环的次数 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] PUSH bx mov bx,16 mul bx pop bx            ;是小写字母,则转换为大写字母 mov [w],ax mov dl,[bx]             ;取出一个字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 PUSH bx mov bx,10 lab3 :mov dx,0 div bx  PUSH dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循环,处理完整个字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    标签: 汇编

    上传时间: 2015-04-02

    上传用户:wcc0310

  • 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

    #include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->base; s->stacksize=stack_init_size; return 1; } int PUSH(sqstack *s,int e) { if(s->top-s->base>=s->stacksize) { s->base=(int *)realloc(s->base,(s->stacksize+stackincrement)*sizeof(int)); if(!s->base) return 0; s->top=s->base+s->stacksize; s->stacksize+=stackincrement; } *(s->top++)=e; return e; } int Pop(sqstack *s,int e) { if(s->top==s->base) return 0; e=*--s->top; return e; } int stackempty(sqstack *s) { if(s->top==s->base) { return 1; } else { return 0; } } int conversion(sqstack *s) { int n,e=0,flag=0; printf("输入要转化的十进制数:\n"); scanf("%d",&n); printf("要转化为多少进制:\n"); scanf("%d",&flag); printf("将十进制数%d 转化为%d 进制是:\n",n,flag); while(n) { PUSH(s,n%flag); n=n/flag; } while(!stackempty(s)) { e=Pop(s,e); switch(e) { case 10: printf("A"); break; case 11: printf("B"); break; case 12: printf("C"); break; case 13: printf("D"); break; case 14: printf("E"); break; case 15: printf("F"); break; default: printf("%d",e); } } printf("\n"); return 0; } int main() { sqstack s; StackInit(&s); conversion(&s); return 0;                        }

    标签: 整数 基本操作 十进制 转化 进制

    上传时间: 2016-12-08

    上传用户:爱你198

  • MPO与MTP接插件的定义与区别

    The CommScope InstaPATCH® 360 and ReadyPATCH® solutions utilize a standards-compliant multi-fiber connector to provide high density termination capability. The connector is called an MPO (Multi-fiber PUSH On) connector by the standards. In many cases, multi-fiber connector products are referred to as MTP connectors. This document is intended to clarify the difference between the two terms – MPO and MTP.

    标签: MPO MTP 插件 定义

    上传时间: 2017-04-11

    上传用户:asdfghjkl1234567890

  • CMPP3.0源码

    CMPP3.0源码 java实现 1.将common文件夹、MsgConfig.properties放于src根目录下。 2.修改MsgConfig.properties配置文件对应的内容为可用参数。 3.方法入口:common.msg.util.MsgContainer     sendWapPUSHMsg(String url,String desc,String cusMsisdn):发送web PUSH短信;         sendMsg(String msg,String cusMsisdn):发送SMS 4.“定时器.txt”记录的是长链接链路检查的基于spring的配置,如果使用java原生定时器可自行配置。 5.依赖包包括

    标签: CMPP3 源码

    上传时间: 2019-11-11

    上传用户:leonmomo

  • Baseband+Receiver+Algorithms

    The growing interest for high data rate wireless communications over the last few decades gave rise to the emergence of a number of wideband wireless systems. The resulting scarcity of frequency spectrum has been forcing wireless system designers to develop methods that will PUSH the spectral efficiency to its limit.

    标签: Algorithms Baseband Receiver

    上传时间: 2020-05-26

    上传用户:shancjb

  • Broadband Access Networks Technologies

    At present, there is a strong worldwide PUSH toward bringing fiber closer to indi- vidual homes and businesses. Fiber-to-the-Home/Business (FTTH/B) or close to it networks are poised to become the next major success story for optical fiber com- munications. In fact, FTTH connections are currently experiencing double-digit or even higher growth rates, e.g., in the United States the annual growth rate was 112% between September 2006 and September 2007, and their presence can add value of U.S. $4,000–15,000 to the selling price of a home.

    标签: Technologies Broadband Networks Access

    上传时间: 2020-05-26

    上传用户:shancjb

  • 50W隔离型离线式DC.pdf

    ABSTRACTThe flyback power stage is a popular choice for single and multiple output dc-to-dc converters at powerlevels of 150 Watts or less. Without the output inductor required in buck derived topologies, such as theforward or PUSH-pull converter, the component count and cost are reduced. This application note will reviewthe design procedure for the power stage and control electronics of a flyback converter. In these isolatedconverters, the error signal from the secondary still needs to cross the isolation boundary to achieveregulation. By using the UC3965 Precision Reference with Low Offset Error Amplifier on the secondaryside to drive an optocoupler and the UCC3809 Economy Primary Side Controller on the primary side, asimple and low cost 50 Watt isolated power supply is realized.

    标签: 隔离

    上传时间: 2021-11-24

    上传用户:kingwide