登录
首页 » C# » CS_NET系统维护程序集,如何获取系统基本信息,如何获取系统服务信息...

CS_NET系统维护程序集,如何获取系统基本信息,如何获取系统服务信息...

于 2022-07-21 发布 文件大小:263.18 kB
0 56
下载积分: 2 下载次数: 1

代码说明:

CS_NET系统维护程序集,如何获取系统基本信息,如何获取系统服务信息-Set CS_NET system maintenance procedures, how to obtain basic information system, how to obtain a service information system

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

发表评论

0 个回复

  • tinytcl681
    一个嵌入试TCL脚本解释器编译后不到60K.(TinyTcl is a tiny version of Tcl, for small footprint machines and embeddable/rommable applications. It is derived from Tcl 6.7 and compiles to less than 60K, 10X smaller than Tcl 7 and Tcl 8)
    2009-03-31 18:18:58下载
    积分:1
  • dvsdm80
    Buffer投针法计算圆周率,控制台小程序, 蒙特卡洛方法,()
    2018-05-26 07:48:38下载
    积分:1
  • 坐标转换以及坐标转换参数计算
    在进行本地坐标与经纬度坐标转换时,需要进行椭球转换,本软件可以进行自定义投影,计算坐标转换参数,批量转换坐标
    2022-03-22 10:10:40下载
    积分:1
  • 电子线路CAD的求解元件灵敏度的源码,包括网表文件的读取
    电子线路CAD的求解元件灵敏度的源码,包括网表文件的读取-CAD of electronic circuits to solve the sensitivity of the source components, including the read netlist file
    2023-07-28 15:50:02下载
    积分:1
  • cap_test2
    锁相环功能 能实现跟踪一输入信号频率变化 (Phase locked loop function can track a input signal frequency changes)
    2011-10-18 10:13:00下载
    积分:1
  • MMatlab_RADARa
    Matlab实现的一个简单的RAADAR预警雷达模拟 可直接使用。 (Matlab achieve of a simple RAADAR warning radar simulator used directly.)
    2020-07-01 03:20:02下载
    积分:1
  • 多窗口文本工具(qt源码)
    实现多窗口文本编辑
    2020-05-12下载
    积分:1
  • db4xiaobojiangzao
    采用db4小波对是与信号进行降噪处理,实际效果良好(Using DB4 wavelet denoising is processing and signal, the actual effect is good)
    2014-12-16 19:28:46下载
    积分: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
  • ekf-and-ukf
    本文主要是介绍了EKF与UKF的基本原理及其区别,主要适合讲课和作业运用(This paper introduces the basic principles of its distinction of EKF and UKF for lectures and operating use)
    2012-09-17 13:59:31下载
    积分:1
  • 696518资源总数
  • 105559会员总数
  • 1今日下载