登录
首页 » c# » wince 扫描条码代码

wince 扫描条码代码

于 2022-11-02 发布 文件大小:51.85 kB
0 107
下载积分: 2 下载次数: 1

代码说明:

wince 扫描条码代码,通过消息响应读条码。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • waterMarkself
    说明:  自已写的水印控件的制作,xml设置文字与大小透明,简短易懂,可以自己修改(own write the watermark controls the production, xml set text size and transparent, understandable short, can change their)
    2005-09-12 16:58:41下载
    积分:1
  • 35w
    利用鱼眼镜头生成全景图像的方法.Using a fisheye lens for generating panoramic images method(Using a fisheye lens for generating panoramic images method)
    2011-12-06 08:40:39下载
    积分:1
  • lyap_r
    计算癫痫脑电非线性动力学之一的lyapunov指数(calculated EEG epilepsy nonlinear dynamics, one of the lyapunov index)
    2007-05-12 21:11:05下载
    积分:1
  • C语言程序设计--课本
    说明:  C语言程序设计,非常实用,入门级的编程资料(C language programming, very practical, entry-level programming materials)
    2020-06-24 10:00:02下载
    积分:1
  • FreeRTOS+FreeModbus+STM32F107VC
    /*  * FreeModbus Libary: BARE Port  * Copyright (C) 2006 Christian Walter  *  * This library is free software; you can redistribute it and/or  * modify it under the terms of the GNU Lesser General Public  * License as published by the Free Software Foundation; either  * version 2.1 of the License, or (at your option) any later version.  *  * This library is distributed in the hope that it will be useful,  * but WITHOUT ANY WARRANTY; without even the implied warranty of  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  * Lesser General Public License for more details.  *  * You should have received a copy of the GNU Lesser General Public  * License along with this library; if not, write to the Free Software  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA  *  * File: $Id: porttimer.c,v 1.1 2006/08/22 21:35:13 wolti Exp $  */ /* ----------------------- Platform includes --------------------------------*/ #include #include "port.h" /* ----------------------- Modbus includes ----------------------------------*/ #include "mb.h" #include "mbport.h" /* ----------------------- static functions ---------------------------------*/ static void prvvTIMERExpiredISR( void ); /* ----------------------- Start implementation -----------------------------*/ BOOL xMBPortTimersInit( USHORT usTim1Timerout50us ) { NVIC_InitTypeDef NVIC_InitStructure; TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure; USHORT PrescalerValue = 0;     NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);     /* Enable the TIM5 gloabal Interrupt */     NVIC_InitStructure.NVIC_IRQChannel = TIM5_IRQn;     NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;     NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;     NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;     NVIC_Init(&NVIC_InitStructure);     /* TIM5 clock enable */     RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM5, ENABLE); PrescalerValue = (USHORT) (SystemCoreClock / 20000) - 1;      TIM_TimeBaseStructure.TIM_Period = usTim1Timerout50us;     TIM_TimeBaseStructure.TIM_Prescaler = PrescalerValue;     TIM_TimeBaseStructure.TIM_ClockDivision = 0;     TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;     TIM_TimeBaseInit(TIM5, &TIM_TimeBaseStructure);     TIM_ClearITPendingBit(TIM5, TIM_IT_Update);     //TIM_ITConfig(TIM5, TIM_IT_Update, DISABLE);     //TIM_Cmd(TIM5, ENABLE);      return TRUE; } void vMBPortTimersEnable( void ) {     /* Enable the timer with the timeout passed to xMBPortTimersInit( ) */     ENTER_CRITICAL_SECTION(); TIM_ClearITPendingBit(TIM5, TIM_IT_Update);     TIM_ITConfig(TIM5, TIM_IT_Update, ENABLE); TIM_SetCounter(TIM5, 0x0000);     TIM_Cmd(TIM5, ENABLE); EXIT_CRITICAL_SECTION(); } void vMBPortTimersDisable( void ) {     /* Disable any pending timers. */     ENTER_CRITICAL_SECTION(); TIM_ClearITPendingBit(TIM5, TIM_IT_Update);     TIM_ITConfig(TIM5, TIM_IT_Update, DISABLE); TIM_SetCounter(TIM5, 0x0000);     TIM_Cmd(TIM5, DISABLE); EXIT_CRITICAL_SECTION(); } /* Create an ISR which is called whenever the timer has expired. This function  * must then call pxMBPortCBTimerExpired( ) to notify the protocol stack that  * the timer has expired.  */ static void prvvTIMERExpiredISR( void ) {     ( void )pxMBPortCBTimerExpired(  ); } void TIM5_IRQHandler(void) { if (TIM_GetITStatus(TIM5, TIM_IT_Update) == SET) { TIM_ClearITPendingBit(TIM5, TIM_IT_Update); prvvTIMERExpiredISR(); } }
    2021-08-22 00:30:59下载
    积分:1
  • 个人写的SGIP C#开发样例
    个人写的SGIP C#开发样例  ,仅供大家参考
    2022-03-24 11:45:29下载
    积分:1
  • wimax_v1
    802.16源代码 看有网友征求802.16源码的帖子,拿出来分享一下。(802.16 source code has friends to seek the look of post-source 802.16 up to share.)
    2007-07-24 22:19:08下载
    积分:1
  • C#实现WindowsAPI改变 鼠标指向的任意窗体中控件的大小和位置实例
    用.net实现 改变其它任意窗体控件的属性值
    2013-01-08下载
    积分:1
  • ERRandSNR
    MIMO技术,信噪比SNR和误码率BER的关系对比图像,MATLAB仿真程序代码(MIMO technology, signal-to-noise ratio SNR and bit error rate (BER) the relationship between contrast images, MATLAB simulation program code)
    2013-04-22 19:32:50下载
    积分:1
  • c# 的绘图自定义类
    c# 的绘图自定义类-graphics from the class definition
    2022-01-31 14:56:38下载
    积分:1
  • 696518资源总数
  • 105925会员总数
  • 14今日下载