ubuntu系统64位dnw

/* dnw2 linux main file. This depends on libusb.
 * *
 * * Author: Fox <[email protected]>
 * * License: GPL
 * *
 * */
#include <stdio.h>
#include <usb.h>
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#define TINY4412_SECBULK_IDVENDOR 0x04e8
#define TINY4412_SECBULK_IDPRODUCT 0x1234

#define TINY4412_RAM_BASE       0xc0000000

// TINY4412
#define RAM_BASE            TINY4412_RAM_BASE
#define VENDOR_ID           TINY4412_SECBULK_IDVENDOR
#define PRODUCT_ID          TINY4412_SECBULK_IDPRODUCT

struct usb_dev_handle * open_port()
{
struct usb_bus *busses, *bus;

usb_init();
usb_find_busses();
usb_find_devices();

    busses = usb_get_busses();
    for(bus=busses;bus;bus=bus->next)
    {
        struct usb_device *dev;
        for(dev=bus->devices;dev;dev=dev->next)
        {
            if( VENDOR_ID==dev->descriptor.idVendor
            &&  PRODUCT_ID==dev->descriptor.idProduct)
            {
                printf("Target usb device found!\n");
                struct usb_dev_handle *hdev = usb_open(dev);
                if(!hdev)
                {
                    perror("Cannot open device");
                }
                else
                {
                    if(0!=usb_claim_interface(hdev, 0))
                    {
                        perror("Cannot claim interface");
                        usb_close(hdev);
                        hdev = NULL;
                    }
                }
                return hdev;
            }
        }
    }

    printf("Target usb device not found!\n");

    return NULL;
}

void usage()
{
    printf("Usage: dnw2 <file>\n\n");
}

unsigned char* prepare_write_buf(char *filename, unsigned int *len)
{
    unsigned char *write_buf = NULL;
    struct stat fs;

    int fd = open(filename, O_RDONLY);
    if(-1==fd)
    {
        perror("Cannot open file");
        return NULL;
    }
    if(-1==fstat(fd, &fs))
    {
        perror("Cannot get file size");
        goto error;
    }
    write_buf = (unsigned char*)malloc(fs.st_size+10);
    if(NULL==write_buf)
    {
        perror("malloc failed");
        goto error;
    }

    if(fs.st_size != read(fd, write_buf+8, fs.st_size))
    {
        perror("Reading file failed");
        goto error;
    }
        unsigned short sum = 0;
        int i;
        for(i=8; i<fs.st_size+8; i++)
        {
                sum += write_buf[i];
        }
    printf("Filename : %s\n", filename);
    printf("Filesize : %d bytes\n", (int)fs.st_size);
    printf ("Sum is %x\n",sum);

    *((u_int32_t*)write_buf) = RAM_BASE;        //download address
    *((u_int32_t*)write_buf+1) = fs.st_size + 10;    //download size;
    write_buf [fs.st_size + 8] = sum & 0xff;
    write_buf [fs.st_size + 9] = sum >> 8;
    *len = fs.st_size + 10;
    return write_buf;

error:
    if(fd!=-1) close(fd);
    if(NULL!=write_buf) free(write_buf);
    fs.st_size = 0;
    return NULL;

}

int main(int argc, char *argv[])
{
    if(2!=argc)
    {
        usage();
        return 1;
    }

    struct usb_dev_handle *hdev = open_port();
    if(!hdev)
    {
        return 1;
    }

    unsigned int len = 0;
    unsigned char* write_buf = prepare_write_buf(argv[1], &len);
    if(NULL==write_buf) return 1;

    unsigned int remain = len;
    unsigned int towrite;
    printf("Writing data ...\n");
    while(remain)
    {
        towrite = remain>512 ? 512 : remain;
        if(towrite != usb_bulk_write(hdev, 0x02, write_buf+(len-remain), towrite, 3000))
        {
            perror("usb_bulk_write failed");
            break;
        }
        remain-=towrite;
        printf("\r %d \t %d bytes     ", (len-remain)*100/len, len-remain);
        fflush(stdout);
    }
    if(0==remain) printf("Done!\n");
    return 0;
}

makefile

#******************************************************************************
#*
#*  Copyright (C) 2009-2012 Broadcom Corporation
#*
#*  Licensed under the Apache License, Version 2.0 (the "License");
#*  you may not use this file except in compliance with the License.
#*  You may obtain a copy of the License at
#*
#*      http://www.apache.org/licenses/LICENSE-2.0
#*
#*  Unless required by applicable law or agreed to in writing, software
#*  distributed under the License is distributed on an "AS IS" BASIS,
#*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#*  See the License for the specific language governing permissions and
#*  limitations under the License.
#*
#******************************************************************************

LDLIBS = -lusb
CFLAGS=-g

dnw: dnw.o
时间: 2024-12-19 12:37:37

