- pricegod-urovo-daemon: C# :7790 HTTP service, drives the Urovo D812R+ via the GTSPL SDK; prints a label AND encodes the UHF chip in one pass. Drop-in for the PriceGod extension's daemon.js (same :7790, CORS *). - chafcheck: Chafon H-102 UHFPrimeReader P/Invoke probe. - ASSESSMENT.md: everything done + learned this session -- the ribbon-latch fix, PET-labels-are-not-direct-thermal finding, unreliable-status-byte quirk, SKU->EPC scheme, the Chafon HID-mode dead end, and how to port the print+encode recipe to the Mac (GTSPL Java SDK / raw TSPL). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
8 lines
427 B
Batchfile
8 lines
427 B
Batchfile
@echo off
|
|
REM Rebuild the daemon after editing daemon.cs. No .NET SDK required — uses the
|
|
REM .NET Framework 4.x compiler that ships with Windows.
|
|
cd /d "%~dp0"
|
|
"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe" /nologo /platform:x64 /target:exe /out:pricegod-urovo-daemon.exe /r:GTSPL_SDK.dll /r:System.Web.Extensions.dll daemon.cs
|
|
if %errorlevel%==0 (echo BUILD OK) else (echo BUILD FAILED - see errors above)
|
|
pause
|