-
处理机调试c++
觉得这个还是不错的选择,处理机调试,操作系统中常会用到得,不论是理解还是学习都是初学者不错的起始点
- 2023-07-08 20:20:03下载
- 积分:1
-
K型热电偶MAX6675的驱动程序
K型热电偶MAX6675的驱动程序,此驱动部分已经在产品中使用(K type thermocouple MAX6675 driver, the driver section has been used in the product)
- 2019-04-11 10:59:51下载
- 积分:1
-
网络实验4 RAW_TCP客户端实验
RAW_TCP客户端实验LWIP Porting with UCOS Operating System(RAW_TCP Client Experiments)
- 2019-05-09 14:50:41下载
- 积分:1
-
20171204
日常基本练习,开关灯实现,蛇形输出,竖式输出(Daily basic exercises, switch lights, serpentine output)
- 2017-12-16 13:37:23下载
- 积分:1
-
Template
stm32库函数模板的工程完全版,战舰开发板提供(stm32 template library function works full version, Battleship development board)
- 2015-07-28 20:36:07下载
- 积分:1
-
海康摄像头读取
读取海康摄像头,可进行移动跟中
- 2022-01-27 19:06:46下载
- 积分:1
-
温度计(包含负温度)
这是基于单片机的温度计,包含负温度。文件里包含了仿真图和C语言源码,真实有效。
- 2022-10-06 23:25:03下载
- 积分:1
-
suiji
随机森林的代码,c++编写,有用到随机森林的可以看看!(Random forest code, c++ prepared, useful to the random forest can have a look!)
- 2013-10-25 14:11:01下载
- 积分:1
-
C# SQL Server数据库连接
【实例源码】朋友们好,该功能在测试中突然发现,通过Windows身份验证时,服务器IP与数据库值为空的时候,测试连接也会提示连接成功,这个BUG请大家给予帮助,谢谢!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data;using System.Data.SqlClient;namespace ConData{ public partial class ConnectionData : Form { public ConnectionData() { InitializeComponent(); } private void btnSQLOK_Click(object sender, EventArgs e) { string strcon = string.Format("server={0};database={1};uid={2};pwd={3};", this.txtIP.Text.Trim(), txtDataBase.Text.Trim(), txtUser.Text.Trim(), txtPwd.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strcon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void btnWindowsOK_Click(object sender, EventArgs e) { string strCon = string.Format("server={0};database={1};Trusted_Connection=SSPI", txtWindowsIP.Text.Trim(), txtWindowsDB.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strCon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } }}
- 2014-07-11下载
- 积分:1
-
大漠插件C++引用库
C++调用大漠插件的引用文件,可以直接引入调用!
- 2022-05-20 00:28:30下载
- 积分:1