18 lines
613 B
C
Executable File
18 lines
613 B
C
Executable File
#include <avr/pgmspace.h>
|
|
|
|
#define CRLF "\r\n"
|
|
#define CmdLD "ld"
|
|
#define CmdHelp "h"
|
|
|
|
// Ñïèñîê êîìàíä
|
|
const char HelpTitle[] PROGMEM = CRLF "Command list:";
|
|
const char HelpItem1[] PROGMEM = CRLF CmdLD " - List devices";
|
|
const char HelpItem2[] PROGMEM = CRLF CmdHelp " - Show this help";
|
|
const char CmdPrompt[] PROGMEM = CRLF "# ";
|
|
|
|
// Ðàçíûå íóæíûå ñòðîêè
|
|
const char ScanStr[] PROGMEM = CRLF "Scanning 1-wire bus" CRLF;
|
|
const char TransOK[] PROGMEM = CRLF "> Tranmission went OK";
|
|
const char TransLost[] PROGMEM = CRLF "> Message is lost ...";
|
|
const char ReTransCnt[] PROGMEM = CRLF "> Retranmission count: ";
|