forked from jaburns/NintendoSpy
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathrelease.bat
executable file
·596 lines (545 loc) · 38 KB
/
release.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
IF "%~1"=="" GOTO release
IF NOT "%~1"=="" set sub=1
:release
rmdir /S /Q bin\Release\net8.0
"C:\Program Files\dotnet\dotnet.exe" build RetroSpyX\RetroSpyX.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=..\bin\Release\net8.0
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\dotnet\dotnet.exe" build GBPemuX\GBPemuX.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=..\bin\Release\net8.0
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\dotnet\dotnet.exe" build UsbUpdaterX2\UsbUpdaterX2.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=..\bin\Release\net8.0
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\amd64\MSBuild.exe" GBPUpdaterX2\GBPUpdaterX2.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=..\bin\Release\net8.0
if %ERRORLEVEL% NEQ 0 goto :fail
cd MiSTer
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\msbuild.exe" MiSTer.vcxproj /p:Configuration=Release /p:Platform="Win32" /p:OutputPath=Release
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "..\..\..\Firmware\GBP_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*MODE_GAMEBOY_PRINTER/#define MODE_GAMEBOY_PRINTER/" sketches\firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*MODE_GAMEBOY_PRINTER/\/\/#define MODE_GAMEBOY_PRINTER/" sketches\firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\GBP_Firmware\firmware.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\GBP_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\GBP_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*MODE_GAMEBOY_PRINTER/#define MODE_GAMEBOY_PRINTER/" sketches\firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*MODE_GAMEBOY_PRINTER/\/\/#define MODE_GAMEBOY_PRINTER/" sketches\firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\GBP_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\GBP_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Vision_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION$/#define RS_VISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION/\/\/#define RS_VISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Vision_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Vision_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Vision_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION$/#define RS_VISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION/\/\/#define RS_VISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Vision_Firmware\firmware.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Vision_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Dream_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_DREAM/#define RS_VISION_DREAM/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=teensy:avr:teensy40:usb=serial,speed=816,opt=o3std,keys=en-us -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Teensy_4_0\Release -verbose -hardware "C:\Program Files (x86)\Arduino/hardware" -tools "C:\Program Files (x86)\Arduino/tools-builder" -tools "C:\Program Files (x86)\Arduino/hardware/tools/avr" -built-in-libraries "C:\Program Files (x86)\Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_DREAM/\/\/#define RS_VISION_DREAM/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Dream_Firmware\firmware.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Teensy_4_0\Release\firmware.ino.hex ..\..\..\..\Firmware\Dream_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\CV_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_COLECOVISION/#define RS_VISION_COLECOVISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_COLECOVISION/\/\/#define RS_VISION_COLECOVISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\CV_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\CV_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\CV_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_COLECOVISION/#define RS_VISION_COLECOVISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_COLECOVISION/\/\/#define RS_VISION_COLECOVISION/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\CV_Firmware\firmware.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\CV_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\ADB_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_PIPPIN/#define RS_VISION_PIPPIN/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_PIPPIN/\/\/#define RS_VISION_PIPPIN/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\ADB_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\ADB_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\ADB_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_PIPPIN/#define RS_VISION_PIPPIN/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_PIPPIN/\/\/#define RS_VISION_PIPPIN/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\ADB_Firmware\firmware.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\ADB_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\CDi_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_CDI/#define RS_VISION_CDI/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=rp2040:rp2040:rpipico:flash=2097152_0,freq=250,opt=Optimize3,rtti=Disabled,stackprotect=Disabled,exceptions=Disabled,dbgport=Disabled,dbglvl=None,usbstack=picosdk,ipbtstack=ipv4only,uploadmethod=default -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Raspberry_Pi_Pico\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -hardware C:\Users\Administrator\AppData\Local/Arduino15/packages -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools C:\Users\Administrator\AppData\Local/Arduino15/packages -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.pqt-gcc.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-gcc\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-python3.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-python3\1.0.1-base-3a57aed -prefs=runtime.tools.pqt-elf2uf2.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-elf2uf2\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-openocd.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-openocd\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-picotool.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-picotool\1.5.0-b-03f2812 -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_CDI/\/\/#define RS_VISION_CDI/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\CDi_Firmware\firmware.ino.uf2
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Raspberry_Pi_Pico\Release\firmware.ino.uf2 ..\..\..\..\Firmware\CDi_Firmware\firmware.ino.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Flex_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_FLEX/#define RS_VISION_FLEX/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=rp2040:rp2040:rpipico:flash=2097152_0,freq=250,opt=Optimize3,rtti=Disabled,stackprotect=Disabled,exceptions=Disabled,dbgport=Disabled,dbglvl=None,usbstack=picosdk,ipbtstack=ipv4only,uploadmethod=default -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Raspberry_Pi_Pico\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -hardware C:\Users\Administrator\AppData\Local/Arduino15/packages -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools C:\Users\Administrator\AppData\Local/Arduino15/packages -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.pqt-gcc.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-gcc\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-python3.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-python3\1.0.1-base-3a57aed -prefs=runtime.tools.pqt-elf2uf2.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-elf2uf2\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-openocd.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-openocd\1.5.0-b-c7bab52 -prefs=runtime.tools.pqt-picotool.path=C:\Users\Administrator\AppData\Local\Arduino15\packages\rp2040\tools\pqt-picotool\1.5.0-b-03f2812 -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_FLEX/\/\/#define RS_VISION_FLEX/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Flex_Firmware\firmware.ino.uf2
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Raspberry_Pi_Pico\Release\firmware.ino.uf2 ..\..\..\..\Firmware\Flex_Firmware\firmware.ino.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Analog_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_ANALOG_1/#define RS_VISION_ANALOG_1/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_ANALOG_1/\/\/#define RS_VISION_ANALOG_1/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Analog_Firmware\firmware_1.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Analog_Firmware\firmware_1.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_ANALOG_2/#define RS_VISION_ANALOG_2/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328 -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_ANALOG_2/\/\/#define RS_VISION_ANALOG_2/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Analog_Firmware\firmware_2.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Analog_Firmware\firmware_2.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Analog_Firmware\" (
cd firmware
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_ANALOG_1/#define RS_VISION_ANALOG_1/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_ANALOG_1/\/\/#define RS_VISION_ANALOG_1/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Analog_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Analog_Firmware\firmware_1-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*\/\/#define.*RS_VISION_ANALOG_2/#define RS_VISION_ANALOG_2/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\arduino-builder.exe -compile -logger=machine -fqbn=arduino:avr:nano:cpu=atmega328old -build-path D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release -verbose -hardware "C:/Program Files (x86)/Arduino/hardware" -tools "C:/Program Files (x86)/Arduino/tools-builder" -tools "C:/Program Files (x86)/Arduino/hardware/tools/avr" -built-in-libraries "C:/Program Files (x86)/Arduino/libraries" -libraries C:\Users\Administrator\Documents/Arduino/Libraries -prefs=runtime.tools.ctags.path=C:\Users\Administrator\AppData\Local\VisualGDB\Arduino\tools-builder\ctags\5.8-arduino11 sketches/firmware.ino
if %ERRORLEVEL% NEQ 0 goto :fail
..\sed -i "s/.*#define.*RS_VISION_ANALOG_2/\/\/#define RS_VISION_ANALOG_2/" sketches\common.h
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\Analog_Firmware\firmware-old.ino.hex
copy D:\src\Repos\retrospy\RetroSpy\firmware\Output\Arduino_Nano\Release\firmware.ino.hex ..\..\..\..\Firmware\Analog_Firmware\firmware_2-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\USBLite_Firmware\" (
cd ..\usb-sniffer-lite\firmware\make
if %ERRORLEVEL% NEQ 0 goto :fail
make
if %ERRORLEVEL% NEQ 0 goto :fail
del ..\..\..\..\..\Firmware\USBLite_Firmware\UsbSnifferLite.uf2
copy D:\src\Repos\retrospy\usb-sniffer-lite\firmware\make\build\UsbSnifferLite.uf2 ..\..\..\..\..\Firmware\USBLite_Firmware\UsbSnifferLite.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..\..\..\RetroSpy
if %ERRORLEVEL% NEQ 0 goto :fail
)
del RetroSpy-Windows.zip
del RetroSpy-Windows.zip.*
rmdir /S /Q RetroSpy-Setup
del RetroSpy-Setup.exe
rmdir /S /Q RetroSpy-Upload
mkdir RetroSpy-Setup
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "..\..\..\certs\codesignpasswd.txt" (
set /p codesignpasswd=<"..\..\..\certs\codesignpasswd.txt"
)
REM Sign all 4 executables
cd "bin\Release\net8.0\"
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "..\..\..\..\..\..\certs\codesign.cer" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\SignTool" sign /f "..\..\..\..\..\..\certs\codesign.cer" /csp "eToken Base Cryptographic Provider" /k "%codesignpasswd%" /tr http://timestamp.comodoca.com /td sha256 /fd sha256 /a Retrospy.exe
if %ERRORLEVEL% NEQ 0 goto :fail
)
:signgbpemu
if exist "..\..\..\..\..\..\certs\codesign.cer" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\SignTool" sign /f "..\..\..\..\..\..\certs\codesign.cer" /csp "eToken Base Cryptographic Provider" /k "%codesignpasswd%" /tr http://timestamp.comodoca.com /td sha256 /fd sha256 /a GBPemu.exe
if %ERRORLEVEL% NEQ 0 goto :fail
)
:signusbupdater
if exist "..\..\..\..\..\..\certs\codesign.cer" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\SignTool" sign /f "..\..\..\..\..\..\certs\codesign.cer" /csp "eToken Base Cryptographic Provider" /k "%codesignpasswd%" /tr http://timestamp.comodoca.com /td sha256 /fd sha256 /a UsbUpdater.exe
if %ERRORLEVEL% NEQ 0 goto :fail
)
:signgbpupdater
if exist "..\..\..\..\..\..\certs\codesign.cer" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\SignTool" sign /f "..\..\..\..\..\..\certs\codesign.cer" /csp "eToken Base Cryptographic Provider" /k "%codesignpasswd%" /tr http://timestamp.comodoca.com /td sha256 /fd sha256 /a GBPUpdater.exe
if %ERRORLEVEL% NEQ 0 goto :fail
)
xcopy /y /e /s * ..\..\..\RetroSpy-Setup
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..\..\..
if %ERRORLEVEL% NEQ 0 goto :fail
cd RetroSpy-Setup
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" -r a ..\RetroSpy-Windows.zip *.*
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
copy LICENSE RetroSpy-Setup
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a RetroSpy-Windows.zip LICENSE
if %ERRORLEVEL% NEQ 0 goto :fail
mkdir RetroSpy-Setup\MiSTer
if %ERRORLEVEL% NEQ 0 goto :fail
if "%sub%" == "1" (
sed -e s/RELEASE_TAG/%~1/g MiSTer\update-retrospy-nightly.sh > RetroSpy-Setup\MiSTer\update-retrospy.sh
if %ERRORLEVEL% NEQ 0 goto :fail
) else (
copy MiSTer\update-retrospy.sh RetroSpy-Setup\MiSTer
)
dos2unix RetroSpy-Setup\MiSTer\update-retrospy.sh
if %ERRORLEVEL% NEQ 0 goto :fail
cd RetroSpy-Setup
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ..\RetroSpy-Windows.zip MiSTer\update-retrospy.sh
if %ERRORLEVEL% NEQ 0 goto :fail
cd ..
if %ERRORLEVEL% NEQ 0 goto :fail
REM ;"C:\Program Files\7-Zip\7z.exe" a RetroSpy-Windows.zip keybindings.xml
REM ;copy keybindings.xml RetroSpy-Setup
REM Copy Drivers
mkdir RetroSpy-Setup\drivers\
if %ERRORLEVEL% NEQ 0 goto :fail
xcopy /y /e /s drivers RetroSpy-Setup\drivers\
if %ERRORLEVEL% NEQ 0 goto :fail
xcopy /y /e /s CH341SER RetroSpy-Setup\CH341SER\
if %ERRORLEVEL% NEQ 0 goto :fail
copy serial_install.exe RetroSpy-Setup\
if %ERRORLEVEL% NEQ 0 goto :fail
copy GBPUpdaterX2\CH340G_2019.zip RetroSpy-Setup\
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "C:\Program Files (x86)\Actual Installer\actinst.exe" (
"C:\Program Files (x86)\Actual Installer\actinst.exe" /S ".\RetroSpy-64.aip"
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "..\..\..\certs\codesign.cer" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\SignTool" sign /f "..\..\..\certs\codesign.cer" /csp "eToken Base Cryptographic Provider" /k "%codesignpasswd%" /tr http://timestamp.comodoca.com /td sha256 /fd sha256 /a Retrospy-Setup.exe
if %ERRORLEVEL% NEQ 0 goto :fail
)
)
mkdir RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
copy RetroSpy-Setup.exe RetroSpy-Upload\RetroSpy-Setup-x64.exe
if %ERRORLEVEL% NEQ 0 goto :fail
copy RetroSpy-Windows.zip RetroSpy-Upload\RetroSpy-Windows-x64.zip
if %ERRORLEVEL% NEQ 0 goto :fail
if "%sub%" == "1" (
copy UsbUpdaterX2\update-usb-retrospy-nightly-installer.sh RetroSpy-Upload\update-usb-retrospy-installer.sh
if %ERRORLEVEL% NEQ 0 goto :fail
) else (
copy UsbUpdaterX2\update-usb-retrospy-installer.sh RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if "%sub%" == "1" (
sed -e s/RELEASE_TAG/%~1/g MiSTer\update-retrospy-nightly-installer.sh > RetroSpy-Upload\update-retrospy-installer.sh
if %ERRORLEVEL% NEQ 0 goto :fail
) else (
copy MiSTer\update-retrospy-installer.sh RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
copy MiSTer\Release\retrospy RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
if exist "..\..\..\Firmware\GBP_Firmware\" (
del GBP_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\avrdude.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\avrdude.conf
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\libusb0.dll
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\avrdude
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\libusb-1.0.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\libusb-0.1.4.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\libftdi1.2.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\libhidapi.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a GBP_Firmware.zip ..\..\..\Firmware\GBP_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
copy GBP_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Vision_Firmware\" (
del Vision_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\avrdude.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\avrdude.conf
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\libusb0.dll
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\avrdude
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\libusb-1.0.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\libusb-0.1.4.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\libftdi1.2.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Vision_Firmware.zip ..\..\..\Firmware\Vision_Firmware\libhidapi.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
copy Vision_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Dream_Firmware\" (
del Dream_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a Dream_Firmware.zip ..\..\..\Firmware\Dream_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Dream_Firmware.zip ..\..\..\Firmware\Dream_Firmware\teensy_loader_cli.linux
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Dream_Firmware.zip ..\..\..\Firmware\Dream_Firmware\teensy_loader_cli.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Dream_Firmware.zip ..\..\..\Firmware\Dream_Firmware\teensy_loader_cli.mac
if %ERRORLEVEL% NEQ 0 goto :fail
copy Dream_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\CV_Firmware\" (
del CV_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\avrdude.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\avrdude.conf
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\libusb0.dll
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\avrdude
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\libusb-1.0.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\libusb-0.1.4.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\libftdi1.2.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a CV_Firmware.zip ..\..\..\Firmware\CV_Firmware\libhidapi.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
copy CV_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\ADB_Firmware\" (
del ADB_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\avrdude.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\avrdude.conf
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\firmware.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\firmware-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\libusb0.dll
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\avrdude
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\libusb-1.0.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\libusb-0.1.4.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\libftdi1.2.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a ADB_Firmware.zip ..\..\..\Firmware\ADB_Firmware\libhidapi.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
copy ADB_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\CDi_Firmware\" (
del CDi_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a CDi_Firmware.zip ..\..\..\Firmware\CDi_Firmware\firmware.ino.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
copy CDi_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\USBLite_Firmware\" (
del USBLite_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a USBLite_Firmware.zip ..\..\..\Firmware\USBLite_Firmware\UsbSnifferLite.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
copy USBLite_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Flex_Firmware\" (
del Flex_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a Flex_Firmware.zip ..\..\..\Firmware\Flex_Firmware\firmware.ino.uf2
if %ERRORLEVEL% NEQ 0 goto :fail
copy Flex_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\Firmware\Analog_Firmware\" (
del Analog_Firmware.zip
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\avrdude.exe
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\avrdude.conf
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\firmware_1.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\firmware_2.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\firmware_1-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\firmware_2-old.ino.hex
if %ERRORLEVEL% NEQ 0 goto :fail+
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\libusb0.dll
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\avrdude
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\libusb-1.0.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\libusb-0.1.4.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\libftdi1.2.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
"C:\Program Files\7-Zip\7z.exe" a Analog_Firmware.zip ..\..\..\Firmware\Analog_Firmware\libhidapi.0.dylib
if %ERRORLEVEL% NEQ 0 goto :fail
copy Analog_Firmware.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\kernel\kernel.tar.gz" (
copy ..\..\..\kernel\kernel.tar.gz RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\upload\RetroSpy-Linux-x64.tar.gz" (
copy ..\..\..\upload\RetroSpy-Linux-x64.tar.gz RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\upload\RetroSpy-Linux-arm64.tar.gz" (
copy ..\..\..\upload\RetroSpy-Linux-arm64.tar.gz RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\upload\RetroSpyInstall.dmg" (
copy ..\..\..\upload\RetroSpyInstall.dmg RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\upload\RetroSpy-Setup-x86.exe" (
copy ..\..\..\upload\RetroSpy-Setup-x86.exe RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\upload\RetroSpy-Windows-x86.zip" (
copy ..\..\..\upload\RetroSpy-Windows-x86.zip RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
)
if exist "..\..\..\beaglebone\" (
FOR /F %%I IN ('DIR ..\..\..\beaglebone\*.xz /B /O:-D') DO (
COPY ..\..\..\beaglebone\%%I RetroSpy-Upload
if %ERRORLEVEL% NEQ 0 goto :fail
goto :end
)
)
:end
EXIT /b 0
:fail
EXIT /b 1