Boa tarde, pessoal! Estou enfrentando um problema na demo do Node.
A função POS_Ativar está retornando -10.
Estou setando a porta para um arquivo txt. Segue minha config:
var eArqConfig = './src/config/posprinter.ini';
var eChaveCrypt = '';
var dllACBrLibPosPrinter = './src/dll/ACBrPosPrinter64.dll';
var aINI = [
{ section: 'Principal', key: 'TipoResposta', value: '2' },
{ section: 'Principal', key: 'CodificacaoResposta', value: '0' },
{ section: 'Principal', key: 'LogNivel', value: '4' },
{
section: 'Principal',
key: 'LogPath',
value: './src/logs/acbrlib.log',
},
{ section: 'Sistema', key: 'Nome', value: 'Navegador PDV' },
{ section: 'Sistema', key: 'Versao', value: '4.0.0-beta' },
{ section: 'Sistema', key: 'Data', value: '07/05/2020' },
{ section: 'Sistema', key: 'Descricao', value: 'Navegador PDV' },
{
section: 'PosPrinter',
key: 'ArqLog',
value: './src/logs/acbrlib_posprinter.log',
},
{ section: 'PosPrinter', key: 'Modelo', value: '0' },
{
section: 'PosPrinter',
key: 'Porta',
value: './src/txt/tryingout.txt',
},
{ section: 'PosPrinter', key: 'PaginaDeCodigo', value: '2' },
{ section: 'PosPrinter', key: 'ColunasFonteNormal', value: '48' },
// { section: 'PosPrinter', key: 'EspacoEntreCupons', value: '0' },
// { section: 'PosPrinter', key: 'LinhaEntreCupons', value: '0' },
{ section: 'PosPrinter', key: 'CortaPapel', value: '0' },
{ section: 'PosPrinter', key: 'TipoCorte', value: '0' },
{ section: 'PosPrinter', key: 'TraduzirTags', value: '1' },
{ section: 'PosPrinter', key: 'IgnorarTags', value: '0' },
{ section: 'PosPrinter', key: 'LinhasBuffer', value: '0' },
{ section: 'PosPrinter', key: 'ControlePorta', value: '0' },
{ section: 'PosPrinter', key: 'VerificarImpressora', value: '0' },
];
Alguem poderia me ajudar? Obrigado!