ubuntu系统64位dnw的相关文章

WIN7系统 64位出现 Net Framework 数据提供程序要求 Microsoft Data Access Components(MDAC).

WIN7系统 64位出现  Net Framework 数据提供程序要求 Microsoft Data Access Components(MDAC).请安装 Microsoft Data Access Components(MDAC)2.6或更高的版本.怎么解决,已经下载了2.8版本安装了,但是还是不顶用. 2015-12-02 10:51网友采纳 这应该是你安装的系统有精简过系统文件,导致安装一些程序缺乏文件出错.换个系统吧.可到我的系统贴吧下载GHO系统与GHO安装工具,可以在进入现在的系

一个伟大的发现,装X一下。笔记本win7系统64位机器执行unity 时,屏幕模糊解决的方法

笔者笔记本win7系统64位机器执行unity 时.往往切换时unity界面屏幕模糊,后来发现此时须要下载DirectXRuntimes201006x64,安装就可以.

Win7系统64位环境下使用Apache——Apache2.4整合Tomcat与mod_jk

转载请注明出处:http://blog.csdn.net/dongdong9223/article/details/70398091 之前的几篇文章: Win7系统64位环境下使用Apache--Apache2.2下载 Win7系统64位环境下使用Apache--Apache2.2安装及常见问题解决 Win7系统64位环境下使用Apache--Apache2.4版本安装及卸载 Win7系统64位环境下使用Apache--下载mod_jk 这几篇文章分别讲解了Apache以及mod_jk的下载,今

win7系统64位eclipse环境超详细暗黑1.4服务器搭建

原地址:http://bbs.gameres.com/thread_223704.html 今天闲来没事,参照论坛中几篇成功案例,自己也搭建了下服务端,这里详细的记录下我的安装过程,方便大家快速搭建. eclipse是我的最爱,什么都喜欢在eclipse下开发.所以果断这次也是在eclipse下(下面所有用到的软件都在附件里下载) 首先安装python,本人使用的是python-2.7.5.amd64. 到附件里下载安装很简单,一路下一步就好了.添加C:\Python27到path:<ignor

Win10系统64位快速专业安装版 V2016年

win10系统64位快速专业安装版 V2016年2月 系统下载:http://www.xitongma.com/ Ghost Win10 64位正式装机专业版2016 微软向Windows用户推送了win10正式版更新.与往常一样,Win10之家利用微软官方ESD映像文件为大家制作了GHO格式镜像,方便使用U盘.硬盘等方法安装,需要的朋友可下载使用. 安装说明: a.自动安装 方式一: 安装请设置光盘启动,然后选择“自动安装系统C盘”就可以自动安装! b.手动安装 方法一: 安装请设置光盘启动,

Ubuntu Linux14 64位下在Android studio下用gradle编译Andrid项目时发生libz.so.1共享库找不到的解决方法。

---恢复内容开始--- 我在Ubuntu14 64为下安装了AS,但在用Gradle编译项目时总是报找不到 libz.so.1的错误. error while loading shared librarieserror while loading shared libraries: : libz.so.1libz.so.1: : cannot open shared object filecannot open shared object file: : No such file or dir

收集几个不错的最新win10系统64位和32位系统Ghost版下载

系统来自转载:系统妈 ◆ 版本特点 该版本安装后可利用微软公开的Windows10 KMS密钥激活,且右小角无版本水印. KMS客户端密钥:NPPR9-FWDCX-D2C8J-H872K-2YT43,需要运行KMS服务主机才能激活. ▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂ ★  已安装的常用软件和工具 ├─系统自带的部分常用装机软件│ ├─QQ7.4正式版│ ├─迅雷极速版│ ├─WinRAR 5.21│ ├─360浏览器│ ├─搜狗五笔

php5.6配置oracle数据库扩展 oci8(windows7系统64位)

1.去http://pecl.php.net/package/oci8 php官方扩展库下载扩展 http://pecl.php.net/package/oci8/2.0.8/windows 查看phpinfo()可以知道需要下载哪种版本的扩展 2.编辑php.ini文件引入oci8扩展 3.下载对应版本的oracle 客户端,并放到c盘目录,把路径放到环境变量,重启电脑 http://www.oracle.com/technetwork/topics/winsoft-085727.html  

win10系统64位MatlabR2014a从安装Windows SDK7.1 到配置libsvm

我的环境:win10(64位).MatlabR2014a.Windows SDK7.1.VC-Compiler-KB2519277 1.卸载Visual c++ 2010 x86 redistributable.Visual c++ 2010 x64 redistributable(64位windows)不卸载则SDK安装不成功!安装时有可能会关于RTE.NET报错,不必理会,继续安装. 2.下载并安装windows SDK7.1 (下载地址见最后) 3.下载并运行VC-Compiler-KB2