1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2008 Maurus Cuelenaere
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
31 #include "MTP_DLL/MTP_DLL.h"
35 fprintf(stderr
, "usage: sendfirm <local filename>\n");
38 int filesize(char* filename
)
42 fd
= fopen(filename
, "r");
45 fprintf(stderr
, "Error while opening %s!\n", filename
);
48 fseek(fd
, 0, SEEK_END
);
54 void callback(unsigned int progress
, unsigned int max
)
56 unsigned int normalized
= progress
*1000/max
;
57 printf("Progress: %d.%d%%\r", normalized
/10, normalized
%10);
61 int main(int argc
, char **argv
)
71 tmp
= (LPWSTR
)malloc(strlen(argv
[1])*2+1);
72 mbstowcs(tmp
, argv
[1], strlen(argv
[1])*2+1);
77 fprintf(stdout
, "Sending firmware...\n");
79 if(mtp_sendnk(tmp
, filesize(argv
[1]), &callback
))
80 fprintf(stdout
, "Firmware sent successfully!\n");
82 fprintf(stdout
, "Error occured during sending!\n");