-
mex
Demonstrates the advantage of compiling a m-file to a MEX file using MATCOM.
- 2014-12-19 08:54:42下载
- 积分:1
-
Untitled.cpp
unit file for mac and windows
- 2015-04-06 07:59:42下载
- 积分:1
-
XJCG12864 驱动常用的读写程序
XJCG12864 驱动ic是UC1705X, 常用的读写程序(XJCG12864 driver IC is UC1705X, commonly used read and write programs)
- 2020-06-16 02:40:02下载
- 积分:1
-
C# 下载图片示例
using System;using System.Web;public class DownImg : IHttpHandler { //图片下载功能 public void ProcessRequest(HttpContext context) { System.Net.WebResponse response = null; System.IO.Stream stream = null; string path = context.Request.Url.Query.Split(new string[] { "coverimg=" }, StringSplitOptions.RemoveEmptyEntries)[1]; System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(path); response = request.GetResponse(); stream = response.GetResponseStream(); System.IO.MemoryStream memStream = Txooo.Mobile.HttpTools.CloneStream(stream); byte[] bytes = new byte[memStream.Length]; memStream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 memStream.Seek(0, System.IO.SeekOrigin.Begin); context.Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 string fileName = DateTime.Now.Ticks.ToString() ".jpg"; context.Response.AddHeader("Content-Disposition", "attachment; filename=" fileName); context.Response.BinaryWrite(bytes); context.Response.Flush(); } public bool IsReusable { get { return false; } }}
- 2014-05-29下载
- 积分:1
-
CH16
CSharp +SVG 开发的WebGis,需装SVG插件。(CSharp+ SVG development WebGis, need to SVG plug-ins installed.)
- 2008-03-27 12:56:01下载
- 积分:1
-
stm32 SPi主从通信 use DMA 驱动
stm32 SPi主从通信 use DMA 驱动 硬件为stm32 F4 Spi_dma_slave.c spi_dma_master.c Spi_dma_master.h Spi_dma_slave.h
- 2022-02-02 07:45:08下载
- 积分:1
-
taipingwanzhongjiv4(1)
说明: 用STM32F103C8T6的3组串口,分别连接cdebyte的无线收发模块,usar1接收到上位机命令,通过usart2向下转发,USart2接收到下位机数据,再由USart1向上转发, 实现中继转发功能。(Three groups of serial ports of stm32f103c8t6 are used to connect the wireless transceiver module of cdebyte. Usar1 receives the command from the upper computer, usar2 forwards downward, usar2 receives the data, and then usar1 forwards upward to realize the relay forwarding function.)
- 2019-12-05 15:48:52下载
- 积分:1
-
winds服务实例,发送邮件且禁用违法规则的用户权限
C#编写的winds服务,针对超出规则的用户发送提醒,如果提醒后三个工作日中没进行处理则禁用用户权限
- 2015-01-17下载
- 积分:1
-
SocketDemo
说明: 使用C# 语言,编写的一个包含服务端和客户端的一个经典Socket传输的例子(An example of a classic Socket transport that includes both the server and the client is written in C# language)
- 2020-06-18 05:40:01下载
- 积分:1
-
利用LCD1602实现日期时间功能
下载到开发板上,通过用户自定义初始化时间,能通过4个独立按键调整时间
- 2022-04-14 14:00:18下载
- 积分:1